-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 825 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 825 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
{
"name": "socks5-https-client",
"description": "SOCKS v5 HTTPS client.",
"version": "1.2.1",
"main": "index.js",
"homepage": "https://github.com/mattcg/socks5-https-client",
"implements": ["CommonJS/Modules/1.0"],
"author": {
"name": "Matthew Caruana Galizia",
"email": "mattcg@gmail.com"
},
"keywords": [
"socks5", "socksv5", "socks", "v5", "https", "ssl", "tls", "tor", "client"
],
"bugs": {
"url": "https://github.com/mattcg/socks5-https-client/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mattcg/socks5-https-client.git"
},
"dependencies": {
"socks5-client": "~1.2.3"
},
"devDependencies": {
"mocha": "~3.1.2",
"node-socks": "~0.1.0",
"request": "~2.72.0"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ">= 6.4.0"
},
"license": "MIT"
}