UNPKG

4.15 kBJSONView Raw
1{
2 "name": "nyc",
3 "version": "10.1.0",
4 "description": "the Istanbul command line interface",
5 "main": "index.js",
6 "scripts": {
7 "bundle": "bundle-dependencies update",
8 "pretest": "standard",
9 "test": "npm run cover",
10 "clean": "rimraf ./.nyc_output ./node_modules/.cache ./.self_coverage ./test/fixtures/.nyc_output ./test/fixtures/node_modules/.cache *covered.js ./lib/*covered.js",
11 "build": "node ./build-tests",
12 "instrument": "node ./build-self-coverage.js",
13 "run-tests": "tap -t120 --no-cov -b ./test/build/*.js ./test/src/nyc-bin.js ./test/src/process-args.js",
14 "report": "node ./bin/nyc --temp-directory ./.self_coverage/ -r text -r lcov report",
15 "cover": "npm run clean && npm run build && npm run instrument && npm run run-tests && npm run report",
16 "dev": "npm run clean && npm run build && npm run run-tests",
17 "release": "standard-version"
18 },
19 "bin": {
20 "nyc": "./bin/nyc.js"
21 },
22 "files": [
23 "index.js",
24 "bin/*.js",
25 "lib/*.js",
26 "lib/commands/*.js",
27 "lib/instrumenters/*.js",
28 "!**/*covered.js"
29 ],
30 "nyc": {
31 "exclude": [
32 "node_modules",
33 "bin",
34 "coverage",
35 "test/fixtures/coverage.js",
36 "test/build/*",
37 "test/nyc-test.js",
38 "index.covered.js",
39 "test/fixtures/_generateCoverage.js"
40 ]
41 },
42 "standard": {
43 "ignore": [
44 "**/fixtures/**",
45 "**/test/build/*"
46 ]
47 },
48 "keywords": [
49 "coverage",
50 "reporter",
51 "subprocess",
52 "testing"
53 ],
54 "contributors": [
55 {
56 "name": "Isaac Schlueter",
57 "website": "https://github.com/isaacs"
58 },
59 {
60 "name": "Mark Wubben",
61 "website": "https://novemberborn.net"
62 },
63 {
64 "name": "James Talmage",
65 "website": "https://twitter.com/jamestalmage"
66 },
67 {
68 "name": "Krishnan Anantheswaran",
69 "website": "https://github.com/gotwarlost"
70 }
71 ],
72 "author": "Ben Coe <ben@npmjs.com>",
73 "license": "ISC",
74 "dependencies": {
75 "archy": "^1.0.0",
76 "arrify": "^1.0.1",
77 "caching-transform": "^1.0.0",
78 "convert-source-map": "^1.3.0",
79 "debug-log": "^1.0.1",
80 "default-require-extensions": "^1.0.0",
81 "find-cache-dir": "^0.1.1",
82 "find-up": "^1.1.2",
83 "foreground-child": "^1.5.3",
84 "glob": "^7.0.6",
85 "istanbul-lib-coverage": "^1.0.0",
86 "istanbul-lib-hook": "^1.0.0",
87 "istanbul-lib-instrument": "^1.4.2",
88 "istanbul-lib-report": "^1.0.0-alpha.3",
89 "istanbul-lib-source-maps": "^1.1.0",
90 "istanbul-reports": "^1.0.0",
91 "md5-hex": "^1.2.0",
92 "merge-source-map": "^1.0.2",
93 "micromatch": "^2.3.11",
94 "mkdirp": "^0.5.0",
95 "resolve-from": "^2.0.0",
96 "rimraf": "^2.5.4",
97 "signal-exit": "^3.0.1",
98 "spawn-wrap": "1.2.4",
99 "test-exclude": "^3.3.0",
100 "yargs": "^6.6.0",
101 "yargs-parser": "^4.0.2"
102 },
103 "devDependencies": {
104 "any-path": "^1.3.0",
105 "bundle-dependencies": "^1.0.2",
106 "chai": "^3.0.0",
107 "coveralls": "^2.11.11",
108 "exists-sync": "0.0.4",
109 "forking-tap": "^0.1.1",
110 "is-windows": "^1.0.0",
111 "lodash": "^4.12.0",
112 "newline-regex": "^0.2.1",
113 "requirejs": "^2.3.0",
114 "sanitize-filename": "^1.5.3",
115 "sinon": "^1.15.3",
116 "source-map-support": "^0.4.6",
117 "split-lines": "^1.0.0",
118 "standard": "^8.0.0",
119 "standard-version": "^4.0.0",
120 "tap": "^9.0.3",
121 "which": "^1.2.11",
122 "zero-fill": "^2.2.3"
123 },
124 "repository": {
125 "type": "git",
126 "url": "git@github.com:istanbuljs/nyc.git"
127 },
128 "bundledDependencies": [
129 "archy",
130 "arrify",
131 "caching-transform",
132 "convert-source-map",
133 "debug-log",
134 "default-require-extensions",
135 "find-cache-dir",
136 "find-up",
137 "foreground-child",
138 "glob",
139 "istanbul-lib-coverage",
140 "istanbul-lib-hook",
141 "istanbul-lib-instrument",
142 "istanbul-lib-report",
143 "istanbul-lib-source-maps",
144 "istanbul-reports",
145 "md5-hex",
146 "merge-source-map",
147 "micromatch",
148 "mkdirp",
149 "resolve-from",
150 "rimraf",
151 "signal-exit",
152 "spawn-wrap",
153 "test-exclude",
154 "yargs",
155 "yargs-parser"
156 ],
157 "greenkeeper": {
158 "ignore": [
159 "find-up"
160 ]
161 }
162}