-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 KB
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
{
"name": "@naturalcycles/junit-lib",
"scripts": {
"prepare": "husky install",
"junit2html": "tsn ./src/bin/junit2html.ts",
"junit2html-debug": "tsn ./src/bin/junit2html.ts './test/reports/**/*.xml' --out ./tmp/report.html --debug"
},
"dependencies": {
"@naturalcycles/js-lib": "^14.41.0",
"@naturalcycles/json2html": "^1.0.0",
"@naturalcycles/nodejs-lib": "^12.66.0",
"fs-extra": "^10.0.0",
"globby": "^11.0.0",
"xml2js": "^0.4.19",
"yargs": "^17.1.1"
},
"devDependencies": {
"@naturalcycles/dev-lib": "^12.1.3",
"@types/xml2js": "^0.4.9",
"jest": "^27.1.0"
},
"files": [
"dist",
"src",
"!src/test",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"!src/**/__exclude"
],
"bin": {
"junit2html": "dist/bin/junit2html.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/junit-lib"
},
"engines": {
"node": ">=10.13"
},
"version": "1.1.0",
"description": "Convert junit xml to html, merge multiple junit xml reports",
"keywords": [
"junit",
"xunit",
"html"
],
"author": "Natural Cycles Team",
"license": "MIT"
}