UNPKG

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