UNPKG

1.56 kBJSONView Raw
1{
2 "name": "c8",
3 "version": "7.3.1",
4 "description": "output coverage reports using Node.js' built in coverage",
5 "main": "./index.js",
6 "types": "./index.d.ts",
7 "bin": "./bin/c8.js",
8 "repository": {
9 "type": "git",
10 "url": "git@github.com:bcoe/c8.git"
11 },
12 "scripts": {
13 "test": "node ./bin/c8.js mocha --timeout=8000 ./test/*.js",
14 "coverage": "node ./bin/c8.js --check-coverage mocha --timeout=8000 ./test/*.js",
15 "test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
16 "fix": "standard --fix",
17 "posttest": "standard"
18 },
19 "standard": {
20 "ignore": [
21 "test/fixtures"
22 ]
23 },
24 "keywords": [
25 "coverage",
26 "v8",
27 "test",
28 "istanbul",
29 "profiler",
30 "inspector",
31 "node"
32 ],
33 "author": "Ben Coe <ben@npmjs.com>",
34 "license": "ISC",
35 "dependencies": {
36 "@bcoe/v8-coverage": "^0.2.3",
37 "@istanbuljs/schema": "^0.1.2",
38 "find-up": "^5.0.0",
39 "foreground-child": "^2.0.0",
40 "furi": "^2.0.0",
41 "istanbul-lib-coverage": "^3.0.0",
42 "istanbul-lib-report": "^3.0.0",
43 "istanbul-reports": "^3.0.2",
44 "rimraf": "^3.0.0",
45 "test-exclude": "^6.0.0",
46 "v8-to-istanbul": "^5.0.0",
47 "yargs": "^16.0.0",
48 "yargs-parser": "^20.0.0"
49 },
50 "devDependencies": {
51 "chai": "^4.2.0",
52 "chai-jest-snapshot": "^2.0.0",
53 "mocha": "^8.1.3",
54 "standard": "^14.1.0",
55 "ts-node": "^9.0.0",
56 "typescript": "^4.0.0"
57 },
58 "engines": {
59 "node": ">=10.12.0"
60 },
61 "files": [
62 "index.js",
63 "index.d.ts",
64 "lib",
65 "bin",
66 "LICENSE"
67 ]
68}