forked from mvines/ci-gate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "ci-gate",
"license": "unlicense",
"version": "1.0.0",
"author": "Michael Vines",
"email": "[email protected]",
"homepage": "https://github.com/mvines/ci-gate",
"main": "index.js",
"engines": {
"node": "^9.0.0",
"npm": "^5.6.0"
},
"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": "^5.0.2",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"body-parser": "^1.18.2",
"buildnode": "^1.0.0",
"child-process-promise": "^2.2.1",
"es6-promisify": "^6.0.0",
"express": "^4.15.2",
"fs-extra": "^7.0.0",
"moment": "^2.22.2",
"octonode": "^0.9.4",
"request-promise": "^4.2.2",
"silk-log": "^1.14.5"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}