-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.18 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
{
"name": "purge-deprecated-workflow-runs",
"description": "Delete github workflow runs that don't have a corresponding workflow (anymore) from the current repository. Optionally delete cancelled, failed or skipped workflow runs.",
"type": "module",
"scripts": {
"prebuild": "rm -rf dist",
"build": "npx @vercel/ncc build index.ts",
"postbuild": "npx convert-action",
"guard:build": "npx @vercel/ncc build index.guard.ts --minify -o index.guard && cp index.guard/index.js index.guard.js",
"pretest": "tsc",
"test": "node --test tests/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otto-de/purge-deprecated-workflow-runs.git"
},
"keywords": ["github action", "gh-action", "nodejs", "workflow management"],
"author": "hanseartic",
"license": "MIT",
"bugs": {
"url": "https://github.com/otto-de/purge-deprecated-workflow-runs/issues"
},
"homepage": "https://github.com/otto-de/purge-deprecated-workflow-runs#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/rest": "^21.0.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}
}