forked from deeplay-io/nice-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 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
{
"name": "nice-grpc-opentelemetry",
"version": "0.1.13",
"description": "OpenTelemetry instrumentation for nice-grpc",
"keywords": [
"grpc",
"nice-grpc",
"opentelemetry",
"tracing"
],
"repository": "deeplay-io/nice-grpc",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src",
"!src/**/*.test.ts",
"!src/**/__tests__"
],
"scripts": {
"clean": "rimraf lib",
"test": "jest",
"build": "tsc -P tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build && npm test",
"build:proto": "grpc_tools_node_protoc --ts_proto_out=./fixtures --ts_proto_opt=outputServices=generic-definitions,useExactTypes=false,outputTypeRegistry=true -I fixtures fixtures/*.proto",
"prepare": "npm run build:proto",
"version": "node scripts/version.js && git add src/version.ts"
},
"author": "Daniel Lytkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@opentelemetry/sdk-node": "^0.41.1",
"@tsconfig/recommended": "^1.0.1",
"@types/defer-promise": "^1.0.0",
"defer-promise": "^2.0.1",
"grpc-tools": "^1.10.0",
"nice-grpc": "^2.1.7",
"protobufjs": "^7.1.2",
"ts-proto": "^1.112.0"
},
"dependencies": {
"@opentelemetry/api": "^1.3.0",
"@opentelemetry/semantic-conventions": "^1.5.0",
"abort-controller-x": "^0.4.0",
"ipaddr.js": "^2.0.1",
"nice-grpc-common": "^2.0.2"
}
}