-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
42 lines (42 loc) · 1.23 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
{
"name": "@start/plugin-lib-istanbul",
"version": "2.0.0",
"description": "💯 Collect, report and check code coverage using Istanbul",
"keywords": "tasks, runner, start, start-plugin, coverage, istanbul",
"repository": "deepsweet/start",
"author": "Kir Belevich <[email protected]> (https://github.com/deepsweet)",
"license": "MIT",
"main": "src/index.ts",
"files": [
"build/"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=12.13.0"
},
"dependencies": {
"@babel/runtime": "^7.4.2",
"@start/plugin": "^2.0.0",
"convert-source-map": "^1.6.0",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-hook": "^3.0.0",
"istanbul-lib-instrument": "^4.0.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"istanbul-reports": "^3.0.2",
"tsfn": "^2.2.0"
},
"devDependencies": {
"@types/convert-source-map": "^1.5.1",
"@types/istanbul-lib-coverage": "^2.0.0",
"@types/istanbul-lib-hook": "^2.0.0",
"@types/istanbul-lib-instrument": "^1.7.2",
"@types/istanbul-lib-report": "^3.0.0",
"@types/istanbul-lib-source-maps": "^4.0.0",
"@types/istanbul-reports": "^3.0.0",
"@types/tape": "^4.2.34",
"tape": "^5.0.0"
}
}