-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "testim-junit-reporter",
"version": "0.0.1",
"private": true,
"description": "Testim JUnit reporter for GitHub Actions",
"main": "lib/index.js",
"author": "atlowChemi <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"type-check": "tsc --noEmit",
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --outfile=lib/index.js --sourcemap",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint --ext .ts src/",
"all": "yarn type-check && yarn build && yarn format && yarn lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlowChemi/testim-junit-reporter"
},
"bugs": {
"url": "https://github.com/atlowChemi/testim-junit-reporter/issues"
},
"keywords": [
"GitHub",
"Actions",
"Junit",
"test",
"Testim.io"
],
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"fast-xml-parser": "^4.4.0",
"global": "^4.4.0",
"source-map-support": "^0.5.21",
"tsx": "^4.16.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/node": "20",
"@typescript-eslint/parser": "^7.16.0",
"esbuild": "^0.23.0",
"eslint": "^8.34.0",
"eslint-plugin-github": "^4.6.1",
"prettier": "^2.8.4",
"typescript": "5.3"
}
}