forked from istanbuljs/istanbuljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.7 KB
/
package.json
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
{
"name": "istanbuljs",
"version": "2.0.0",
"private": true,
"description": "monorepo containing the various nuts and bolts that facilitate istanbul.js test instrumentation",
"scripts": {
"posttest": "eslint .",
"test": "cross-env LERNA_TEST_RUN=1 NODE_ENV=test nyc lerna --ignore nyc exec npm test",
"postinstall": "lerna bootstrap",
"release": "lerna publish --conventional-commits --npm-tag=next"
},
"repository": {
"type": "git",
"url": "[email protected]:istanbuljs/istanbuljs.git"
},
"keywords": [
"istanbuljs",
"coverage",
"nyc"
],
"author": "Ben Coe <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/istanbuljs/istanbuljs/issues"
},
"homepage": "https://github.com/istanbuljs/istanbuljs",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"chai": "^4.1.2",
"clone": "^2.1.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"debug": "^4.1.1",
"documentation": "^7.1.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.0",
"is-windows": "^1.0.2",
"js-yaml": "^3.12.0",
"lerna": "^3.11.1",
"memory-streams": "^0.1.3",
"mocha": "^6.0.0",
"nopt": "^4.0.1",
"nyc": "^13.3.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.2"
},
"nyc": {
"exclude": [
"**/bin/**",
"**/coverage/**",
"**/dist/**",
"**/html/assets/**",
"**/test/**"
],
"reporter": [
"text",
"lcov"
],
"all": true
},
"engines": {
"node": ">=6"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}