UNPKG

3.12 kBJSONView Raw
1{
2 "name": "nyc",
3 "version": "14.1.1",
4 "description": "the Istanbul command line interface",
5 "main": "index.js",
6 "scripts": {
7 "lint": "standard",
8 "pretest": "npm run lint && npm run clean && npm run instrument",
9 "test": "tap -t360 --no-cov -b test/*.js",
10 "snap": "cross-env TAP_SNAPSHOT=1 npm test",
11 "posttest": "npm run report",
12 "clean": "rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache ./self-coverage",
13 "instrument": "node ./build-self-coverage.js",
14 "report": "node ./bin/nyc report --temp-dir ./.self_coverage/ -r text -r lcov",
15 "release": "standard-version"
16 },
17 "bin": {
18 "nyc": "./bin/nyc.js"
19 },
20 "files": [
21 "index.js",
22 "bin/*.js",
23 "lib/**/*.js"
24 ],
25 "nyc": {
26 "exclude": [
27 "node_modules",
28 "coverage",
29 "self-coverage",
30 "test/fixtures/coverage.js",
31 "test/build/*",
32 "test/src/*",
33 "test/nyc.js",
34 "test/process-args.js",
35 "test/fixtures/_generateCoverage.js"
36 ]
37 },
38 "standard": {
39 "ignore": [
40 "**/fixtures/**",
41 "**/test/build/*"
42 ]
43 },
44 "keywords": [
45 "coverage",
46 "reporter",
47 "subprocess",
48 "testing"
49 ],
50 "contributors": [
51 {
52 "name": "Isaac Schlueter",
53 "website": "https://github.com/isaacs"
54 },
55 {
56 "name": "Mark Wubben",
57 "website": "https://novemberborn.net"
58 },
59 {
60 "name": "James Talmage",
61 "website": "https://twitter.com/jamestalmage"
62 },
63 {
64 "name": "Krishnan Anantheswaran",
65 "website": "https://github.com/gotwarlost"
66 }
67 ],
68 "author": "Ben Coe <ben@npmjs.com>",
69 "license": "ISC",
70 "dependencies": {
71 "archy": "^1.0.0",
72 "caching-transform": "^3.0.2",
73 "convert-source-map": "^1.6.0",
74 "cp-file": "^6.2.0",
75 "find-cache-dir": "^2.1.0",
76 "find-up": "^3.0.0",
77 "foreground-child": "^1.5.6",
78 "glob": "^7.1.3",
79 "istanbul-lib-coverage": "^2.0.5",
80 "istanbul-lib-hook": "^2.0.7",
81 "istanbul-lib-instrument": "^3.3.0",
82 "istanbul-lib-report": "^2.0.8",
83 "istanbul-lib-source-maps": "^3.0.6",
84 "istanbul-reports": "^2.2.4",
85 "js-yaml": "^3.13.1",
86 "make-dir": "^2.1.0",
87 "merge-source-map": "^1.1.0",
88 "resolve-from": "^4.0.0",
89 "rimraf": "^2.6.3",
90 "signal-exit": "^3.0.2",
91 "spawn-wrap": "^1.4.2",
92 "test-exclude": "^5.2.3",
93 "uuid": "^3.3.2",
94 "yargs": "^13.2.2",
95 "yargs-parser": "^13.0.0"
96 },
97 "devDependencies": {
98 "any-path": "^1.3.0",
99 "chai": "^4.2.0",
100 "coveralls": "^3.0.3",
101 "cross-env": "^5.2.0",
102 "is-windows": "^1.0.2",
103 "lodash": "^4.17.11",
104 "newline-regex": "^0.2.1",
105 "pify": "^4.0.1",
106 "requirejs": "^2.3.6",
107 "sanitize-filename": "^1.6.1",
108 "source-map-support": "^0.5.12",
109 "standard": "^12.0.1",
110 "standard-version": "^5.0.2",
111 "strip-indent": "^2.0.0",
112 "tap": "^12.6.5",
113 "which": "^1.3.1",
114 "zero-fill": "^2.2.3"
115 },
116 "engines": {
117 "node": ">=6"
118 },
119 "repository": {
120 "type": "git",
121 "url": "git@github.com:istanbuljs/nyc.git"
122 }
123}