aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src/node/tools/package.json.template
blob: 74f68e4b81c613078e573275b497b5f7105e34b6 (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
42
43
%YAML 1.2
--- |
  {
    "name": "grpc-tools",
    "version": "${settings.node_version}",
    "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.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"
  }