-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "github-auto-label",
"version": "0.0.1",
"description": "A small Node.js webshook server to auto-label new Github Issues or PRs on submission",
"main": "github-auto-label.js",
"scripts": {
"test": "tap test/*.tap.js",
"start": "node github-auto-label.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sfbrigade/github-auto-label.git"
},
"keywords": [
"github",
"label",
"auto",
"tag",
"in",
"progress",
"needs",
"review",
"git",
"webhook",
"service",
"microservice",
"brigade",
"cfa",
"c4sf",
"cfsf",
"code",
"for",
"san",
"francisco"
],
"author": "Trent Oswald <trentoswald@therebelrobot.com> (@therebelrobot)",
"license": "ISC",
"bugs": {
"url": "https://github.com/sfbrigade/github-auto-label/issues"
},
"homepage": "https://github.com/sfbrigade/github-auto-label#readme",
"devDependencies": {
"standard": "^6.0.8",
"tap": "^5.7.0"
},
"dependencies": {
"body-parser": "^1.15.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"debug-log": "^1.0.0",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-github-webhook": "^1.0.5",
"lodash": "^4.7.0",
"request": "^2.69.0"
}
}