-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.16 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": "ci-gate",
"license": "unlicense",
"version": "1.0.0",
"author": "Michael Vines",
"email": "mvines@gmail.com",
"homepage": "https://github.com/mvines/ci-gate",
"main": "index.js",
"scripts": {
"postinstall": "scripts/postinstall.sh",
"start": "babel-node index.js",
"lint": "eslint --no-ignore . .eslintrc.js",
"lintf": "npm run lint -- --fix",
"test": "npm run lint"
},
"dependencies": {
"@octokit/webhooks": "^6.3.2",
"axios": "^1.5.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"body-parser": "^1.19.0",
"buildnode": "^1.0.0",
"child-process-promise": "^2.2.1",
"es6-promisify": "^6.0.2",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"moment": "^2.24.0",
"octonode": "^0.9.5",
"request-promise": "^4.2.5",
"silk-log": "^1.14.5"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}