-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "delete-run-artifacts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint 'src/**.js' --fix",
"precommit": "npm run build && git add dist/",
"build": "ncc build src/index.js",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christian-korneck/delete-run-artifacts-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/christian-korneck/delete-run-artifacts-action/issues"
},
"homepage": "https://github.com/christian-korneck/delete-run-artifacts-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"exponential-backoff": "^3.1.0"
},
"devDependencies": {
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"ncc": "^0.3.6",
"prettier": "^2.2.1"
}
}