package.json 1011 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "proxy-agent",
  3. "version": "2.0.0",
  4. "description": "Maps proxy protocols to `http.Agent` implementations",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/TooTallNate/node-proxy-agent.git"
  12. },
  13. "keywords": [
  14. "http",
  15. "https",
  16. "socks",
  17. "agent",
  18. "mapping",
  19. "proxy",
  20. "cache"
  21. ],
  22. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/TooTallNate/node-proxy-agent/issues"
  26. },
  27. "homepage": "https://github.com/TooTallNate/node-proxy-agent",
  28. "dependencies": {
  29. "agent-base": "2",
  30. "debug": "2",
  31. "extend": "3",
  32. "http-proxy-agent": "1",
  33. "https-proxy-agent": "1",
  34. "lru-cache": "~2.6.5",
  35. "pac-proxy-agent": "1",
  36. "socks-proxy-agent": "2"
  37. },
  38. "devDependencies": {
  39. "mocha": "2",
  40. "proxy": "0.2.3",
  41. "socksv5": "0.0.6",
  42. "stream-to-buffer": "0.1.0"
  43. }
  44. }