blob: d98ed0b1fc30c951d3ddba0c465d71affbfeecfe [file] [log] [blame]
murgatroid992dc84422016-04-06 14:39:52 -07001{
2 "name": "grpc-tools",
3 "version": "0.14.0-dev",
4 "author": "Google Inc.",
5 "description": "Tools for developing with gRPC on Node.js",
6 "homepage": "http://www.grpc.io/",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/grpc/grpc.git"
10 },
11 "bugs": "https://github.com/grpc/grpc/issues",
12 "contributors": [
13 {
14 "name": "Michael Lumish",
15 "email": "mlumish@google.com"
16 }
17 ],
18 "bin": {
murgatroid99110e07a2016-04-26 17:20:10 -070019 "grpc-tools-protoc": "./bin/protoc.js",
20 "grpc-tools-plugin": "./bin/protoc_plugin.js"
murgatroid992dc84422016-04-06 14:39:52 -070021 },
22 "scripts": {
23 "install": "./node_modules/.bin/node-pre-gyp install"
24 },
25 "bundledDependencies": ["node-pre-gyp"],
26 "binary": {
27 "module_name": "grpc_tools",
28 "host": "https://storage.googleapis.com/",
29 "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
30 "package_name": "{platform}-{arch}.tar.gz",
31 "module_path": "bin"
32 },
33 "files": [
34 "index.js",
35 "bin/protoc.js",
murgatroid99110e07a2016-04-26 17:20:10 -070036 "bin/protoc_plugin.js",
murgatroid992dc84422016-04-06 14:39:52 -070037 "LICENSE"
38 ],
39 "main": "index.js"
40}