-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.42 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "junit-to-ctrf",
"version": "0.0.14",
"description": "Convert JUnit XML reports to CTRF JSON",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"build:check": "tsc -p . -noEmit",
"build:watch": "tsc -p . --watch",
"clean": "rm -rf dist && rm -rf coverage && rm -rf ctrf",
"test": "vitest run",
"lint": "biome lint --write . --unsafe",
"lint:check": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"e2e:junit": "node dist/cli.js reports/test-junit.xml --output reports/test-junit-ctrf.json",
"e2e:junit-nested": "node dist/cli.js reports/test-junit-nested.xml --output reports/test-junit-nested-ctrf.json",
"e2e:minitest": "node dist/cli.js reports/test-minitest-junit.xml --output reports/test-minitest-junit-ctrf.json",
"e2e:surefire": "node dist/cli.js reports/test-surefire.xml --output reports/test-surefire-ctrf.json",
"e2e:glob": "node dist/cli.js \"reports/*.xml\" --output reports/test-glob-ctrf.json",
"e2e:surefire-flaky": "node dist/cli.js reports/test-surefire-flaky.xml --output reports/test-surefire-flaky-ctrf.json",
"e2e:surefire-retry": "node dist/cli.js reports/test-surefire-retry.xml --output reports/test-surefire-retry-ctrf.json",
"e2e:junit-problem-string": "node dist/cli.js reports/test-junit-problem-string.xml --output reports/test-junit-problem-string-ctrf.json",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"all": "npm run build:check && npm run test && npm run lint && npm run format && npm run docs && npm run build && npm run check",
"check": "biome check ."
},
"bin": {
"junit-to-ctrf": "./dist/cli.js"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"README.md"
],
"author": "Matthew Thomas",
"repository": {
"type": "git",
"url": "git+https://github.com/ctrf-io/junit-to-ctrf.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"homepage": "https://ctrf.io",
"license": "MIT",
"dependencies": {
"ctrf": "0.2.1",
"fs-extra": "11.3.6",
"glob": "13.0.6",
"xml2js": "0.6.2",
"yargs": "18.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@d2t/vitest-ctrf-json-reporter": "1.3.0",
"@types/fs-extra": "11.0.4",
"@types/node": "26.1.0",
"@types/xml2js": "0.4.14",
"@types/yargs": "17.0.35",
"typedoc": "0.28.19",
"typedoc-plugin-markdown": "4.12.0",
"typescript": "6.0.3",
"vitest": "4.1.9"
}
}