We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7de4517 commit 3f1378aCopy full SHA for 3f1378a
run/service-auth/package.json
@@ -0,0 +1,27 @@
1
+{
2
+ "name": "service-auth",
3
+ "description": "Node.js samples for authenticated service-to-service communication",
4
+ "version": "0.0.1",
5
+ "private": true,
6
+ "license": "Apache-2.0",
7
+ "author": "Google LLC",
8
+ "engines": {
9
+ "node": "20.x"
10
+ },
11
+ "scripts": {
12
+ "start": "node index.js",
13
+ "deploy": "gcloud run deploy service-auth --source .",
14
+ "unit-test": "c8 mocha -p -j 2 test/ --timeout=10000 --exit",
15
+ "test": "npm run unit-test"
16
17
+ "dependencies": {
18
+ "express": "^4.17.1",
19
+ "google-auth-library": "^9.0.0"
20
21
+ "devDependencies": {
22
+ "c8": "^10.0.0",
23
+ "chai": "^4.5.0",
24
+ "mocha": "^10.0.0",
25
+ "sinon": "^18.0.0"
26
+ }
27
+}
0 commit comments