forked from mattcg/socks5-http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 878 Bytes
/
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
{
"name": "sm-socks5-http-client",
"description": "SOCKS v5 HTTP client.",
"version": "1.0.4",
"main": "index.js",
"homepage": "https://github.com/mattcg/socks5-http-client",
"implements": [
"CommonJS/Modules/1.0"
],
"author": {
"name": "Matthew Caruana Galizia",
"email": "[email protected]"
},
"keywords": [
"socks5",
"socksv5",
"socks",
"v5",
"http",
"tor",
"client"
],
"bugs": {
"url": "https://github.com/mattcg/socks5-http-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mattcg/socks5-http-client.git"
},
"dependencies": {
"socks5-client": "~1.2.6"
},
"devDependencies": {
"mocha": "~3.1.2",
"node-socks": "~0.1.0"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter dot --check-leaks --ui tdd"
},
"engines": {
"node": ">= 6.4.0"
},
"engineStrict": true,
"license": "MIT"
}