aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/tools/package.json
blob: 7c256d7ba0d60e9831f45b8b22d830172a125b4d (plain)
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
{
  "name": "grpc-tools",
  "version": "0.16.0-dev",
  "author": "Google Inc.",
  "description": "Tools for developing with gRPC on Node.js",
  "homepage": "http://www.grpc.io/",
  "repository": {
    "type": "git",
    "url": "https://github.com/grpc/grpc.git"
  },
  "bugs": "https://github.com/grpc/grpc/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_modules/.bin/node-pre-gyp install"
  },
  "bundledDependencies": ["node-pre-gyp"],
  "binary": {
    "module_name": "grpc_tools",
    "host": "https://storage.googleapis.com/",
    "remote_path": "grpc-precompiled-binaries/node/{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"
}