package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "_from": "socks@^2.3.3",
  3. "_id": "socks@2.7.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==",
  6. "_location": "/socks",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "socks@^2.3.3",
  12. "name": "socks",
  13. "escapedName": "socks",
  14. "rawSpec": "^2.3.3",
  15. "saveSpec": null,
  16. "fetchSpec": "^2.3.3"
  17. },
  18. "_requiredBy": [
  19. "/socks-proxy-agent"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz",
  22. "_shasum": "d8e651247178fde79c0663043e07240196857d55",
  23. "_spec": "socks@^2.3.3",
  24. "_where": "D:\\2022\\3\\Mazui\\node_modules\\socks-proxy-agent",
  25. "author": {
  26. "name": "Josh Glazebrook"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/JoshGlazebrook/socks/issues"
  30. },
  31. "bundleDependencies": false,
  32. "contributors": [
  33. {
  34. "name": "castorw"
  35. }
  36. ],
  37. "dependencies": {
  38. "ip": "^2.0.0",
  39. "smart-buffer": "^4.2.0"
  40. },
  41. "deprecated": false,
  42. "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.",
  43. "devDependencies": {
  44. "@types/ip": "1.1.0",
  45. "@types/mocha": "^9.1.1",
  46. "@types/node": "^18.0.6",
  47. "@typescript-eslint/eslint-plugin": "^5.30.6",
  48. "@typescript-eslint/parser": "^5.30.6",
  49. "eslint": "^8.20.0",
  50. "mocha": "^10.0.0",
  51. "prettier": "^2.7.1",
  52. "ts-node": "^10.9.1",
  53. "typescript": "^4.7.4"
  54. },
  55. "engines": {
  56. "node": ">= 10.13.0",
  57. "npm": ">= 3.0.0"
  58. },
  59. "homepage": "https://github.com/JoshGlazebrook/socks/",
  60. "keywords": [
  61. "socks",
  62. "proxy",
  63. "tor",
  64. "socks 4",
  65. "socks 5",
  66. "socks4",
  67. "socks5"
  68. ],
  69. "license": "MIT",
  70. "main": "build/index.js",
  71. "name": "socks",
  72. "private": false,
  73. "repository": {
  74. "type": "git",
  75. "url": "git+https://github.com/JoshGlazebrook/socks.git"
  76. },
  77. "scripts": {
  78. "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p .",
  79. "lint": "eslint 'src/**/*.ts'",
  80. "prepublish": "npm install -g typescript && npm run build",
  81. "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml",
  82. "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts"
  83. },
  84. "typings": "typings/index.d.ts",
  85. "version": "2.7.1"
  86. }