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
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "appengine-cloudtasks",
"description": "Google App Engine Flexible Environment Cloud Tasks example.",
"version": "0.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"private": true,
"repository": "GoogleCloudPlatform/nodejs-docs-samples",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"deploy": "gcloud app deploy",
"lint": "repo-tools lint",
"pretest": "npm run lint",
"unit-test": "ava --verbose test/*.test.js",
"system-test": "repo-tools test app --config package.json --config-key cloud-repo-tools",
"all-test": "npm run unit-test && npm run system-test",
"test": "repo-tools test run --cmd npm -- run all-test",
"e2e-test": "repo-tools test deploy --config package.json --config-key cloud-repo-tools"
},
"dependencies": {
"body-parser": "1.18.2",
"express": "4.16.2",
"googleapis": "22.2.0",
"yargs": "13.3.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "2.1.1",
"proxyquire": "1.8.0",
"sinon": "4.0.2"
},
"cloud-repo-tools": {
"requiresKeyFile": true,
"requiresProjectId": true,
"test": {
"app": {
"msg": "Hello, world!",
"args": [
"server.js"
]
}
}
}
}