Skip to content

Commit 3f1378a

Browse files
chore(service-auth): initialize package.json sith project metadata and dependencies
1 parent 7de4517 commit 3f1378a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

run/service-auth/package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)