-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "lightsocks-nodejs",
"version": "1.0.3",
"description": "It's a simaple socks5 proxy tool which based on lightsocks",
"preferGlobal": true,
"bin": {
"lsserver": "./bin/lsserver.js",
"lslocal": "./bin/lslocal.js"
},
"scripts": {
"server:debug": "export NODE_ENV=debug && node ./bin/lsserver.js",
"local:debug": "export NODE_ENV=debug && node ./bin/lslocal.js",
"server": "node ./bin/lsserver.js",
"local": "node ./bin/lslocal.js",
"coverage": "jest --coverage",
"test": "npm run lint && jest",
"lint": "./node_modules/.bin/eslint ./lib --fix"
},
"engines": {
"node": ">=8.0.0"
},
"keywords": [
"socks",
"socks5",
"proxy"
],
"repository": "https://github.com/chrisyer/lightsocks-nodejs",
"license": "MIT",
"dependencies": {
"commander": "^2.20.3",
"log4js": "^6.1.1",
"pkginfo": "^0.4.1",
"through2": "^2.0.5",
"url-parse-lax": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^4.19.1",
"eslint-config-alloy": "^1.4.1",
"jest": "^25.1.0"
}
}