-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "check-proxy",
"version": "0.3.5",
"description": "Advanced Node proxy checker with socks and https support",
"main": "build/index.js",
"dependencies": {
"append-query": "^2.0.1",
"geoip-ultralight": "0.1.5",
"lodash": "4.17.11",
"promise-timeout": "^1.3.0",
"proxy-agent": "3.0.3",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"tslib": "2.4.0"
},
"scripts": {
"test": "mocha --timeout 10000 --exit",
"build": "rm -rf ./build && ./node_modules/.bin/tsc && cp ./lib/interfaces.d.ts ./build/lib/interfaces.d.ts",
"format": "prettier --config .prettierrc './{example,lib,test}/**/*.{ts,js}' --write"
},
"keywords": [
"check proxy",
"test proxy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/256cats/check-proxy.git"
},
"author": "Andrey E. <andrey@256cats.com> (256cats.com)",
"engines": {
"node": ">=6.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/256cats/check-proxy/blob/master/LICENSE"
}
],
"devDependencies": {
"@types/node": "^16",
"@types/request": "2.48.8",
"@types/request-promise-native": "1.0.18",
"anyproxy": "4.0.12",
"body-parser": "1.18.3",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"cookie-parser": "1.4.3",
"express": "^4.16.4",
"http-proxy": "1.17.0",
"httpolyglot": "0.1.2",
"mocha": "5.2.0",
"pem": "1.13.2",
"prettier": "2.7.1",
"socks4": "0.1.1",
"socksv5": "0.0.6",
"typescript": "4.7.4"
}
}