package.json 844 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "superagent-proxy",
  3. "version": "3.0.0",
  4. "description": "`Request#proxy(uri)` superagent extension",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "engines": {
  10. "node": ">=6"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/TooTallNate/superagent-proxy.git"
  15. },
  16. "keywords": [
  17. "superagent",
  18. "http",
  19. "https",
  20. "proxy",
  21. "socks"
  22. ],
  23. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/TooTallNate/superagent-proxy/issues"
  27. },
  28. "dependencies": {
  29. "debug": "^4.3.2",
  30. "proxy-agent": "^5.0.0"
  31. },
  32. "peerDependencies": {
  33. "superagent": ">= 0.15.4 || 1 || 2 || 3"
  34. },
  35. "devDependencies": {
  36. "mocha": "2",
  37. "superagent": ">= 0.15.4 || 1 || 2 || 3"
  38. }
  39. }