package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "pac-proxy-agent",
  3. "version": "1.1.0",
  4. "description": "A PAC file proxy `http.Agent` implementation for HTTP",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/TooTallNate/node-pac-proxy-agent.git"
  12. },
  13. "keywords": [
  14. "pac",
  15. "proxy",
  16. "agent",
  17. "http",
  18. "https",
  19. "socks",
  20. "request",
  21. "access"
  22. ],
  23. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/TooTallNate/node-pac-proxy-agent/issues"
  27. },
  28. "homepage": "https://github.com/TooTallNate/node-pac-proxy-agent",
  29. "dependencies": {
  30. "agent-base": "2",
  31. "debug": "2",
  32. "extend": "3",
  33. "get-uri": "2",
  34. "http-proxy-agent": "1",
  35. "https-proxy-agent": "1",
  36. "pac-resolver": "~2.0.0",
  37. "socks-proxy-agent": "2",
  38. "raw-body": "2"
  39. },
  40. "devDependencies": {
  41. "mocha": "^3.4.2",
  42. "proxy": "0.2.3",
  43. "socksv5": "0.0.6"
  44. }
  45. }