| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "name": "c8",
- "version": "10.1.3",
- "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": "^1.0.1",
- "@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": "^7.0.1",
- "v8-to-istanbul": "^9.0.0",
- "yargs": "^17.7.2",
- "yargs-parser": "^21.1.1"
- },
- "devDependencies": {
- "@types/node": "^22.0.0",
- "chai": "^4.3.6",
- "chai-jest-snapshot": "^2.0.0",
- "cross-env": "^7.0.3",
- "mocha": "^11.0.1",
- "standard": "^16.0.4",
- "ts-node": "^10.7.0",
- "typescript": "^5.0.0"
- },
- "peerDependencies": {
- "monocart-coverage-reports": "^2"
- },
- "peerDependenciesMeta": {
- "monocart-coverage-reports": {
- "optional": true
- }
- },
- "engines": {
- "node": ">=18"
- },
- "files": [
- "index.js",
- "index.d.ts",
- "lib",
- "bin"
- ]
- }
|