File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
language : node_js
2
2
node_js :
3
3
- " 0.10"
4
+ - " 0.12"
5
+ - " iojs"
6
+ env :
7
+ - TEST_SUITE=lint
8
+ - TEST_SUITE=unit
9
+ script : " npm run-script $TEST_SUITE"
4
10
Original file line number Diff line number Diff line change 13
13
"devDependencies" : {
14
14
"buffer" : " ~2.3.2" ,
15
15
"hash-test-vectors" : " ^1.3.1" ,
16
+ "standard" : " ^3.11.1" ,
16
17
"tape" : " ~2.3.2" ,
17
18
"typedarray" : " 0.0.6"
18
19
},
19
20
"bin" : " ./bin.js" ,
20
21
"scripts" : {
21
- "prepublish" : " npm ls && npm test" ,
22
- "test" : " set -e; for t in test/*.js; do node $t; done;"
22
+ "prepublish" : " npm ls && npm run unit" ,
23
+ "lint" : " standard" ,
24
+ "test" : " npm run lint && npm run unit" ,
25
+ "unit" : " set -e; for t in test/*.js; do node $t; done;"
23
26
},
24
27
"author" :
" Dominic Tarr <[email protected] > (dominictarr.com)" ,
25
28
"license" : " MIT"
You can’t perform that action at this time.
0 commit comments