forked from istanbuljs/istanbuljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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
{
"name": "istanbuljs",
"version": "2.0.0",
"private": true,
"description": "monorepo containing the various nuts and bolts that facilitate istanbul.js test instrumentation",
"scripts": {
"test": "cross-env LERNA_TEST_RUN=1 NODE_ENV=test nyc lerna --ignore nyc exec npm test",
"postinstall": "lerna bootstrap --hoist",
"release": "lerna publish --conventional-commits --npm-tag=next"
},
"repository": {
"type": "git",
"url": "git@github.com:istanbuljs/istanbuljs.git"
},
"keywords": [
"istanbuljs",
"coverage",
"nyc"
],
"author": "Ben Coe <ben@npmjs.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/istanbuljs/istanbuljs/issues"
},
"homepage": "https://istanbul.js.org/",
"devDependencies": {
"coveralls": "^3.0.1",
"cross-env": "^5.1.6",
"lerna": "^2.11.0",
"nyc": "^12.0.2"
},
"nyc": {
"exclude": [
"**/bin/**",
"**/coverage/**",
"**/dist/**",
"**/html/assets/**",
"**/test/**"
],
"reporter": [
"text",
"lcov"
],
"all": true
},
"engines": {
"node": ">=6"
}
}