forked from oyyd/encryptsocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "shadowsocks-js",
"version": "1.1.1",
"description": "Yet another shadowsocks implementation for nodejs to help you bypass firewalls.",
"keywords": [
"shadowsocks",
"ss",
"SOCKS5",
"firewall",
"http_proxy"
],
"bin": {
"serverssjs": "./bin/serverssjs",
"localssjs": "./bin/localssjs"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib && eslint src",
"watch": "babel src --watch --out-dir lib",
"lint": "eslint src",
"test": "mocha",
"test-coverage": "istanbul cover _mocha",
"travis-ci-test": "mocha --fgrep '[local only]' --invert",
"travis-ci-test-coverage": "istanbul cover _mocha -- --fgrep '[local only]' --invert",
"benchmark": "node benchmark/run"
},
"author": "oyyd ([email protected])",
"license": "BSD",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.3.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"socks5-http-client": "^1.0.2",
"socks5-https-client": "^1.1.2"
},
"dependencies": {
"async": "^2.0.0-rc.5",
"ip": "^1.1.3",
"lru-cache": "^4.0.1",
"minimist": "^1.2.0",
"socks": "^1.1.9",
"uglify-js": "^2.6.2",
"winston": "^2.2.0"
}
}