forked from bhovhannes/junit-report-merger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.34 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
56
57
58
{
"name": "junit-report-merger",
"version": "3.0.5",
"description": "Merges multiple JUnit XML reports into one.",
"main": "index.js",
"bin": {
"junit-report-merger": "./cli.js",
"jrm": "./cli.js"
},
"files": [
"typings",
"index.js",
"cli.js",
"src/**/*.js"
],
"types": "typings/index.d.ts",
"scripts": {
"format": "prettier --write '**/*.{ts,tsx,js,jsx,css,md,yml}'",
"prepublishOnly": "npm run typings",
"test": "jest --coverage",
"typings": "tsc index.js --declaration --allowJs --emitDeclarationOnly --outDir typings"
},
"dependencies": {
"fast-glob": "3.2.11",
"xmlbuilder2": "3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhovhannes/junit-report-merger.git"
},
"keywords": [
"junit",
"xml",
"cypress",
"report",
"test",
"result",
"merge",
"combine"
],
"author": "Hovhannes Babayan",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhovhannes/junit-report-merger/issues"
},
"homepage": "https://github.com/bhovhannes/junit-report-merger#readme",
"devDependencies": {
"@evilmartians/lefthook": "1.0.5",
"@bhovhannes/shared-config": "0.0.1",
"@jest/globals": "28.1.3",
"jest": "28.1.3",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"engines": {
"node": ">=12"
}
}