• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "name": "socks",
3  "private": false,
4  "version": "2.7.1",
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/index.d.ts",
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": ">= 10.13.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/ip": "1.1.0",
37    "@types/mocha": "^9.1.1",
38    "@types/node": "^18.0.6",
39    "@typescript-eslint/eslint-plugin": "^5.30.6",
40    "@typescript-eslint/parser": "^5.30.6",
41    "eslint": "^8.20.0",
42    "mocha": "^10.0.0",
43    "prettier": "^2.7.1",
44    "ts-node": "^10.9.1",
45    "typescript": "^4.7.4"
46  },
47  "dependencies": {
48    "ip": "^2.0.0",
49    "smart-buffer": "^4.2.0"
50  },
51  "scripts": {
52    "prepublish": "npm install -g typescript && npm run build",
53    "test": "NODE_ENV=test mocha --recursive --require ts-node/register test/**/*.ts",
54    "prettier": "prettier --write ./src/**/*.ts --config .prettierrc.yaml",
55    "lint": "eslint 'src/**/*.ts'",
56    "build": "rm -rf build typings && prettier --write ./src/**/*.ts --config .prettierrc.yaml && tsc -p ."
57  }
58}
59