-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 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
53
54
55
56
57
58
59
{
"name": "junit-report-merger",
"version": "9.0.3",
"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": "vitest run --coverage",
"typings": "tsc index.js --declaration --allowJs --emitDeclarationOnly --skipLibCheck --outDir typings"
},
"dependencies": {
"commander": "~14.0.0",
"tinyglobby": "^0.2.15",
"xmlbuilder2": "4.0.3"
},
"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": {
"@bhovhannes/shared-config": "0.0.1",
"@evilmartians/lefthook": "2.1.3",
"@vitest/coverage-v8": "^4.0.13",
"prettier": "3.8.1",
"typescript": "5.9.3",
"vitest": "^4.0.13"
},
"engines": {
"node": ">=20"
}
}