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:
1111 - npm install
1212
1313script :
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 2323 " Andrew Rhyne <rhyneandrew@gmail.com>"
2424 ],
2525 "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+ },
2639 "dependencies" : {
2740 "ms" : " ^2.1.1"
2841 },
You can’t perform that action at this time.
0 commit comments