package.json 1.2 KB

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