UNPKG

1.12 kBJSONView Raw
1{
2 "name": "nyc",
3 "version": "1.4.1",
4 "description": "forking code-coverage using istanbul.",
5 "main": "index.js",
6 "scripts": {
7 "test": "standard && ./bin/nyc.js tap ./test/nyc-test.js",
8 "coverage": "./bin/nyc-report.js --reporter=text-lcov | coveralls"
9 },
10 "bin": {
11 "nyc": "./bin/nyc.js",
12 "nyc-report": "./bin/nyc-report.js"
13 },
14 "config": {
15 "nyc": {
16 "exclude": [
17 "node_modules/"
18 ]
19 }
20 },
21 "keywords": [
22 "coverage",
23 "subprocess"
24 ],
25 "contributors": [
26 "Isaac Schlueter <i@izs.me>"
27 ],
28 "author": "Ben Coe <ben@npmjs.com>",
29 "license": "ISC",
30 "dependencies": {
31 "foreground-child": "^1.1.0",
32 "istanbul": "^0.3.14",
33 "jsonstream": "^1.0.3",
34 "lodash": "^3.8.0",
35 "mkdirp": "^0.5.0",
36 "rimraf": "^2.3.3",
37 "signal-exit": "^1.1.0",
38 "spawn-wrap": "0.0.9",
39 "strip-bom": "^1.0.0",
40 "yargs": "^3.8.0"
41 },
42 "devDependencies": {
43 "chai": "^2.3.0",
44 "coveralls": "^2.11.2",
45 "standard": "^3.7.3",
46 "tap": "^1.0.4"
47 },
48 "repository": {
49 "type": "git",
50 "url": "git@github.com:bcoe/nyc.git"
51 }
52}