package.json 765 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "https-proxy-agent",
  3. "version": "1.0.0",
  4. "description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS",
  5. "main": "https-proxy-agent.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/TooTallNate/node-https-proxy-agent.git"
  12. },
  13. "keywords": [
  14. "https",
  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-https-proxy-agent/issues"
  23. },
  24. "dependencies": {
  25. "agent-base": "2",
  26. "debug": "2",
  27. "extend": "3"
  28. },
  29. "devDependencies": {
  30. "mocha": "2",
  31. "proxy": "~0.2.3",
  32. "semver": "~2.2.1"
  33. }
  34. }