forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 679 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 679 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": "appengine-redis",
"description": "An example of using Redis with Node.js on Google App Engine.",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": ">=8"
},
"scripts": {
"start": "node server.js",
"test": "repo-tools test app -- server.js"
},
"cloud-repo-tools": {
"test": {
"app": {
"requiredEnvVars": [
"redisHost",
"redisPort",
"redisKey"
],
"msg": "IPs:\n::1;",
"args": [
"server.js"
]
}
}
},
"dependencies": {
"nconf": "0.10.0",
"redis": "2.8.0"
}
}