You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. {
  2. "name": "socks-proxy-agent",
  3. "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
  4. "homepage": "https://github.com/TooTallNate/node-socks-proxy-agent#readme",
  5. "version": "7.0.0",
  6. "main": "dist/index.js",
  7. "author": {
  8. "email": "nathan@tootallnate.net",
  9. "name": "Nathan Rajlich",
  10. "url": "http://n8.io/"
  11. },
  12. "contributors": [
  13. {
  14. "name": "Kiko Beats",
  15. "email": "josefrancisco.verdu@gmail.com"
  16. },
  17. {
  18. "name": "Josh Glazebrook",
  19. "email": "josh@joshglazebrook.com"
  20. },
  21. {
  22. "name": "talmobi",
  23. "email": "talmobi@users.noreply.github.com"
  24. },
  25. {
  26. "name": "Indospace.io",
  27. "email": "justin@indospace.io"
  28. },
  29. {
  30. "name": "Kilian von Pflugk",
  31. "email": "github@jumoog.io"
  32. },
  33. {
  34. "name": "Kyle",
  35. "email": "admin@hk1229.cn"
  36. },
  37. {
  38. "name": "Matheus Fernandes",
  39. "email": "matheus.frndes@gmail.com"
  40. },
  41. {
  42. "name": "Ricky Miller",
  43. "email": "richardkazuomiller@gmail.com"
  44. },
  45. {
  46. "name": "Shantanu Sharma",
  47. "email": "shantanu34@outlook.com"
  48. },
  49. {
  50. "name": "Tim Perry",
  51. "email": "pimterry@gmail.com"
  52. },
  53. {
  54. "name": "Vadim Baryshev",
  55. "email": "vadimbaryshev@gmail.com"
  56. },
  57. {
  58. "name": "jigu",
  59. "email": "luo1257857309@gmail.com"
  60. },
  61. {
  62. "name": "Alba Mendez",
  63. "email": "me@jmendeth.com"
  64. },
  65. {
  66. "name": "Дмитрий Гуденков",
  67. "email": "Dimangud@rambler.ru"
  68. },
  69. {
  70. "name": "Andrei Bitca",
  71. "email": "63638922+andrei-bitca-dc@users.noreply.github.com"
  72. },
  73. {
  74. "name": "Andrew Casey",
  75. "email": "amcasey@users.noreply.github.com"
  76. },
  77. {
  78. "name": "Brandon Ros",
  79. "email": "brandonros1@gmail.com"
  80. },
  81. {
  82. "name": "Dang Duy Thanh",
  83. "email": "thanhdd.it@gmail.com"
  84. },
  85. {
  86. "name": "Dimitar Nestorov",
  87. "email": "8790386+dimitarnestorov@users.noreply.github.com"
  88. }
  89. ],
  90. "repository": {
  91. "type": "git",
  92. "url": "git://github.com/TooTallNate/node-socks-proxy-agent.git"
  93. },
  94. "bugs": {
  95. "url": "https://github.com/TooTallNate/node-socks-proxy-agent/issues"
  96. },
  97. "keywords": [
  98. "agent",
  99. "http",
  100. "https",
  101. "proxy",
  102. "socks",
  103. "socks4",
  104. "socks4a",
  105. "socks5",
  106. "socks5h"
  107. ],
  108. "dependencies": {
  109. "agent-base": "^6.0.2",
  110. "debug": "^4.3.3",
  111. "socks": "^2.6.2"
  112. },
  113. "devDependencies": {
  114. "@commitlint/cli": "latest",
  115. "@commitlint/config-conventional": "latest",
  116. "@types/debug": "latest",
  117. "@types/node": "latest",
  118. "cacheable-lookup": "latest",
  119. "conventional-github-releaser": "latest",
  120. "dns2": "latest",
  121. "finepack": "latest",
  122. "git-authors-cli": "latest",
  123. "mocha": "9",
  124. "nano-staged": "latest",
  125. "npm-check-updates": "latest",
  126. "prettier-standard": "latest",
  127. "raw-body": "latest",
  128. "rimraf": "latest",
  129. "simple-git-hooks": "latest",
  130. "socksv5": "github:TooTallNate/socksv5#fix/dstSock-close-event",
  131. "standard": "latest",
  132. "standard-markdown": "latest",
  133. "standard-version": "latest",
  134. "ts-standard": "latest",
  135. "typescript": "latest"
  136. },
  137. "engines": {
  138. "node": ">= 10"
  139. },
  140. "files": [
  141. "dist"
  142. ],
  143. "scripts": {
  144. "build": "tsc",
  145. "clean": "rimraf node_modules",
  146. "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
  147. "lint": "ts-standard",
  148. "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
  149. "prebuild": "rimraf dist",
  150. "prepublishOnly": "npm run build",
  151. "prerelease": "npm run update:check && npm run contributors",
  152. "release": "standard-version -a",
  153. "release:github": "conventional-github-releaser -p angular",
  154. "release:tags": "git push --follow-tags origin HEAD:master",
  155. "test": "mocha --reporter spec",
  156. "update": "ncu -u",
  157. "update:check": "ncu -- --error-level 2"
  158. },
  159. "license": "MIT",
  160. "commitlint": {
  161. "extends": [
  162. "@commitlint/config-conventional"
  163. ]
  164. },
  165. "nano-staged": {
  166. "*.js": [
  167. "prettier-standard"
  168. ],
  169. "*.md": [
  170. "standard-markdown"
  171. ],
  172. "package.json": [
  173. "finepack"
  174. ]
  175. },
  176. "simple-git-hooks": {
  177. "commit-msg": "npx commitlint --edit",
  178. "pre-commit": "npx nano-staged"
  179. },
  180. "typings": "dist/index.d.ts"
  181. }