forked from youzan/zan-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.13 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "zan-proxy",
"version": "4.0.24",
"description": "前端代理",
"scripts": {
"build": "tsc && cd ./webui && npm run build && cd ../",
"test": "HOME=/tmp/proxy-test nyc mocha -r ts-node/register -c --recursive 'test/**/**/*.spec.ts'",
"watch": "tsc --watch",
"postinstall": "node ./scripts/resetDataFile.js",
"lint": "tslint 'src/**/**/*.ts' --force",
"pretty": "prettier 'src/**/**/*.ts' --write"
},
"dependencies": {
"axios": "^0.16.1",
"commander": "^2.15.1",
"cookie": "^0.3.1",
"es6-promisify": "^6.0.0",
"get-port": "^3.2.0",
"http-proxy": "^1.17.0",
"inflation": "^2.0.0",
"inquirer": "^5.2.0",
"ip": "^0.3.2",
"jsonfile": "^2.4.0",
"koa": "^2.3.0",
"koa-bodyparser": "^2.3.0",
"koa-compose": "^4.0.0",
"koa-mount": "^2.0.0",
"koa-qs": "^2.0.0",
"koa-router": "^7.2.1",
"koa-static": "^3.0.0",
"lodash": "^4.17.5",
"lru-cache": "^4.0.2",
"mime-types": "^2.1.18",
"node-fetch": "^2.1.2",
"node-localstorage": "^1.3.1",
"npm": "^5.7.1",
"open": "0.0.5",
"ora": "^2.0.0",
"parse-domain": "^1.1.0",
"pem": "^1.9.4",
"raw-body": "^2.3.2",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.1",
"selfupdate": "^1.1.0",
"socket.io": "^1.7.3",
"typedi": "^0.7.2",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/lru-cache": "^4.1.0",
"@types/mocha": "^5.0.0",
"@types/node": "<=9.6.13",
"chai": "^4.1.2",
"chai-events": "^0.0.1",
"mocha": "^5.1.0",
"nyc": "^11.6.0",
"prettier": "^1.12.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/youzan/zan-proxy.git"
},
"bin": {
"zan-proxy": "./dist/bin/index.js",
"zanproxy": "./dist/bin/index.js"
},
"author": "",
"nyc": {
"all": true,
"include": [
"src/App/services/**/**/*.ts",
"src/ProxyServer/impl/**/**/*.ts"
],
"extension": [
"ts"
]
},
"keywords": [
"proxy",
"redirect",
"host",
"mock"
],
"license": "MIT"
}