package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "grpc-tools",
  3. "version": "1.4.0-dev",
  4. "author": "Google Inc.",
  5. "description": "Tools for developing with gRPC on Node.js",
  6. "homepage": "http://www.grpc.io/",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/grpc/grpc.git"
  10. },
  11. "bugs": "https://github.com/grpc/grpc/issues",
  12. "contributors": [
  13. {
  14. "name": "Michael Lumish",
  15. "email": "mlumish@google.com"
  16. }
  17. ],
  18. "bin": {
  19. "grpc_tools_node_protoc": "./bin/protoc.js",
  20. "grpc_tools_node_protoc_plugin": "./bin/protoc_plugin.js"
  21. },
  22. "scripts": {
  23. "install": "./node_modules/.bin/node-pre-gyp install"
  24. },
  25. "bundledDependencies": ["node-pre-gyp"],
  26. "binary": {
  27. "module_name": "grpc_tools",
  28. "host": "https://storage.googleapis.com/",
  29. "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
  30. "package_name": "{platform}-{arch}.tar.gz",
  31. "module_path": "bin"
  32. },
  33. "files": [
  34. "index.js",
  35. "bin/protoc.js",
  36. "bin/protoc_plugin.js",
  37. "bin/google/protobuf",
  38. "LICENSE"
  39. ],
  40. "main": "index.js"
  41. }