package.json 735 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "http-proxy-agent",
  3. "version": "1.0.0",
  4. "description": "An HTTP(s) proxy `http.Agent` implementation for HTTP",
  5. "main": "http-proxy-agent.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/TooTallNate/node-http-proxy-agent.git"
  12. },
  13. "keywords": [
  14. "http",
  15. "proxy",
  16. "endpoint",
  17. "agent"
  18. ],
  19. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/TooTallNate/node-http-proxy-agent/issues"
  23. },
  24. "dependencies": {
  25. "agent-base": "2",
  26. "extend": "3",
  27. "debug": "2"
  28. },
  29. "devDependencies": {
  30. "mocha": "2",
  31. "proxy": "~0.2.3"
  32. }
  33. }