UNPKG

1.59 kBJSONView Raw
1{
2 "name": "c8",
3 "version": "7.1.0",
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 --reporter=html --reporter=text mocha --timeout=8000 ./test/*.js",
14 "test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
15 "posttest": "standard",
16 "coverage": "./bin/c8.js report --reporter=html --reporter=text-lcov | coveralls"
17 },
18 "standard": {
19 "ignore": [
20 "test/fixtures"
21 ]
22 },
23 "keywords": [
24 "coverage",
25 "v8",
26 "test",
27 "istanbul",
28 "profiler",
29 "inspector",
30 "node"
31 ],
32 "author": "Ben Coe <ben@npmjs.com>",
33 "license": "ISC",
34 "dependencies": {
35 "@bcoe/v8-coverage": "^0.2.3",
36 "@istanbuljs/schema": "^0.1.2",
37 "find-up": "^4.0.0",
38 "foreground-child": "^2.0.0",
39 "furi": "^2.0.0",
40 "istanbul-lib-coverage": "^3.0.0",
41 "istanbul-lib-report": "^3.0.0",
42 "istanbul-reports": "^3.0.0",
43 "rimraf": "^3.0.0",
44 "test-exclude": "^6.0.0",
45 "v8-to-istanbul": "^4.1.2",
46 "yargs": "^15.0.0",
47 "yargs-parser": "^16.0.0"
48 },
49 "devDependencies": {
50 "chai": "^4.2.0",
51 "chai-jest-snapshot": "^2.0.0",
52 "coveralls": "^3.0.6",
53 "mocha": "^7.0.0",
54 "standard": "^14.1.0",
55 "ts-node": "^8.4.1",
56 "typescript": "^3.7.4"
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}