forked from rvagg/github-webhook-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 737 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 737 Bytes
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
{
"name": "github-webhook-handler",
"version": "1.0.0",
"description": "Web handler / middleware for processing GitHub Webhooks",
"main": "github-webhook-handler.js",
"types": "github-webhook-handler.d.ts",
"scripts": {
"lint": "standard *.js",
"test": "npm run lint && node test.js"
},
"keywords": [
"github",
"webhooks"
],
"author": "Rod Vagg <r@va.gg> (http://r.va.gg)",
"repository": {
"type": "git",
"url": "https://github.com/rvagg/github-webhook-handler.git"
},
"license": "MIT",
"dependencies": {
"bl": "~4.0.0"
},
"devDependencies": {
"@types/node": "*",
"run-series": "~1.1.8",
"standard": "~14.3.1",
"tape": "~4.11.0",
"through2": "~3.0.1"
}
}