generated from c-hive/js-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
53 lines (53 loc) · 1.31 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "gha-remove-artifacts",
"version": "1.2.0",
"description": "GitHub Action to remove old artifacts",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js --minify",
"dev": "cross-env NODE_ENV=dev node ./index.js",
"test": "echo 'No test framework configured'",
"lint": "eslint . --no-error-on-unmatched-pattern",
"lint:fix": "eslint . --no-error-on-unmatched-pattern --fix"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"github",
"action",
"remove",
"artifact"
],
"author": "c-hive",
"license": "MIT",
"//dependencies": {},
"dependencies": {
"@actions/core": "^1.2.2",
"@octokit/action": "^2.0.0",
"@octokit/plugin-throttling": "^3.2.0",
"moment": "^2.24.0",
"yn": "^4.0.0"
},
"//devDependencies": {
"eslint*": "code style",
"pre-commit": "run scripts before each commit",
"prettier": "code formatting"
},
"devDependencies": {
"@zeit/ncc": "^0.21.1",
"cross-env": "^7.0.0",
"dotenv-safe": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1"
},
"engines": {
"npm": ">=6.6"
}
}