Welcome to mirror list, hosted at ThFree Co, Russian Federation.

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