-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
37 lines (37 loc) · 839 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
{
"name": "github-webhook",
"version": "2.0.2",
"description": "A flexible web server for reacting GitHub Webhooks",
"main": "github-webhook.js",
"scripts": {
"lint": "standard *.js",
"test": "npm run lint && node test.js"
},
"bin": {
"github-webhook": "./github-webhook.js"
},
"keywords": [
"github",
"webhooks"
],
"author": "Rod Vagg <[email protected]> (http://r.va.gg)",
"repository": {
"type": "git",
"url": "https://github.com/rvagg/github-webhook.git"
},
"license": "MIT",
"devDependencies": {
"bl": "^4.0.1",
"standard": "^14.3.3",
"supertest": "^4.0.2",
"tape": "^4.13.2"
},
"dependencies": {
"debug": "^4.1.1",
"github-webhook-handler": "^1.0.0",
"matchme": "^2.0.1",
"minimist": "^1.2.5",
"split2": "^3.1.1",
"through2": "^3.0.1"
}
}