mirror of
https://github.com/grpc/grpc-node.git
synced 2025-12-08 18:23:54 +00:00
node-pre-gyp 0.12.0 uses needle 2.4.1 which has the bug in it. Even with grpc 1.24.3, which refers to the updated version, it seems npm can decide to use the older version referenced by this package.
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "grpc-tools",
|
|
"version": "1.9.0",
|
|
"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": "mlumish@google.com"
|
|
}
|
|
],
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"node-pre-gyp": "^0.15.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"
|
|
}
|