forked from echo-health/node-grpc-interceptors
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 847 Bytes
/
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
{
"bundleDependencies": false,
"dependencies": {
"zipkin": "^0.12.0",
"zipkin-transport-http": "^0.12.0"
},
"deprecated": false,
"description": "This library provides a way to instrument Node.js gRPC clients and servers with interceptors/middleware e.g. for Prometheus metrics, Zipkin tracing etc.",
"devDependencies": {
"depcheck": "^0.6.9",
"protobufjs": "^6.8.6"
},
"license": "ISC",
"main": "index.js",
"name": "@speedymonster/grpc-interceptors",
"peerDependencies": {
"@grpc/grpc-js": "^1.3.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com/speedymonster/node-grpc-interceptors.git"
},
"scripts": {
"depcheck": "depcheck --ignores=eslint-config-plugin:*",
"lint": "eslint . --fix",
"test": "jest"
},
"typings": "./index.d.ts",
"version": "0.2.5"
}