-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
{
"name": "junit2json",
"version": "3.1.13",
"description": "Convert JUnit XML format to JSON",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"default": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/",
"src/",
"LICENSE"
],
"bin": {
"junit2json": "dist/cjs/cli.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && tsconfig-to-dual-package",
"test": "node --test --experimental-strip-types --experimental-test-snapshots tests/**/*.test.ts",
"test:watch": "node --test --experimental-strip-types --experimental-test-snapshots --watch tests/**/*.test.ts",
"doc": "deno doc --unstable-byonm --unstable-sloppy-imports --html --name=junit2json src",
"doc:lint": "deno doc --unstable-byonm --unstable-sloppy-imports --lint src",
"integrate_test": "node --test integrate_tests/*.test.*",
"release:prepublish": "earthly +prepublish",
"release": "earthly +publish",
"jsr:version": "jq -r '.version' package.json | xargs -I {} jq '.version = \"{}\"' jsr.json > temp.json && mv temp.json jsr.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kesin11/ts-junit2json.git"
},
"keywords": [
"junit",
"parser"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kesin11/ts-junit2json/issues"
},
"homepage": "https://github.com/Kesin11/ts-junit2json#readme",
"dependencies": {
"@types/xml2js": "0.4.14",
"xml2js": "0.6.2",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/node": "22.10.2",
"@types/yargs": "17.0.33",
"tsconfig-to-dual-package": "^1.2.0",
"typescript": "5.7.2"
}
}