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
41 lines (41 loc) · 962 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 962 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
35
36
37
38
39
40
41
{
"name": "appengine-storage",
"description": "Node.js Google Cloud Storage sample for Google App Engine",
"scripts": {
"start": "node app.js",
"test": "mocha system-test/*.test.js --exit --timeout=30000"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@google-cloud/storage": "^4.0.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"multer": "^1.4.1",
"pug": "^2.0.3"
},
"devDependencies": {
"mocha": "^7.0.0",
"supertest": "^4.0.2",
"proxyquire": "^2.1.3"
},
"cloud-repo-tools": {
"requiresProjectId": true,
"requiresKeyFile": true,
"test": {
"app": {
"requiredEnvVars": [
"GCLOUD_STORAGE_BUCKET"
],
"msg": "<input type=\"file\" name=\"file\">",
"substitutions": "YOUR_BUCKET_NAME=$GCLOUD_STORAGE_BUCKET"
},
"build": {
"requiredEnvVars": [
"GCLOUD_STORAGE_BUCKET"
]
}
}
}
}