package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "socks-proxy-agent",
  3. "version": "5.0.1",
  4. "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
  5. "main": "dist/index",
  6. "typings": "dist/index",
  7. "files": [
  8. "dist"
  9. ],
  10. "scripts": {
  11. "prebuild": "rimraf dist",
  12. "build": "tsc",
  13. "test": "mocha --reporter spec",
  14. "test-lint": "eslint src --ext .js,.ts",
  15. "prepublishOnly": "npm run build"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/TooTallNate/node-socks-proxy-agent.git"
  20. },
  21. "keywords": [
  22. "socks",
  23. "socks4",
  24. "socks4a",
  25. "socks5",
  26. "socks5h",
  27. "proxy",
  28. "http",
  29. "https",
  30. "agent"
  31. ],
  32. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/TooTallNate/node-socks-proxy-agent/issues"
  36. },
  37. "dependencies": {
  38. "agent-base": "^6.0.2",
  39. "debug": "4",
  40. "socks": "^2.3.3"
  41. },
  42. "devDependencies": {
  43. "@types/debug": "4",
  44. "@types/node": "^12.12.11",
  45. "@typescript-eslint/eslint-plugin": "1.6.0",
  46. "@typescript-eslint/parser": "1.1.0",
  47. "eslint": "5.16.0",
  48. "eslint-config-airbnb": "17.1.0",
  49. "eslint-config-prettier": "4.1.0",
  50. "eslint-import-resolver-typescript": "1.1.1",
  51. "eslint-plugin-import": "2.16.0",
  52. "eslint-plugin-jsx-a11y": "6.2.1",
  53. "eslint-plugin-react": "7.12.4",
  54. "mocha": "^6.2.2",
  55. "proxy": "1",
  56. "raw-body": "^2.3.2",
  57. "rimraf": "^3.0.0",
  58. "socksv5": "TooTallNate/socksv5#fix/dstSock-close-event",
  59. "typescript": "^3.5.3"
  60. },
  61. "engines": {
  62. "node": ">= 6"
  63. }
  64. }