-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.21 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.21 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
{
"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": ">=16.0.0"
},
"scripts": {
"test:auth": "c8 mocha -p -j 2 system-test/auth.test.js --timeout=30000",
"test:downscoping": "c8 mocha -p -j 2 system-test/downscoping.test.js --timeout=30000",
"test:accessTokenFromImpersonatedCredentials": "c8 mocha -p -j 2 system-test/accessTokenFromImpersonatedCredentials.test.js --timeout=30000",
"test:customcredentials": "c8 mocha -p -j 2 \"system-test/customcredentials/**/*.test.js\" --timeout=30000",
"test": "npm -- run system-test",
"system-test": "c8 mocha -p -j 2 \"system-test/**/*.test.js\" --timeout=30000"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.58.0",
"@aws-sdk/credential-providers": "^3.0.0",
"@google-cloud/storage": "^7.18.0",
"dotenv": "^17.0.0",
"fix": "0.0.6",
"gaxios": "^6.0.0",
"google-auth-library": "^9.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"mocha": "^10.0.0",
"uuid": "^14.0.0"
}
}