package.json 817 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "socks-proxy-agent",
  3. "version": "2.1.1",
  4. "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
  5. "main": "socks-proxy-agent.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/TooTallNate/node-socks-proxy-agent.git"
  12. },
  13. "keywords": [
  14. "socks",
  15. "socks4",
  16. "socks4a",
  17. "proxy",
  18. "http",
  19. "https",
  20. "agent"
  21. ],
  22. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/TooTallNate/node-socks-proxy-agent/issues"
  26. },
  27. "dependencies": {
  28. "agent-base": "2",
  29. "extend": "3",
  30. "socks": "~1.1.5"
  31. },
  32. "devDependencies": {
  33. "mocha": "2",
  34. "raw-body": "^2.2.0",
  35. "socksv5": "0.0.6"
  36. }
  37. }