-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
46 lines (46 loc) · 944 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
46
{
"name": "simple-socks",
"version": "3.1.0",
"description": "proxies requests ",
"type": "module",
"main": "src/socks5.js",
"engine": "node >= 16.0",
"scripts": {
"lint": "gulp lint",
"test": "gulp lint"
},
"author": "https://github.com/brozeph",
"contributors": [
"https://github.com/pronskiy",
"https://github.com/fabiensk",
"https://github.com/lanius-collaris"
],
"license": "MIT",
"keywords": [
"socks",
"socks5",
"socksv5",
"rfc 1928",
"rfc1928",
"rfc 1929",
"rfc1929",
"socks server",
"socks5 server",
"socksv5 server"
],
"repository": {
"type": "git",
"url": "https://github.com/brozeph/simple-socks.git"
},
"bugs": {
"url": "http://github.com/brozeph/simple-socks/issues"
},
"devDependencies": {
"eslint": "^8.21.0",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0"
},
"dependencies": {
"binary": "^0.3.0"
}
}