-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 820 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 820 Bytes
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
{
"name": "shadowsocks-lite",
"version": "1.0.10",
"description": "A socks5 proxy helper",
"main": "src/local.js",
"bin": {
"ssllocal": "bin/ssllocal",
"sslserver": "bin/sslserver"
},
"scripts": {
"test": "node test",
"prettier": "prettier --write '{,!(node_modules)/**/}*.js'"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/derekchuank/shadowsocks-lite.git"
},
"keywords": [
"shadowsocks",
"socks5",
"proxy"
],
"author": "derekchuank",
"license": "MIT",
"bugs": {
"url": "https://github.com/derekchuank/shadowsocks-lite/issues"
},
"homepage": "https://github.com/derekchuank/shadowsocks-lite#readme",
"dependencies": {},
"devDependencies": {
"require-dir-lite": "^1.0.0"
}
}