UNPKG

1.56 kBJSONView Raw
1{
2 "name": "c8",
3 "version": "6.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 "release": "standard-version"
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 "find-up": "^4.0.0",
37 "foreground-child": "^2.0.0",
38 "furi": "^1.3.0",
39 "istanbul-lib-coverage": "^2.0.5",
40 "istanbul-lib-report": "^2.0.8",
41 "istanbul-reports": "^2.2.6",
42 "rimraf": "^3.0.0",
43 "test-exclude": "^5.2.3",
44 "v8-to-istanbul": "^3.2.6",
45 "yargs": "^14.0.0",
46 "yargs-parser": "^15.0.0"
47 },
48 "devDependencies": {
49 "chai": "^4.2.0",
50 "chai-jest-snapshot": "^2.0.0",
51 "coveralls": "^3.0.6",
52 "mocha": "^6.2.0",
53 "standard": "^14.1.0",
54 "standard-version": "^7.0.0",
55 "ts-node": "^8.4.1",
56 "typescript": "^3.6.4"
57 },
58 "engines": {
59 "node": ">=10.12.0"
60 },
61 "files": [
62 "lib",
63 "bin",
64 "LICENSE"
65 ]
66}