-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "fresh",
"version": "1.0.3",
"description": "A bot against stale bots",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.js --minify",
"dev": "cross-env NODE_ENV=dev node ./index.js",
"lint": "eslint . --no-error-on-unmatched-pattern",
"lint:fix": "eslint . --no-error-on-unmatched-pattern --fix",
"test": "mocha src/**/*.test.js --require esm"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@octokit/action": "^2.0.3",
"@octokit/plugin-throttling": "^3.2.0",
"moment": "^2.24.0"
},
"//devDependencies": {
"@zeit/ncc": "build into a single file",
"dotenv-safe": "load environment variables for local development",
"eslint*": "code style",
"pre-commit": "run scripts before each commit",
"prettier": "code formatting",
"mocha": "test farmework",
"chai": "test assertions",
"esm": "ES^ support for mocha"
},
"devDependencies": {
"@zeit/ncc": "^0.22.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"dotenv-safe": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^8.0.1",
"pre-commit": "^1.2.2",
"prettier": "^2.0.2",
"esm": "^3.2.25"
},
"engines": {
"npm": ">=6.6"
},
"pre-commit": [
"lint",
"test"
]
}