package.json 1.3 KB

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