File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 2
2
.idea /
3
3
/scratch
4
4
/perf-test
5
+ /coverage
5
6
/npm-debug.log
Original file line number Diff line number Diff line change 4
4
- " 5.6"
5
5
- " 4.3"
6
6
- " 0.12"
7
- - " 0.10"
7
+ - " 0.10"
8
+
9
+ script : " npm run-script test-travis"
10
+ # Send coverage data to Coveralls
11
+ after_script : " cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"compile" : " babel --source-maps -d lib/ src/" ,
8
8
"prepublish" : " npm run compile" ,
9
- "test" : " make test"
9
+ "test" : " ./node_modules/mocha/bin/mocha ./test/*" ,
10
+ "test-travis" : " ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
10
11
},
11
12
"author" : {
12
13
"name" : " Jayesh Wadhwani" ,
17
18
"babel-cli" : " ^6.5.1" ,
18
19
"babel-preset-es2015" : " ^6.5.0" ,
19
20
"chai" : " ^3.5.0" ,
20
- "mocha" : " ^2.4.5"
21
- },
22
- "dependencies" : {
21
+ "coveralls" : " ^2.11.6" ,
22
+ "istanbul" : " ^0.4.2" ,
23
+ "mocha" : " ^2.4.5" ,
24
+ "mocha-lcov-reporter" : " ^1.2.0"
23
25
},
26
+ "dependencies" : {},
24
27
"directories" : {
25
28
"example" : " examples" ,
26
29
"test" : " test"
29
32
"type" : " git" ,
30
33
"url" : " https://github.com/jwadhwani/simple-series-parallel.git"
31
34
},
32
- "engines" : { "node" : " >=0.10.3" },
35
+ "engines" : {
36
+ "node" : " >=0.10.3"
37
+ },
33
38
"keywords" : [
34
39
" async" ,
35
40
" asynchronous" ,
36
41
" series" ,
37
42
" parallel"
38
43
]
39
44
}
40
-
You can’t perform that action at this time.
0 commit comments