diff options
author | murgatroid99 <mlumish@google.com> | 2016-07-01 09:56:50 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-07-01 09:56:50 -0700 |
commit | 356758a7eec71b3abf4336bd0665476e7756fd2f (patch) | |
tree | 545f5351db12da7f2d3d1f596a294babce657d6a /templates/src/node/health_check/package.json.template | |
parent | 0d12151d29118e6cddd879c8b0a4478524c69eec (diff) |
Split Node health check code into a separate package and make it use static codegen
Diffstat (limited to 'templates/src/node/health_check/package.json.template')
-rw-r--r-- | templates/src/node/health_check/package.json.template | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/templates/src/node/health_check/package.json.template b/templates/src/node/health_check/package.json.template new file mode 100644 index 0000000000..1248ced1e1 --- /dev/null +++ b/templates/src/node/health_check/package.json.template @@ -0,0 +1,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": "^0.15.0", + "lodash": "^3.9.3", + "google-protobuf": "^3.0.0-alpha.5" + }, + "files": { + "LICENSE", + "health.js", + "v1" + }, + "main": "src/node/index.js", + "license": "BSD-3-Clause" + } |