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