forked from istanbuljs/istanbuljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "istanbuljs",
"version": "2.0.0",
"private": true,
"description": "monorepo containing the various nuts and bolts that facilitate istanbul.js test instrumentation",
"scripts": {
"pretest": "eslint .",
"test": "cross-env LERNA_TEST_RUN=1 NODE_ENV=test lerna --ignore nyc exec npm test",
"posttest": "node ./monorepo-merge-reports.js && nyc report",
"postinstall": "lerna bootstrap --hoist",
"release": "lerna publish --conventional-commits --dist-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-eslint": "^10.0.1",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"glob": "^7.1.3",
"lerna": "^3.13.4",
"nyc": "^14.1.0",
"prettier": "^1.17.0"
},
"nyc": {
"reporter": [
"text",
"lcov"
]
},
"engines": {
"node": ">=8"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}