File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
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
mdast-comment-marker.js
Original file line number Diff line number Diff line change 23
23
"devDependencies" : {
24
24
"browserify" : " ^14.0.0" ,
25
25
"esmangle" : " ^1.0.0" ,
26
- "istanbul " : " ^0.4.0 " ,
26
+ "nyc " : " ^10.3.2 " ,
27
27
"remark-cli" : " ^3.0.0" ,
28
28
"remark-preset-wooorm" : " ^3.0.0" ,
29
29
"tape" : " ^4.0.0" ,
35
35
"build-mangle" : " esmangle mdast-comment-marker.js > mdast-comment-marker.min.js" ,
36
36
"build" : " npm run build-md && npm run build-bundle && npm run build-mangle" ,
37
37
"lint" : " xo" ,
38
- "test-api" : " node test.js " ,
39
- "test-coverage" : " istanbul cover test.js" ,
38
+ "test-api" : " node test" ,
39
+ "test-coverage" : " nyc --reporter lcov tape test.js" ,
40
40
"test" : " npm run build && npm run lint && npm run test-coverage"
41
41
},
42
+ "nyc" : {
43
+ "check-coverage" : true ,
44
+ "lines" : 100 ,
45
+ "functions" : 100 ,
46
+ "branches" : 100
47
+ },
42
48
"xo" : {
43
49
"space" : true ,
44
50
"esnext" : false ,
You can’t perform that action at this time.
0 commit comments