-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 834 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 834 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": "gitlab-bot",
"version": "1.1.0",
"description": "A bot to automatically react on gitlab events. It should be able to enhance the bot with plugins.",
"main": "lib/index.js",
"bin": {
"gitlab-bot": "./bin/gitlab-bot.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node bin/gitlab-bot"
},
"repository": {
"type": "git",
"url": "https://github.com/gopenguin/gitlab-bot"
},
"author": "Anita Hensel, Stefan Kollmann",
"license": "MIT",
"dependencies": {
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"commander": "^2.12.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"node-gitlab-api": "^2.1.1",
"node-gitlab-webhook": "^1.0.3",
"pkg-conf": "^2.1.0",
"promise-events": "^0.1.4",
"resolve": "^1.5.0"
}
}