diff options
author | murgatroid99 <mlumish@google.com> | 2016-07-01 10:02:32 -0700 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2016-07-01 10:02:32 -0700 |
commit | c9579be13f56f889caaf8e910a374a9ba428da93 (patch) | |
tree | 4e40cba85e0af29da2c994317d7d43cbeb010f68 /src/node | |
parent | 356758a7eec71b3abf4336bd0665476e7756fd2f (diff) |
Add Node health check package.json
Diffstat (limited to 'src/node')
-rw-r--r-- | src/node/health_check/package.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/node/health_check/package.json b/src/node/health_check/package.json new file mode 100644 index 0000000000..ad65b31917 --- /dev/null +++ b/src/node/health_check/package.json @@ -0,0 +1,29 @@ +{ + "name": "grpc-health-check", + "version": "0.16.0-dev", + "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" +} |