forked from GoogleCloudPlatform/grpc-gcp-node
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.46 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "grpc-gcp",
"version": "1.0.1",
"description": "Extension for supporting Google Cloud Platform specific features for gRPC.",
"main": "build/src/index.js",
"scripts": {
"build": "tsc && cp -r src/generated build/src/",
"system-test": "c8 mocha test/integration/*.js --reporter spec --timeout 10000 --grpclib grpc && c8 mocha test/integration/*.js --reporter spec --timeout 10000 --grpclib @grpc/grpc-js",
"test": "c8 mocha test/unit/*.js --reporter spec",
"lint": "gts check src/**/*.ts",
"fix": "gts fix",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleCloudPlatform/grpc-gcp-node.git"
},
"keywords": [
"google",
"grpc",
"cloud",
"gcp"
],
"author": "Google Inc.",
"license": "Apache-2.0",
"types": "build/src/index.d.ts",
"bugs": {
"url": "https://github.com/GoogleCloudPlatform/grpc-gcp-node/issues"
},
"homepage": "https://github.com/GoogleCloudPlatform/grpc-gcp-node#readme",
"engines": {
"node": ">=12"
},
"dependencies": {
"@grpc/grpc-js": "^1.7.0"
},
"devDependencies": {
"@grpc/proto-loader": "^0.7.0",
"@google-cloud/spanner": "^6.0.0",
"c8": "^7.7.2",
"google-auth-library": "^8.0.0",
"google-gax": "^3.0.0",
"google-protobuf": "^3.17.1",
"grpc": "^1.24.10",
"grpc-tools": "^1.11.1",
"gts": "^3.1.0",
"mocha": "^9.2.2",
"typescript": "^4.3.2"
},
"files": [
"build/src"
]
}