forked from brozeph/simple-socks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "simple-socks",
"version": "2.0.1",
"description": "proxies requests ",
"main": "dist/socks5.js",
"scripts": {
"build": "gulp build",
"lint": "gulp lint",
"prepare": "gulp build",
"prepublish": "check-node-version --npm \">=4\" || npm run prepare",
"pretest": "gulp clean",
"test": "gulp lint",
"posttest": "gulp build"
},
"author": "https://github.com/brozeph",
"contributors": [
"https://github.com/pronskiy",
"https://github.com/fabiensk"
],
"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"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@babel/runtime": "^7.8.7",
"binary": "^0.3.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"babel-eslint": "^10.1.0",
"eslint-plugin-babel": "^5.3.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-sourcemaps": "^2.6.5"
}
}