package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "grpc",
  3. "version": "0.14.0-dev",
  4. "author": "Google Inc.",
  5. "description": "gRPC Library for Node",
  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. "directories": {
  19. "lib": "src/node/src"
  20. },
  21. "scripts": {
  22. "lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js",
  23. "test": "./node_modules/.bin/mocha src/node/test && npm run-script lint",
  24. "gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json",
  25. "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test",
  26. "install": "./node_modules/.bin/node-pre-gyp install --fallback-to-build"
  27. },
  28. "bundledDependencies": ["node-pre-gyp"],
  29. "dependencies": {
  30. "arguejs": "^0.2.3",
  31. "lodash": "^3.9.3",
  32. "nan": "^2.0.0",
  33. "protobufjs": "^4.0.0"
  34. },
  35. "devDependencies": {
  36. "async": "^1.5.0",
  37. "google-auth-library": "^0.9.2",
  38. "istanbul": "^0.3.21",
  39. "jsdoc": "^3.3.2",
  40. "jshint": "^2.5.0",
  41. "minimist": "^1.1.0",
  42. "mocha": "^2.3.4",
  43. "mocha-jenkins-reporter": "^0.1.9",
  44. "mustache": "^2.0.0",
  45. "poisson-process": "^0.2.1"
  46. },
  47. "engines": {
  48. "node": ">=0.12.0"
  49. },
  50. "binary": {
  51. "module_name": "grpc_node",
  52. "module_path": "./build/Release/",
  53. "host": "https://storage.googleapis.com/",
  54. "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
  55. "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
  56. "module_path": "src/node/extension_binary"
  57. },
  58. "files": [
  59. "LICENSE",
  60. "src/node/README.md",
  61. "src/node/health_check",
  62. "src/proto",
  63. "etc",
  64. "src/node/index.js",
  65. "src/node/src",
  66. "src/node/ext",
  67. "include/grpc",
  68. "src/core",
  69. "third_party/nanopb",
  70. "third_party/zlib",
  71. "third_party/boringssl",
  72. "binding.gyp"
  73. ],
  74. "main": "src/node/index.js",
  75. "license": "BSD-3-Clause"
  76. }