UNPKG

1.5 kBJSONView Raw
1{
2 "name": "c8",
3 "version": "4.1.5",
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=4000 ./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.1",
36 "find-up": "^3.0.0",
37 "foreground-child": "^1.5.6",
38 "furi": "^1.3.0",
39 "istanbul-lib-coverage": "^2.0.1",
40 "istanbul-lib-report": "^2.0.1",
41 "istanbul-reports": "^2.2.4",
42 "rimraf": "^2.6.2",
43 "test-exclude": "^5.0.0",
44 "v8-to-istanbul": "^3.1.3",
45 "yargs": "^13.1.0",
46 "yargs-parser": "^10.1.0"
47 },
48 "devDependencies": {
49 "chai": "^4.2.0",
50 "chai-jest-snapshot": "^2.0.0",
51 "coveralls": "^3.0.3",
52 "mocha": "^5.2.0",
53 "standard": "^12.0.1",
54 "standard-version": "^6.0.1"
55 },
56 "engines": {
57 "node": ">=10.12.0"
58 },
59 "files": [
60 "lib",
61 "bin",
62 "LICENSE"
63 ]
64}