package.json 777 B

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