forked from bonald/node-https-proxy-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.16 KB
/
package.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@sam01101/node-proxy-agent",
"version": "5.1.8",
"description": "An HTTP(s) and SOCKS proxy `http.Agent` implementation for HTTPS and SOCKS",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "mocha --reporter spec --timeout 2000 --exit",
"test-lint": "eslint src --ext .js,.ts",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/01101sam/node-proxy-agent.git"
},
"keywords": [
"socks",
"socks4",
"socks5",
"http",
"https",
"proxy",
"endpoint",
"agent"
],
"authors": [
"Nathan Rajlich <[email protected]> (http://n8.io/)",
"Sam <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/01101sam/node-proxy-agent.git/issues"
},
"dependencies": {
"agent-base": "6.0.2",
"debug": "4",
"node-fetch": "^3.2.10",
"socks": "^2.7.0"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@types/debug": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"cacheable-lookup": "latest",
"conventional-github-releaser": "^1.1.7",
"dns2": "latest",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"finepack": "^2.1.12",
"git-authors-cli": "latest",
"mocha": "9",
"nano-staged": "latest",
"npm-check-updates": "latest",
"prettier-standard": "^15.0.1",
"proxy": "^1.0.2",
"raw-body": "latest",
"rimraf": "latest",
"simple-git-hooks": "latest",
"socksv5": "github:TooTallNate/socksv5#fix/dstSock-close-event",
"standard": "latest",
"standard-markdown": "latest",
"standard-version": "latest",
"ts-standard": "latest",
"typescript": "latest"
},
"engines": {
"node": ">= 6"
}
}