| { | |
| "name": "c8", | |
| "version": "9.1.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": "cross-env TS_NODE_SKIP_PROJECT=true node ./bin/c8.js mocha --timeout=10000 ./test/*.js", | |
| "coverage": "cross-env TS_NODE_SKIP_PROJECT=true node ./bin/c8.js --check-coverage mocha --timeout=10000 ./test/*.js", | |
| "test:snap": "cross-env 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.3", | |
| "find-up": "^5.0.0", | |
| "foreground-child": "^3.1.1", | |
| "istanbul-lib-coverage": "^3.2.0", | |
| "istanbul-lib-report": "^3.0.1", | |
| "istanbul-reports": "^3.1.6", | |
| "test-exclude": "^6.0.0", | |
| "v8-to-istanbul": "^9.0.0", | |
| "yargs": "^17.7.2", | |
| "yargs-parser": "^21.1.1" | |
| }, | |
| "devDependencies": { | |
| "@types/node": "^20.0.0", | |
| "chai": "^4.3.6", | |
| "chai-jest-snapshot": "^2.0.0", | |
| "cross-env": "^7.0.3", | |
| "mocha": "^9.2.2", | |
| "standard": "^16.0.4", | |
| "ts-node": "^10.7.0", | |
| "typescript": "^5.0.0" | |
| }, | |
| "engines": { | |
| "node": ">=14.14.0" | |
| }, | |
| "files": [ | |
| "index.js", | |
| "index.d.ts", | |
| "lib", | |
| "bin" | |
| ] | |
| } | |