File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 "clean" : " rimraf lib" ,
88 "build" : " babel src --out-dir lib" ,
99 "lint" : " eslint --max-warnings=0 src test examples" ,
10- "test" : " NODE_ENV=test mocha --compilers js:babel-core/register --recursive" ,
10+ "test" : " npm run lint && NODE_ENV=test mocha --compilers js:babel-core/register --recursive" ,
1111 "test:watch" : " NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch" ,
1212 "test:cov" : " babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive" ,
13- "prepublish" : " npm run lint && npm run test && npm run clean && npm run build" ,
13+ "prepublish" : " npm run test && npm run clean && npm run build" ,
1414 "start" : " cd examples && npm start"
1515 },
1616 "repository" : {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import expect from 'expect';
33import { createRenderer } from 'react-addons-test-utils' ;
44
55import JSONTree from '../src/index' ;
6- import JSONNode from '../lib /JSONNode' ;
6+ import JSONNode from '../src /JSONNode' ;
77
88const BASIC_DATA = { a : 1 , b : 'c' } ;
99
You can’t perform that action at this time.
0 commit comments