package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "thrift",
  3. "description": "node.js bindings for the Apache Thrift RPC system",
  4. "homepage": "http://thrift.apache.org/",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://git-wip-us.apache.org/repos/asf/thrift.git"
  8. },
  9. "version": "0.10.0",
  10. "author": {
  11. "name": "Apache Thrift Developers",
  12. "email": "dev@thrift.apache.org",
  13. "url": "http://thrift.apache.org"
  14. },
  15. "license": "Apache-2.0",
  16. "licenses": [
  17. {
  18. "type": "Apache-2.0",
  19. "url": "http://www.apache.org/licenses/LICENSE-2.0"
  20. }
  21. ],
  22. "bugs": {
  23. "mail": "dev@thrift.apache.org",
  24. "url": "https://issues.apache.org/jira/browse/THRIFT"
  25. },
  26. "files": [
  27. "lib/nodejs/lib/thrift",
  28. "lib/nodejs/README.md"
  29. ],
  30. "directories": {
  31. "lib": "./lib/nodejs/lib/thrift"
  32. },
  33. "main": "./lib/nodejs/lib/thrift",
  34. "engines": {
  35. "node": ">= 0.2.4"
  36. },
  37. "dependencies": {
  38. "node-int64": "~0.3.0",
  39. "q": "1.0.x",
  40. "ws": "~0.4.32"
  41. },
  42. "devDependencies": {
  43. "buffer-equals": "^1.0.3",
  44. "commander": "2.1.x",
  45. "connect": "2.7.x",
  46. "istanbul": "^0.3.5",
  47. "run-browser": "^2.0.1",
  48. "tape": "~3.5.0"
  49. },
  50. "scripts": {
  51. "cover": "lib/nodejs/test/testAll.sh COVER",
  52. "test": "lib/nodejs/test/testAll.sh"
  53. }
  54. }