UNPKG

1.62 kBJSONView Raw
1{
2 "name": "c8",
3 "version": "7.1.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 --reporter=html --reporter=text mocha --timeout=8000 ./test/*.js",
14 "test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
15 "fix": "standard --fix",
16 "posttest": "standard",
17 "coverage": "./bin/c8.js report --reporter=html --reporter=text-lcov | coveralls"
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": "^4.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": "^4.1.2",
47 "yargs": "^15.0.0",
48 "yargs-parser": "^17.0.0"
49 },
50 "devDependencies": {
51 "chai": "^4.2.0",
52 "chai-jest-snapshot": "^2.0.0",
53 "coveralls": "^3.0.6",
54 "mocha": "^7.1.2",
55 "standard": "^14.1.0",
56 "ts-node": "^8.4.1",
57 "typescript": "^3.7.4"
58 },
59 "engines": {
60 "node": ">=10.12.0"
61 },
62 "files": [
63 "index.js",
64 "index.d.ts",
65 "lib",
66 "bin",
67 "LICENSE"
68 ]
69}