-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.16 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
44
45
46
47
48
{
"name": "cloud-build-notifier",
"version": "1.0.0",
"description": "Sends email about Google Cloud Build status",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"gcp-build": "npm run build",
"build": "tsc -b . --verbose",
"watch": "tsc -b . --verbose --watch"
},
"author": {
"name": "Ivaylo Stoyanov",
"email": "[email protected]",
"url": "https://github.com/ivkos"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivkos/cloud-build-notifier.git"
},
"keywords": [
"google",
"cloud",
"build",
"gcp",
"email",
"notifications",
"sendgrid"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ivkos/cloud-build-notifier/issues"
},
"homepage": "https://github.com/ivkos/cloud-build-notifier#readme",
"dependencies": {
"@sendgrid/mail": "^7.2.0",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@google-cloud/cloudbuild": "^1.5.0",
"@google-cloud/functions-framework": "^1.5.1",
"@google-cloud/pubsub": "^2.1.0",
"@types/express": "^4.17.6",
"@types/node": "^10.17.26",
"typescript": "^3.9.5"
}
}