-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 896 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 896 Bytes
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
{
"name": "@lcov-viewer/istanbul-report",
"keywords": [
"coverage",
"code coverage",
"istanbul",
"lcov",
"report"
],
"version": "1.4.0",
"private": false,
"author": "Eugene Zinovyev <eugene.zinovyev@gmail.com>",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"build": "rollup -c"
},
"dependencies": {
"istanbul-lib-report": "^3.0.0"
},
"devDependencies": {
"@lcov-viewer/report": "^1.4.0",
"@lcov-viewer/rollup-copy": "^1.3.0",
"@rollup/plugin-terser": "^0.4.3",
"rollup": "^3.28.0"
},
"files": [
"lib/**/*.*"
],
"directories": {
"lib": "lib"
},
"description": "Istanbul grouped HTML report. Generates code coverage report grouped by directory.",
"repository": {
"type": "git",
"url": "https://github.com/eugenezinovyev/lcov-viewer.git",
"directory": "packages/istanbul-report"
}
}