package.json 1.3 KB

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