-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
43 lines (43 loc) · 1.24 KB
/
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
34
35
36
37
38
39
40
41
42
43
{
"name": "bitbucket-slack-pr-hook",
"version": "1.0.0",
"description": "Send BitBucket Pull Request notifications to Slack.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/lfilho/bitbucket-slack-pr-hook"
},
"scripts": {
"start": "node server",
"build-container": "docker build -t bitbucket-slack-pr-hook .",
"start-container": "docker run --name bb-slack-hook --restart always -p 5000:5000 -d bitbucket-slack-pr-hook npm start",
"stop-container": "docker stop bb-slack-hook",
"restart-container": "docker restart bb-slack-hook",
"test": "node_modules/buster/bin/buster-test"
},
"keywords": [
"bitbucket",
"slack",
"pull request",
"pr",
"docker",
"chatops"
],
"author": "Luiz Gonzaga dos Santos Filho",
"license": "MIT",
"bugs": {
"url": "https://github.com/lfilho/bitbucket-slack-pr-hook/issues"
},
"homepage": "https://github.com/lfilho/bitbucket-slack-pr-hook",
"dependencies": {
"array.prototype.find": "^1.0.0",
"body-parser": "^1.4.3",
"dotenv": "^0.4.0",
"express": "^4.4.4",
"logfmt": "^1.1.2",
"node-slack": "git+https://github.com/xoxco/node-slack.git"
},
"devDependencies": {
"buster": "^0.7.14"
}
}