-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1003 Bytes
/
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
{
"name": "github-webhook-service",
"version": "1.0.0",
"description": "Run helpful checks on pull requests",
"main": "index.js",
"repository": "mnd-github-webhook-service",
"author": "Trond Fröding Hatlen <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": "11",
"yarn": "^1.3.2"
},
"scripts": {
"start": "node index.js",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest"
},
"dependencies": {
"@octokit/rest": "^14.0.7",
"@octokit/webhooks": "^3.1.0",
"aws-sdk": "^2.207.0",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"dotenv-flow": "^0.2.0",
"http-cors": "^1.0.2",
"rimraf": "^2.6.2"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"get-port": "^3.2.0",
"jest": "23.6",
"mock-spawn": "^0.2.6",
"nock": "^10.0.6",
"node-fetch": "^2.0.0",
"pify": "^3.0.0"
}
}