package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "grpc",
  3. "version": "0.11.1",
  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",
  20. "example": "examples"
  21. },
  22. "scripts": {
  23. "lint": "node ./node_modules/jshint/bin/jshint src test examples interop index.js",
  24. "test": "./node_modules/.bin/mocha && npm run-script lint",
  25. "gen_docs": "./node_modules/.bin/jsdoc -c jsdoc_conf.json",
  26. "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha"
  27. },
  28. "dependencies": {
  29. "bindings": "^1.2.0",
  30. "lodash": "^3.9.3",
  31. "nan": "^2.0.0",
  32. "protobufjs": "^4.0.0"
  33. },
  34. "devDependencies": {
  35. "async": "^0.9.0",
  36. "google-auth-library": "^0.9.2",
  37. "istanbul": "^0.3.21",
  38. "jsdoc": "^3.3.2",
  39. "jshint": "^2.5.0",
  40. "minimist": "^1.1.0",
  41. "mocha": "~1.21.0",
  42. "mustache": "^2.0.0",
  43. "strftime": "^0.8.2"
  44. },
  45. "engines": {
  46. "node": ">=0.10.13"
  47. },
  48. "files": [
  49. "LICENSE",
  50. "README.md",
  51. "index.js",
  52. "binding.gyp",
  53. "bin",
  54. "cli",
  55. "examples",
  56. "ext",
  57. "health_check",
  58. "interop",
  59. "src",
  60. "test"
  61. ],
  62. "main": "index.js",
  63. "license": "BSD-3-Clause"
  64. }