c8
Version:
output coverage reports using Node.js' built in coverage
68 lines (67 loc) • 1.53 kB
JSON
{
"name": "c8",
"version": "7.8.0",
"description": "output coverage reports using Node.js' built in coverage",
"main": "./index.js",
"types": "./index.d.ts",
"bin": "./bin/c8.js",
"repository": {
"type": "git",
"url": "git@github.com:bcoe/c8.git"
},
"scripts": {
"test": "node ./bin/c8.js mocha --timeout=8000 ./test/*.js",
"coverage": "node ./bin/c8.js --check-coverage mocha --timeout=8000 ./test/*.js",
"test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
"fix": "standard --fix",
"posttest": "standard"
},
"standard": {
"ignore": [
"test/fixtures"
]
},
"keywords": [
"coverage",
"v8",
"test",
"istanbul",
"profiler",
"inspector",
"node"
],
"author": "Ben Coe <ben@npmjs.com>",
"license": "ISC",
"dependencies": {
"@bcoe/v8-coverage": "^0.2.3",
"@istanbuljs/schema": "^0.1.2",
"find-up": "^5.0.0",
"foreground-child": "^2.0.0",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.0.2",
"rimraf": "^3.0.0",
"test-exclude": "^6.0.0",
"v8-to-istanbul": "^8.0.0",
"yargs": "^16.2.0",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-jest-snapshot": "^2.0.0",
"mocha": "^9.0.0",
"standard": "^16.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.0"
},
"engines": {
"node": ">=10.12.0"
},
"files": [
"index.js",
"index.d.ts",
"lib",
"bin",
"LICENSE"
]
}