UNPKG

1.5 kBJSONView Raw
1{
2 "name": "c8",
3 "version": "3.2.0",
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 ./test/*.js",
13 "test:snap": "CHAI_JEST_SNAPSHOT_UPDATE_ALL=true npm test",
14 "posttest": "standard",
15 "coverage": "./bin/c8.js report --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 "find-up": "^3.0.0",
36 "foreground-child": "^1.5.6",
37 "istanbul-lib-coverage": "^2.0.1",
38 "istanbul-lib-report": "^2.0.1",
39 "istanbul-reports": "^2.0.0",
40 "mkdirp": "^0.5.1",
41 "rimraf": "^2.6.2",
42 "test-exclude": "^5.0.0",
43 "uuid": "^3.3.2",
44 "v8-coverage-merge": "^1.1.2",
45 "v8-to-istanbul": "^1.2.0",
46 "yargs": "^12.0.2",
47 "yargs-parser": "^10.1.0"
48 },
49 "devDependencies": {
50 "chai": "^4.1.2",
51 "chai-jest-snapshot": "^2.0.0",
52 "coveralls": "^3.0.2",
53 "mocha": "^5.2.0",
54 "standard": "^12.0.1",
55 "standard-version": "^4.4.0"
56 },
57 "engines": {
58 "node": ">=10.10.0"
59 },
60 "files": [
61 "lib",
62 "bin",
63 "LICENSE"
64 ]
65}