aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/src/node/health_check/package.json.template
blob: c2bb232245d7facafa94def2621b4fdbc9a7ae4f (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
%YAML 1.2
--- |
  {
    "name": "grpc-health-check",
    "version": "${settings.node_version}",
    "author": "Google Inc.",
    "description": "Health check service for use with gRPC",
    "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"
      }
    ],
    "dependencies": {
      "grpc": "^${settings.node_version}",
      "lodash": "^3.9.3",
      "google-protobuf": "^3.0.0"
    },
    "files": [
      "LICENSE",
      "health.js",
      "v1"
    ],
    "main": "src/node/index.js",
    "license": "BSD-3-Clause"
  }