forked from iamludal/action-purge-workflow-runs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 888 Bytes
/
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
{
"name": "purge-workflow-runs",
"version": "1.0.0",
"private": false,
"description": "GitHub Action to purge workflow runs",
"author": "Ludal",
"license": "MIT",
"main": "src/main.ts",
"scripts": {
"lint": "eslint --ext .ts .",
"build": "ncc build",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.10.1",
"dayjs": "^1.11.10"
},
"devDependencies": {
"@actions/github": "^5.1.1",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.3.1",
"jest-circus": "^29.3.1",
"js-yaml": "^4.1.0",
"prettier": "^2.8.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}