-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
31 lines (31 loc) · 982 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
{
"name": "google-cloud-build-slack",
"version": "0.1.0",
"description": "Slack integration for Google Cloud Build, using Google Cloud Functions",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/nyc node_modules/.bin/mocha --reporter spec",
"ci": "node_modules/.bin/nyc node_modules/.bin/mocha --reporter spec && node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov",
"setup": "./setup.sh",
"teardown": "./teardown.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Philmod/google-cloud-build-slack.git"
},
"dependencies": {
"@octokit/rest": "^16.27.3",
"@slack/client": "5.0.1",
"humanize-duration": "3.18.0"
},
"devDependencies": {
"async": "^3.0.1",
"mocha": "6.1.4",
"nyc": "^14.1.1",
"should": "13.2.3",
"sinon": "^7.3.2",
"serverless-google-cloudfunctions": "^2.3.2"
},
"author": "Philmod <[email protected]>",
"license": "Apache-2.0"
}