forked from deeplay-io/nice-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.31 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
{
"name": "nice-grpc-error-details",
"version": "0.2.4",
"description": "gRPC rich error model implementation for nice-grpc",
"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:proto": "mkdirp ./src/proto && grpc_tools_node_protoc --ts_proto_out=./src/proto --ts_proto_opt=outputJsonMethods=false,useExactTypes=false,outputTypeRegistry=true -I ./proto proto/google/rpc/error_details.proto proto/google/rpc/status.proto",
"prepare": "npm run prepare:proto && npm run build:proto"
},
"author": "Daniel Lytkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"grpc-tools": "^1.10.0",
"nice-grpc": "^2.1.7",
"ts-proto": "^1.112.0"
},
"dependencies": {
"long": "^5.2.3",
"nice-grpc-common": "^2.0.2",
"protobufjs": "^7.1.2"
}
}