1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "c8",
- "version": "7.14.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": "^2.0.0",
- "istanbul-lib-coverage": "^3.2.0",
- "istanbul-lib-report": "^3.0.0",
- "istanbul-reports": "^3.1.4",
- "rimraf": "^3.0.2",
- "test-exclude": "^6.0.0",
- "v8-to-istanbul": "^9.0.0",
- "yargs": "^16.2.0",
- "yargs-parser": "^20.2.9"
- },
- "devDependencies": {
- "@types/node": "^18.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": "^4.6.2"
- },
- "engines": {
- "node": ">=10.12.0"
- },
- "files": [
- "index.js",
- "index.d.ts",
- "lib",
- "bin"
- ]
- }
|