forked from 256cats/check-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 973 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 973 Bytes
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
{
"name": "proxy-tester",
"version": "0.3.2",
"description": "Node http/socks proxy tester with server and client",
"main": "build/index.js",
"dependencies": {
"bluebird": ">=3.1.1",
"geoip-ultralight": "0.1.5",
"lodash": "4.17.4",
"tslib": "1.7.1",
"node-libcurl": "1.3.3"
},
"scripts": {
"test": "mocha --timeout 5000",
"build": "rm -rf ./build && ./node_modules/.bin/tsc && cp ./lib/interfaces.d.ts ./build/lib/interfaces.d.ts"
},
"keywords": [
"check proxy",
"test proxy",
"proxy tester",
"proxy validator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattxgreen/proxy-tester"
},
"author": "Andrey E. <andrey@256cats.com> (256cats.com)",
"engines": {
"node": ">=6.0.0"
},
"license": "(MIT OR Apache-2.0)",
"devDependencies": {
"@types/node": "8.0.19",
"sinon": "^1.17.3",
"mocha": "*",
"proxyquire": ">=1.7.4",
"typescript": "2.4.2"
}
}