-
Notifications
You must be signed in to change notification settings - Fork 653
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "grpc-tools",
"version": "1.7.3",
"author": "Google Inc.",
"description": "Tools for developing with gRPC on Node.js",
"homepage": "https://grpc.io/",
"repository": {
"type": "git",
"url": "https://github.com/grpc/grpc-node.git"
},
"bugs": "https://github.com/grpc/grpc-node/issues",
"contributors": [
{
"name": "Michael Lumish",
"email": "[email protected]"
}
],
"bin": {
"grpc_tools_node_protoc": "./bin/protoc.js",
"grpc_tools_node_protoc_plugin": "./bin/protoc_plugin.js"
},
"scripts": {
"install": "node-pre-gyp install",
"prepublishOnly": "git submodule update --init --recursive && node copy_well_known_protos.js"
},
"bundledDependencies": ["node-pre-gyp"],
"dependencies": {
"node-pre-gyp": "^0.12.0"
},
"binary": {
"module_name": "grpc_tools",
"host": "https://node-precompiled-binaries.grpc.io/",
"remote_path": "{name}/v{version}",
"package_name": "{platform}-{arch}.tar.gz",
"module_path": "bin"
},
"files": [
"index.js",
"bin/protoc.js",
"bin/protoc_plugin.js",
"bin/google/protobuf",
"LICENSE"
],
"main": "index.js"
}