package.json 811 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "grpc",
  3. "version": "0.2.0",
  4. "description": "gRPC Library for Node",
  5. "scripts": {
  6. "lint": "nodejs ./node_modules/jshint/bin/jshint src test examples interop index.js",
  7. "test": "nodejs ./node_modules/mocha/bin/mocha && npm run-script lint"
  8. },
  9. "dependencies": {
  10. "bindings": "^1.2.1",
  11. "jshint": "^2.5.5",
  12. "nan": "~1.3.0",
  13. "protobufjs": "murgatroid99/ProtoBuf.js",
  14. "underscore": "^1.7.0",
  15. "underscore.string": "^3.0.0"
  16. },
  17. "devDependencies": {
  18. "async": "^0.9.0",
  19. "googleauth": "google/google-auth-library-nodejs",
  20. "minimist": "^1.1.0",
  21. "mocha": "~1.21.0",
  22. "strftime": "^0.8.2"
  23. },
  24. "files": [
  25. "README.md",
  26. "index.js",
  27. "binding.gyp",
  28. "examples",
  29. "ext",
  30. "interop",
  31. "src",
  32. "test"
  33. ],
  34. "main": "index.js"
  35. }