-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 959 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 959 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
29
30
31
32
33
34
{
"name": "phpunit-retry-action",
"version": "1.0.0",
"description": "Intelligently retry failed PHPUnit tests with @depends resolution",
"private": true,
"prettier": {
"tabWidth": 2,
"singleQuote": true
},
"scripts": {
"prebuild": "bun check",
"build": "bun build ./src/index.ts --minify --target node --format cjs --outdir ./dist",
"format": "prettier --write '{src,tests}/**/*.ts'",
"lint": "prettier --check '{src,tests}/**/*.ts'",
"test": "bun test",
"test:unit": "bun test tests/unit/",
"test:integration": "bun run tests/integration/index.ts",
"check": "bun lint && tsc --noEmit"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.7.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@actions/core": "^2.0.1",
"@actions/exec": "^2.0.0",
"@actions/github": "^6.0.0",
"fast-xml-parser": "^5.3.3",
"tree-kill": "^1.2.2"
}
}