package.json 803 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "socks",
  3. "version": "1.1.10",
  4. "description": "A SOCKS proxy client supporting SOCKS 4, 4a, and 5. (also supports BIND/Associate)",
  5. "main": "index.js",
  6. "homepage": "https://github.com/JoshGlazebrook/socks",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/JoshGlazebrook/socks.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/JoshGlazebrook/socks/issues"
  13. },
  14. "keywords": [
  15. "socks",
  16. "proxy",
  17. "client",
  18. "tor",
  19. "bind",
  20. "associate",
  21. "socks 4",
  22. "socks 4a",
  23. "socks 5",
  24. "agent"
  25. ],
  26. "engines": {
  27. "node": ">= 0.10.0",
  28. "npm": ">= 1.3.5"
  29. },
  30. "author": "Josh Glazebrook",
  31. "contributors": [
  32. "Samuel Gordalina"
  33. ],
  34. "license": "MIT",
  35. "dependencies": {
  36. "ip": "^1.1.4",
  37. "smart-buffer": "^1.0.13"
  38. }
  39. }