diff options
Diffstat (limited to 'templates/src/node')
-rw-r--r-- | templates/src/node/health_check/package.json.template | 31 | ||||
-rw-r--r-- | templates/src/node/tools/package.json.template | 43 |
2 files changed, 0 insertions, 74 deletions
diff --git a/templates/src/node/health_check/package.json.template b/templates/src/node/health_check/package.json.template deleted file mode 100644 index 2bc6b13632..0000000000 --- a/templates/src/node/health_check/package.json.template +++ /dev/null @@ -1,31 +0,0 @@ -%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": "Apache-2.0" - } diff --git a/templates/src/node/tools/package.json.template b/templates/src/node/tools/package.json.template deleted file mode 100644 index 74f68e4b81..0000000000 --- a/templates/src/node/tools/package.json.template +++ /dev/null @@ -1,43 +0,0 @@ -%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" - } |