File tree Expand file tree Collapse file tree 4 files changed +14
-1
lines changed
Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 11.DS_Store
22* .log
3+ .nyc_output /
4+ coverage /
35node_modules /
46yarn.lock
Original file line number Diff line number Diff line change 1+ coverage /
Original file line number Diff line number Diff line change @@ -2,3 +2,4 @@ language: node_js
22node_js :
33- lts/boron
44- node
5+ after_script : bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change 3030 "unist-util-visit" : " ^1.0.0"
3131 },
3232 "devDependencies" : {
33+ "nyc" : " ^12.0.2" ,
3334 "prettier" : " ^1.14.2" ,
3435 "remark" : " ^9.0.0" ,
3536 "tape" : " ^4.0.0" ,
3637 "xo" : " ^0.22.0"
3738 },
3839 "scripts" : {
3940 "format" : " prettier --write \" **/*.js\" && xo --fix" ,
40- "test" : " tape test/*.js"
41+ "test-api" : " tape test/test.js" ,
42+ "test-coverage" : " nyc --reporter lcov tape test/test.js" ,
43+ "test" : " npm run format && npm run test-coverage"
44+ },
45+ "nyc" : {
46+ "check-coverage" : true ,
47+ "lines" : 100 ,
48+ "functions" : 100 ,
49+ "branches" : 100
4150 },
4251 "prettier" : {
4352 "tabWidth" : 2 ,
You can’t perform that action at this time.
0 commit comments