-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
57 lines (57 loc) · 1.85 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
54
55
56
57
{
"name": "protoc-gen-grpc",
"version": "2.0.4",
"author": "fengjie",
"description": "Protocol Buffers Compiler (protoc) plugin for generating grpc interfaces in TypeScript..",
"homepage": "https://github.com/stultuss/protoc-gen-grpc-ts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stultuss/protoc-gen-grpc-ts.git"
},
"bugs": "https://github.com/stultuss/protoc-gen-grpc-ts/issues",
"keywords": [
"TypeScript",
"Protobuf",
"gRPC"
],
"engines": {
"node": ">=8"
},
"main": "./build/index.js",
"bin": {
"protoc-gen-ts-plugin": "./bin/protoc-gen-ts-plugin",
"protoc-gen": "./bin/protoc-gen.js",
"protoc-gen-grpc": "./bin/protoc-gen-grpc.js",
"protoc-gen-grpc-ts": "./bin/protoc-gen-grpc-ts.js"
},
"scripts": {
"install": "node-pre-gyp install",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test-js-out": "node ./bin/protoc-gen-grpc.js --js_out=import_style=commonjs,binary:./examples/src/proto --grpc_out=grpc_js:./examples/src/proto --proto_path ./examples/proto ./examples/proto/product.proto",
"test-ts-out": "node ./bin/protoc-gen-grpc-ts.js --ts_out=grpc_js:./examples/src/proto --proto_path ./examples/proto ./examples/proto/product.proto"
},
"bundledDependencies": [
"@mapbox/node-pre-gyp"
],
"binary": {
"module_name": "grpc_tools",
"host": "https://node-precompiled-binaries.grpc.io/",
"remote_path": "grpc-tools/v1.11.3",
"package_name": "{platform}-{arch}.tar.gz",
"module_path": "bin"
},
"license": "MIT",
"dependencies": {
"google-protobuf": "^3.17.2",
"@mapbox/node-pre-gyp": "^1.0.5"
},
"devDependencies": {
"@types/node": "^15.12.2",
"coveralls": "^3.1.0",
"jest": "^27.0.4",
"ansi-regex": ">=5.0.1",
"tmpl": ">=1.0.5",
"tar": ">=4.4.18"
}
}