-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "junit-reports-combiner",
"version": "0.0.4",
"description": "Combine JUnit XML reports from two and more.",
"bin": {
"junit-reports-combiner": "dist/cli/junit-reports-combiner/bin.js",
"checkstyle-reports-combiner": "dist/cli/checkstyle-reports-combiner/bin.js"
},
"man": [
"man/man1/junit-reports-combiner.1",
"man/man1/checkstyle-reports-combiner.1"
],
"main": "dist/main.js",
"scripts": {
"test": "gulp test",
"prepare": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naokikimura/junit-reports-combiner.git"
},
"keywords": [
"junit",
"checkstyle",
"xml",
"cli"
],
"author": "Naoki Kimura",
"license": "MIT",
"bugs": {
"url": "https://github.com/naokikimura/junit-reports-combiner/issues"
},
"homepage": "https://github.com/naokikimura/junit-reports-combiner#readme",
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"gulp": "^4.0.2",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@types/xmldom": "^0.1.29",
"xmldom": "^0.2.1",
"xpath": "0.0.27"
}
}