1 | {
|
---|
2 | "name": "socks-proxy-agent",
|
---|
3 | "version": "6.1.0",
|
---|
4 | "description": "A SOCKS proxy `http.Agent` implementation for HTTP and HTTPS",
|
---|
5 | "main": "dist/index",
|
---|
6 | "typings": "dist/index",
|
---|
7 | "files": [
|
---|
8 | "dist"
|
---|
9 | ],
|
---|
10 | "scripts": {
|
---|
11 | "prebuild": "rimraf dist",
|
---|
12 | "build": "tsc",
|
---|
13 | "test": "mocha --reporter spec",
|
---|
14 | "test-lint": "eslint src --ext .js,.ts",
|
---|
15 | "prepublishOnly": "npm run build"
|
---|
16 | },
|
---|
17 | "repository": {
|
---|
18 | "type": "git",
|
---|
19 | "url": "git://github.com/TooTallNate/node-socks-proxy-agent.git"
|
---|
20 | },
|
---|
21 | "keywords": [
|
---|
22 | "socks",
|
---|
23 | "socks4",
|
---|
24 | "socks4a",
|
---|
25 | "socks5",
|
---|
26 | "socks5h",
|
---|
27 | "proxy",
|
---|
28 | "http",
|
---|
29 | "https",
|
---|
30 | "agent"
|
---|
31 | ],
|
---|
32 | "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
|
---|
33 | "license": "MIT",
|
---|
34 | "bugs": {
|
---|
35 | "url": "https://github.com/TooTallNate/node-socks-proxy-agent/issues"
|
---|
36 | },
|
---|
37 | "dependencies": {
|
---|
38 | "agent-base": "^6.0.2",
|
---|
39 | "debug": "^4.3.1",
|
---|
40 | "socks": "^2.6.1"
|
---|
41 | },
|
---|
42 | "devDependencies": {
|
---|
43 | "@types/debug": "latest",
|
---|
44 | "@types/node": "latest",
|
---|
45 | "@typescript-eslint/eslint-plugin": "latest",
|
---|
46 | "@typescript-eslint/parser": "latest",
|
---|
47 | "eslint": "latest",
|
---|
48 | "eslint-config-airbnb": "latest",
|
---|
49 | "eslint-config-prettier": "latest",
|
---|
50 | "eslint-import-resolver-typescript": "latest",
|
---|
51 | "eslint-plugin-import": "latest",
|
---|
52 | "eslint-plugin-jsx-a11y": "latest",
|
---|
53 | "eslint-plugin-react": "latest",
|
---|
54 | "mocha": "latest",
|
---|
55 | "proxy": "latest",
|
---|
56 | "raw-body": "latest",
|
---|
57 | "rimraf": "latest",
|
---|
58 | "socksv5": "TooTallNate/socksv5#fix/dstSock-close-event",
|
---|
59 | "typescript": "latest"
|
---|
60 | },
|
---|
61 | "engines": {
|
---|
62 | "node": ">= 10"
|
---|
63 | }
|
---|
64 | }
|
---|