forked from avwo/whistle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.12 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "whistle",
"description": "HTTP, HTTP2, HTTPS, Websocket debugging proxy",
"version": "2.6.15",
"dataDirname": ".whistle",
"localUIHost": "local.whistlejs.com",
"port": 8899,
"sockets": 256,
"timeout": 360000,
"author": "avenwu <[email protected]>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/avwo/whistle/issues"
},
"homepage": "https://github.com/avwo/whistle",
"keywords": [
"proxy",
"fiddler",
"charles",
"websocket",
"http2",
"hosts"
],
"bin": {
"whistle": "./bin/whistle.js",
"wisl": "./bin/whistle.js",
"w2": "./bin/whistle.js",
"wproxy": "./bin/whistle.js"
},
"registry": "https://registry.npmjs.org/whistle",
"repository": {
"type": "git",
"url": "https://github.com/avwo/whistle.git"
},
"dependencies": {
"adm-zip": "0.4.11",
"async-limiter": "2.0.0",
"basic-auth": "1.0.0",
"body-parser": "^1.19.0",
"colors": "1.1.2",
"cookie": "^0.3.1",
"express": "^4.17.1",
"extend": "^3.0.1",
"fs-extra2": "^1.0.0",
"hagent": "^0.7.5",
"hparser": "^0.3.2",
"iconv-lite": "0.4.7",
"json5": "^2.1.3",
"lru-cache": "^4.1.1",
"mime": "^1.6.0",
"multer2": "^1.0.1",
"node-forge": "^0.10.0",
"node-native-zip2": "^1.0.0",
"node-pac": "^0.5.0",
"parseurl": "^1.3.1",
"pfork": "^0.5.2",
"pipestream": "^0.7.1",
"q": "1.4.1",
"safe-buffer": "^5.1.2",
"sni": "1.0.0",
"sockx": "^0.2.0",
"starting": "^7.0.1",
"weinre2": "^1.3.0",
"ws-parser": "^0.6.0",
"xml2js": "^0.4.23"
},
"scripts": {
"dev": "webpack --config ./biz/webui/htdocs/src/webpack.config -w",
"start": "node bin/whistle.js run",
"test": "node test/index.test.js",
"lint": "eslint *.js ./lib ./bin ./biz ./test ./docs/script",
"lintfix": "eslint --fix *.js ./lib ./bin ./biz ./test ./docs/script",
"cov": "node_modules/istanbul/lib/cli.js cover node_modules/.bin/tape -- test/index.test.js",
"docs": "gitbook build ./docs/zh ../avwo.github.io/whistle",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs"
},
"engines": {
"node": ">= 6"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-react": "^6.5.0",
"babel-runtime": "^6.26.0",
"base64-js": "^1.3.0",
"bootstrap": "3.3.5",
"clipboard": "^1.7.1",
"codemirror": "5.5.0",
"coveralls": "^2.11.12",
"css-loader": "0.16.0",
"eslint": "^2.8.0",
"eslint-plugin-react": "^4.3.0",
"file-loader": "0.8.4",
"glob": "^7.1.2",
"istanbul": "^0.4.4",
"jquery": "3.3.1",
"js-base64": "^2.4.5",
"lodash.startcase": "^4.4.0",
"prop-types": "^15.5.8",
"qrcode": "^1.2.0",
"react": "^15.6.2",
"react-base16-styling": "^0.5.1",
"react-dom": "^15.6.2",
"react-virtualized": "^9.21.2",
"request": "^2.74.0",
"should": "^10.0.0",
"should-http": "0.0.4",
"style-loader": "0.12.3",
"tape": "^4.6.0",
"url-loader": "0.5.6",
"webpack": "1.11.0",
"whistle.test": "*",
"ws": "^1.1.4"
}
}