File tree Expand file tree Collapse file tree 3 files changed +15
-40
lines changed Expand file tree Collapse file tree 3 files changed +15
-40
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ install:
11
11
- npm install
12
12
13
13
script :
14
- - make all
14
+ - npm run lint
15
+ - npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 23
23
" Andrew Rhyne <[email protected] >"
24
24
],
25
25
"license" : " MIT" ,
26
+ "scripts" : {
27
+ "lint" : " xo" ,
28
+ "test" : " npm run test:node && npm run test:browser" ,
29
+ "test:node" : " istanbul cover _mocha -- test.js" ,
30
+ "posttest:node" : " cat ./coverage/lcov.info | coveralls" ,
31
+ "pretest:browser" : " npm run build" ,
32
+ "test:browser" : " karma start --single-run" ,
33
+ "prebuild:debug" : " mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js ." ,
34
+ "build:debug" : " babel -o dist/debug.js dist/debug.es6.js > dist/debug.js" ,
35
+ "build:test" : " babel -d dist test.js" ,
36
+ "build" : " npm run build:debug && npm run build:test" ,
37
+ "clean" : " rimraf dist coverage"
38
+ },
26
39
"dependencies" : {
27
40
"ms" : " ^2.1.1"
28
41
},
You can’t perform that action at this time.
0 commit comments