-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "encryptsocks",
"version": "1.4.4",
"description": "Encrypt your socks transmission.",
"keywords": [
"SOCKS5",
"firewall",
"http_proxy"
],
"main": "./lib/index.js",
"bin": {
"serverssjs": "./bin/serverssjs",
"localssjs": "./bin/localssjs"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib && eslint src",
"dev": "babel src --watch --out-dir lib --source-maps inline",
"lint": "eslint src",
"test": "mocha",
"test-coverage": "istanbul cover _mocha",
"travis-ci-test": "mocha --fgrep '[local only]' --invert --require babel-polyfill",
"travis-ci-test-coverage": "istanbul cover _mocha -- --fgrep '[local only]' --invert --require babel-polyfill",
"benchmark": "node benchmark/run"
},
"author": "oyyd <[email protected]>",
"license": "BSD",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"socks": "^1.1.9",
"socks5-http-client": "^1.0.2",
"socks5-https-client": "^1.1.2"
},
"dependencies": {
"babel-polyfill": "^6.16.0",
"ip": "^1.1.3",
"lru-cache": "^4.0.1",
"minimist": "^1.2.0",
"pm2": "^2.5.0",
"uglify-js": "^3.0.18",
"winston": "^2.2.0"
}
}