-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 787 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 787 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
{
"name": "service-auth",
"description": "Node.js samples for authenticated service-to-service communication",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"author": "Google LLC",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "node index.js",
"deploy": "gcloud run deploy service-auth --source .",
"unit-test": "c8 mocha -p -j 2 test/ --timeout=10000 --exit",
"test": "npm run unit-test"
},
"dependencies": {
"express": "^4.17.1",
"google-auth-library": "^9.0.0"
},
"devDependencies": {
"axios": "^1.8.4",
"c8": "^10.0.0",
"chai": "^4.5.0",
"mocha": "^10.0.0",
"sinon": "^18.0.0",
"uuid": "^11.1.0"
}
}