-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 875 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 875 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
32
33
34
{
"name": "gitlab-ci-slack",
"version": "0.1.0",
"description": "Intermediate server for Gitlab CI to send notification to Slack",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/claudetech/gitlab-ci-slack"
},
"keywords": [
"slack",
"gitlab-ci"
],
"author": "Daniel Perez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/claudetech/gitlab-ci-slack/issues"
},
"homepage": "https://github.com/claudetech/gitlab-ci-slack",
"dependencies": {
"body-parser": "^1.9.0",
"express": "^4.9.8",
"request": "^2.45.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-coffee": "^0.12.0",
"grunt-contrib-watch": "^0.6.1"
}
}