Fix code coverage

This commit is contained in:
Sindre Sorhus 2021-11-26 16:50:15 +07:00
parent 04fdbd6d8d
commit 7a6893551d
4 changed files with 24 additions and 8 deletions

View file

@ -14,11 +14,12 @@
"default": "./source/vendor/supports-color/browser.js"
}
},
"types": "./source/index.d.ts",
"engines": {
"node": "^12.17.0 || ^14.13 || >=16.0.0"
},
"scripts": {
"test": "xo && nyc ava && tsd",
"test": "xo && c8 ava && tsd",
"bench": "matcha benchmark.js"
},
"files": [
@ -48,23 +49,29 @@
"text"
],
"devDependencies": {
"@types/node": "^16.11.10",
"ava": "^3.15.0",
"c8": "^7.10.0",
"color-convert": "^2.0.1",
"coveralls": "^3.1.1",
"execa": "^6.0.0",
"log-update": "^5.0.0",
"matcha": "^0.7.0",
"nyc": "^15.1.0",
"tsd": "^0.19.0",
"typescript": "^4.5.2",
"xo": "^0.47.0",
"yoctodelay": "^2.0.0"
},
"types": "./source/index.d.ts",
"xo": {
"rules": {
"unicorn/prefer-string-slice": "off",
"unicorn/better-regex": "off"
"unicorn/prefer-string-slice": "off"
}
},
"c8": {
"reporter": [
"text",
"lcov"
],
"exclude": [
"source/vendor"
]
}
}