package.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "name": "grpc",
  3. "version": "1.0.0-pre2",
  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 --exclude-path=src/node/.jshintignore",
  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. "google-protobuf": "^3.0.0",
  39. "istanbul": "^0.3.21",
  40. "jsdoc": "^3.3.2",
  41. "jshint": "^2.5.0",
  42. "minimist": "^1.1.0",
  43. "mocha": "^2.3.4",
  44. "mocha-jenkins-reporter": "^0.1.9",
  45. "mustache": "^2.0.0",
  46. "poisson-process": "^0.2.1"
  47. },
  48. "engines": {
  49. "node": ">=0.12.0"
  50. },
  51. "binary": {
  52. "module_name": "grpc_node",
  53. "module_path": "./build/Release/",
  54. "host": "https://storage.googleapis.com/",
  55. "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
  56. "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
  57. "module_path": "src/node/extension_binary"
  58. },
  59. "files": [
  60. "LICENSE",
  61. "src/node/README.md",
  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. "src/boringssl",
  70. "src/zlib",
  71. "third_party/nanopb",
  72. "third_party/zlib",
  73. "third_party/boringssl",
  74. "binding.gyp"
  75. ],
  76. "main": "src/node/index.js",
  77. "license": "BSD-3-Clause",
  78. "jshintConfig" : {
  79. "bitwise": true,
  80. "curly": true,
  81. "eqeqeq": true,
  82. "esnext": true,
  83. "freeze": true,
  84. "immed": true,
  85. "indent": 2,
  86. "latedef": "nofunc",
  87. "maxlen": 80,
  88. "mocha": true,
  89. "newcap": true,
  90. "node": true,
  91. "noarg": true,
  92. "quotmark": "single",
  93. "strict": true,
  94. "trailing": true,
  95. "undef": true,
  96. "unused": "vars"
  97. }
  98. }