package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "name": "socks",
  3. "private": false,
  4. "version": "2.3.3",
  5. "description": "Fully featured SOCKS proxy client supporting SOCKSv4, SOCKSv4a, and SOCKSv5. Includes Bind and Associate functionality.",
  6. "main": "build/index.js",
  7. "typings": "typings",
  8. "homepage": "https://github.com/JoshGlazebrook/socks/",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/JoshGlazebrook/socks.git"
  12. },
  13. "bugs": {
  14. "url": "https://github.com/JoshGlazebrook/socks/issues"
  15. },
  16. "keywords": [
  17. "socks",
  18. "proxy",
  19. "tor",
  20. "socks 4",
  21. "socks 5",
  22. "socks4",
  23. "socks5"
  24. ],
  25. "engines": {
  26. "node": ">= 6.0.0",
  27. "npm": ">= 3.0.0"
  28. },
  29. "author": "Josh Glazebrook",
  30. "contributors": [
  31. "castorw"
  32. ],
  33. "license": "MIT",
  34. "readmeFilename": "README.md",
  35. "devDependencies": {
  36. "@types/chai": "4.2.4",
  37. "@types/ip": "1.1.0",
  38. "@types/mocha": "5.2.7",
  39. "@types/node": "12.12.6",
  40. "chai": "^4.1.2",
  41. "coveralls": "^3.0.0",
  42. "mocha": "6.2.2",
  43. "nyc": "14.1.1",
  44. "prettier": "^1.9.2",
  45. "socks5-server": "^0.1.1",
  46. "ts-node": "8.4.1",
  47. "tslint": "^5.8.0",
  48. "typescript": "3.7.2"
  49. },
  50. "dependencies": {
  51. "ip": "1.1.5",
  52. "smart-buffer": "^4.1.0"
  53. },
  54. "scripts": {
  55. "prepublish": "npm install -g typescript && npm run build",
  56. "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts",
  57. "coverage": "NODE_ENV=test nyc npm test",
  58. "coveralls": "NODE_ENV=test nyc npm test && nyc report --reporter=text-lcov | coveralls",
  59. "lint": "tslint --project tsconfig.json 'src/**/*.ts'",
  60. "build": "tslint --project tsconfig.json && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p ."
  61. },
  62. "nyc": {
  63. "extension": [
  64. ".ts",
  65. ".tsx"
  66. ],
  67. "include": [
  68. "src/*.ts",
  69. "src/**/*.ts"
  70. ],
  71. "exclude": [
  72. "**.*.d.ts",
  73. "node_modules",
  74. "typings"
  75. ],
  76. "require": [
  77. "ts-node/register"
  78. ],
  79. "reporter": [
  80. "json",
  81. "html"
  82. ],
  83. "all": true
  84. },
  85. "__npminstall_done": "Thu Dec 24 2020 20:20:48 GMT+0800 (CST)",
  86. "_from": "socks@2.3.3",
  87. "_resolved": "https://registry.npm.taobao.org/socks/download/socks-2.3.3.tgz?cache=0&sync_timestamp=1607055890542&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsocks%2Fdownload%2Fsocks-2.3.3.tgz"
  88. }