package.json 1.1 KB

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