-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "proxy-verifier",
"version": "0.5.0",
"description": "Check that proxies are working, verify their anonymity level, lookup their geographic location by IP address, check for other capabilities such as tunneling and available protocols.",
"keywords": [
"proxy",
"proxies",
"verify",
"check",
"anonymity"
],
"main": "index.js",
"scripts": {
"test": "npm run test:unit",
"test:unit": "./node_modules/.bin/mocha test/unit/ --recursive --reporter spec --ui bdd --exit"
},
"repository": {
"type": "git",
"url": "git://github.com/chill117/proxy-verifier"
},
"author": {
"name": "Charles Hill",
"email": "chill@degreesofzero.com"
},
"license": "MIT",
"funding": {
"type": "individual",
"url": "https://degreesofzero.com/donate.html?project=proxy-verifier"
},
"readmeFilename": "readme.md",
"bugs": {
"url": "https://github.com/chill117/proxy-verifier/issues"
},
"dependencies": {
"async": "3.2.1",
"depd": "2.0.0",
"geoip-lite": "1.4.2",
"proxy-agent": "5.0.0",
"request": "2.88.2",
"underscore": "1.13.1"
},
"devDependencies": {
"chai": "4.3.4",
"express": "4.17.1",
"http-proxy": "1.18.1",
"mocha": "9.1.1"
}
}