forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 765 Bytes
/
package.json
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
{
"name": "nodejs-docs-samples-auth",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "Google Inc.",
"repository": {
"type": "git",
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test:auth": "mocha system-test/auth.test.js --timeout=30000",
"test:downscoping": "mocha system-test/downscoping.test.js --timeout=30000",
"test": "npm -- run system-test",
"system-test": "mocha system-test/*.test.js --timeout=30000"
},
"dependencies": {
"@google-cloud/storage": "^6.0.0",
"google-auth-library": "^7.9.1",
"yargs": "^17.0.0"
},
"devDependencies": {
"uuid": "^9.0.0",
"mocha": "^10.0.0"
}
}