-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 957 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 957 Bytes
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
{
"name": "@flipdishbytes/github-actions-junit-summary",
"version": "1.0.0",
"description": "GitHub Action that turns JUnit XML into job summaries and error annotations.",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "esbuild src/bin.ts --bundle --platform=node --target=node24 --format=esm --outfile=dist/index.js --banner:js=\"import{createRequire}from'node:module';const require=createRequire(import.meta.url);\"",
"test": "node --import tsx --test src/*.test.ts",
"typecheck": "tsc --noEmit",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "pnpm format:check && pnpm typecheck && pnpm test && pnpm build"
},
"dependencies": {
"@actions/core": "^1.11.1",
"fast-glob": "^3.3.2",
"fast-xml-parser": "^4.5.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.0",
"esbuild": "^0.24.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}