-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
33 lines (33 loc) · 924 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
{
"private": true,
"name": "gitlab-slack",
"version": "2.1.3",
"description": "A service that receives webhook notifications from GitLab and posts information to an incoming webhook on Slack.",
"main": "app/app.js",
"author": "Chris Harwood",
"license": "MIT",
"homepage": "https://github.com/nazrhyn/gitlab-slack",
"bugs": "https://github.com/nazrhyn/gitlab-slack/issues",
"repository": {
"type": "git",
"url": "https://github.com/nazrhyn/gitlab-slack.git"
},
"scripts": {
"start": "node app/app.js",
"ngrok": "ngrok start -config ~/.ngrok2/ngrok.yml -config ngrok.yml gs",
"relock": "rm -rf node_modules/ package-lock.json && npm install && { npm outdated || true; }"
},
"engines": {
"node": ">=8.x",
"npm": ">=6.x"
},
"dependencies": {
"bluebird": "3.x",
"chalk": "2.x",
"debug": "4.x",
"lodash": "4.x",
"request": "2.x",
"request-promise": "4.x",
"supports-color": "7.x"
}
}