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