forked from GoogleCloudPlatform/microservices-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 700 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 700 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
{
"name": "paymentservice",
"version": "0.0.1",
"description": "Payment Microservice demo",
"repository": "https://github.com/GoogleCloudPlatform/microservices-demo",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "semistandard *.js"
},
"author": "Jonathan Lui",
"license": "ISC",
"dependencies": {
"@google-cloud/debug-agent": "5.1.3",
"@google-cloud/profiler": "4.1.1",
"@google-cloud/trace-agent": "5.1.3",
"@grpc/proto-loader": "0.5.6",
"grpc": "1.24.9",
"pino": "5.17.0",
"simple-card-validator": "^1.1.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"semistandard": "12.0.1"
}
}