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
36 lines (36 loc) · 830 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 830 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
{
"name": "nodejs-docs-samples-cloudtasks",
"version": "0.0.0",
"license": "Apache-2.0",
"author": "Google Inc.",
"private": true,
"repository": "GoogleCloudPlatform/nodejs-docs-samples",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"lint": "repo-tools lint",
"pretest": "npm run lint",
"system-test": "ava -T 3m --verbose --fail-fast system-test/*.test.js",
"test": "repo-tools test run --cmd npm -- run system-test"
},
"dependencies": {
"googleapis": "27.0.0",
"yargs": "11.0.0"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "2.2.1",
"ava": "0.25.0"
},
"cloud-repo-tools": {
"requiresKeyFile": true,
"requiresProjectId": true,
"test": {
"build": {
"requiredEnvVars": [
"GCP_QUEUE"
]
}
}
}
}