-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.06 KB
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": "koa-github-webhook-handler",
"version": "0.1.0",
"description": "Koa.js middleware for processing GitHub Webhooks",
"scripts": {
"build": "babel src/ -d lib/",
"prepublish": "npm run build",
"test": "tape -r babel-register test/**/*.es6"
},
"main": "lib/koa-github-webhook-handler.js",
"keywords": [
"github",
"webhooks",
"koa"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TinOo512/koa-github-webhook-handler.git"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-register": "^6.8.0",
"co-tape": "^1.0.0",
"koa": "^1.2.0",
"koa-body": "^1.4.0",
"superagent": "^1.8.3",
"superagent-promise-plugin": "^3.2.0",
"tape": "^4.5.1"
},
"engines": {
"node": ">=4.0"
},
"bugs": {
"url": "https://github.com/TinOo512/koa-github-webhook-handler/issues"
},
"homepage": "https://github.com/TinOo512/koa-github-webhook-handler#readme",
"author": "TinOo512 <etienne.dedieuleveult@gmail.com>",
"license": "MIT"
}