File tree 2 files changed +10
-3
lines changed
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
unist-util-stringify-position.js
Original file line number Diff line number Diff line change 28
28
"devDependencies" : {
29
29
"browserify" : " ^13.0.0" ,
30
30
"esmangle" : " ^1.0.0" ,
31
- "istanbul " : " ^0.4.0 " ,
31
+ "nyc " : " ^9.0.1 " ,
32
32
"remark-cli" : " ^2.0.0" ,
33
33
"remark-preset-wooorm" : " ^1.0.0" ,
34
34
"tape" : " ^4.5.1" ,
40
40
"build-mangle" : " esmangle unist-util-stringify-position.js > unist-util-stringify-position.min.js" ,
41
41
"build" : " npm run build-md && npm run build-bundle && npm run build-mangle" ,
42
42
"lint" : " xo" ,
43
- "test-api" : " node test.js " ,
44
- "test-coverage" : " istanbul cover test.js" ,
43
+ "test-api" : " node test" ,
44
+ "test-coverage" : " nyc --reporter lcov tape test.js" ,
45
45
"test" : " npm run build && npm run lint && npm run test-coverage"
46
46
},
47
+ "nyc" : {
48
+ "check-coverage" : true ,
49
+ "lines" : 100 ,
50
+ "functions" : 100 ,
51
+ "branches" : 100
52
+ },
47
53
"xo" : {
48
54
"space" : true ,
49
55
"ignores" : [
You can’t perform that action at this time.
0 commit comments