File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
.DS_Store
2
2
* .log
3
+ .nyc_output /
3
4
coverage /
4
5
node_modules /
5
6
nlcst-to-string.js
Original file line number Diff line number Diff line change 26
26
"devDependencies" : {
27
27
"browserify" : " ^13.0.1" ,
28
28
"esmangle" : " ^1.0.1" ,
29
- "istanbul " : " ^0.4.0 " ,
29
+ "nyc " : " ^9.0.1 " ,
30
30
"remark-cli" : " ^2.0.0" ,
31
31
"remark-preset-wooorm" : " ^1.0.0" ,
32
32
"tape" : " ^4.0.0" ,
40
40
"build" : " npm run build-md && npm run build-bundle && npm run build-mangle" ,
41
41
"lint" : " xo" ,
42
42
"test-api" : " node test.js" ,
43
- "test-coverage" : " istanbul cover test.js" ,
43
+ "test-coverage" : " nyc --reporter lcov tape test.js" ,
44
44
"test" : " npm run build && npm run lint && npm run test-coverage"
45
45
},
46
+ "nyc" : {
47
+ "check-coverage" : true ,
48
+ "lines" : 100 ,
49
+ "functions" : 100 ,
50
+ "branches" : 100
51
+ },
46
52
"xo" : {
47
53
"space" : true ,
48
54
"ignore" : [
You can’t perform that action at this time.
0 commit comments