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 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "_from": "socks@~2.3.2",
  3. "_id": "socks@2.3.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-o5t52PCNtVdiOvzMry7wU4aOqYWL0PeCXRWBEiJow4/i/wr+wpsJQ9awEu1EonLIqsfGd5qSgDdxEOvCdmBEpA==",
  6. "_location": "/socks",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "socks@~2.3.2",
  12. "name": "socks",
  13. "escapedName": "socks",
  14. "rawSpec": "~2.3.2",
  15. "saveSpec": null,
  16. "fetchSpec": "~2.3.2"
  17. },
  18. "_requiredBy": [
  19. "/socks-proxy-agent"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/socks/-/socks-2.3.3.tgz",
  22. "_shasum": "01129f0a5d534d2b897712ed8aceab7ee65d78e3",
  23. "_spec": "socks@~2.3.2",
  24. "_where": "C:\\Users\\andre\\Documents\\Ohm\\MSY\\8.Semester\\MDT1_2\\projekt\\code2\\code\\application_liste\\app\\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": "1.1.5",
  39. "smart-buffer": "^4.1.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/chai": "4.2.4",
  45. "@types/ip": "1.1.0",
  46. "@types/mocha": "5.2.7",
  47. "@types/node": "12.12.6",
  48. "chai": "^4.1.2",
  49. "coveralls": "^3.0.0",
  50. "mocha": "6.2.2",
  51. "nyc": "14.1.1",
  52. "prettier": "^1.9.2",
  53. "socks5-server": "^0.1.1",
  54. "ts-node": "8.4.1",
  55. "tslint": "^5.8.0",
  56. "typescript": "3.7.2"
  57. },
  58. "engines": {
  59. "node": ">= 6.0.0",
  60. "npm": ">= 3.0.0"
  61. },
  62. "homepage": "https://github.com/JoshGlazebrook/socks/",
  63. "keywords": [
  64. "socks",
  65. "proxy",
  66. "tor",
  67. "socks 4",
  68. "socks 5",
  69. "socks4",
  70. "socks5"
  71. ],
  72. "license": "MIT",
  73. "main": "build/index.js",
  74. "name": "socks",
  75. "nyc": {
  76. "extension": [
  77. ".ts",
  78. ".tsx"
  79. ],
  80. "include": [
  81. "src/*.ts",
  82. "src/**/*.ts"
  83. ],
  84. "exclude": [
  85. "**.*.d.ts",
  86. "node_modules",
  87. "typings"
  88. ],
  89. "require": [
  90. "ts-node/register"
  91. ],
  92. "reporter": [
  93. "json",
  94. "html"
  95. ],
  96. "all": true
  97. },
  98. "private": false,
  99. "repository": {
  100. "type": "git",
  101. "url": "git+https://github.com/JoshGlazebrook/socks.git"
  102. },
  103. "scripts": {
  104. "build": "tslint --project tsconfig.json && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p .",
  105. "coverage": "NODE_ENV=test nyc npm test",
  106. "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls",
  107. "lint": "tslint --project tsconfig.json 'src/**/*.ts'",
  108. "prepublish": "npm install -g typescript && npm run build",
  109. "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts"
  110. },
  111. "typings": "typings",
  112. "version": "2.3.3"
  113. }