-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 KB
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
{
"name": "nodejs-rss-notifier",
"description": "CCP Release note notifier",
"version": "0.0.1",
"private": true,
"license": "MIT License",
"author": "Kyohei Tsuda",
"repository": {
"type": "git",
"url": "https://github.com/flatfisher/nodejs-rss-notifier"
},
"engines": {
"node": ">=8"
},
"scripts": {
"deploy": "gcloud app deploy",
"start": "node app.js",
"lint": "repo-tools lint",
"pretest": "npm run lint",
"system-test": "repo-tools test app",
"test": "npm run system-test",
"e2e-test": "repo-tools test deploy"
},
"dependencies": {
"@google-cloud/datastore": "^2.0.0",
"@google-cloud/tasks": "^0.2.2",
"@google-cloud/translate": "^2.1.4",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"request": "^2.88.0",
"rss-parser": "^3.7.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.0",
"semistandard": "^12.0.1"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "Hello, world!"
}
},
"requiresKeyFile": true,
"requiresProjectId": true
}
}