-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 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
43
{
"name": "free-shadowsocks",
"version": "1.0.5",
"description": "",
"main": "index.js",
"scripts": {
"update-authors": "git log --format='%aN <%aE>' | sort -u > AUTHORS",
"test": "jest --env=node",
"test-cov": "jest --env=node --coverage --runInBand --forceExit",
"lint": "eslint --fix ./*.js"
},
"bin": {
"free-shadowsocks": "bin/free-shadowsocks"
},
"author": "sqlwwx <wwx_2012@live.com>",
"license": "ISC",
"dependencies": {
"cheerio": "^0.22.0",
"cli-table": "^0.3.1",
"commander": "^3.0.0",
"lodash": "^4.17.11",
"superagent": "^5.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sqlwwx/free-shadowsocks.git"
},
"keywords": [
"free",
"shadowsocks",
"workflow",
"cli"
],
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0"
}
}