forked from avwo/whistle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.38 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
{
"name": "whistle",
"description": "HTTP, HTTPS, Websocket debugging proxy",
"version": "1.8.0",
"dataDirname": ".whistle",
"localUIHost": "local.whistlejs.com",
"whistleSsl": "whistle-ssl",
"port": 8899,
"ports": [
"uiport",
"weinreport",
"serviceport"
],
"sockets": 60,
"keepAlive": true,
"keepAliveMsecs": 25000,
"responseTimeout": 60000,
"timeout": 66000,
"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"
],
"bin": {
"whistle": "./bin/whistle.js",
"w2": "./bin/whistle.js",
"wproxy": "./bin/whistle.js"
},
"registry": "http://registry.npmjs.org/whistle",
"repository": {
"type": "git",
"url": "https://github.com/avwo/whistle.git"
},
"dependencies": {
"adm-zip": "0.4.7",
"basic-auth": "1.0.0",
"body-parser": "1.12.0",
"colors": "1.1.2",
"cookie": "^0.3.1",
"express": "4.12.3",
"fs-extra": "0.22.1",
"hagent": "^0.1.0",
"hparser": "^0.1.2",
"iconv-lite": "0.4.7",
"lru-cache": "^4.1.1",
"mime": "1.3.4",
"multer": "1.2.1",
"node-forge": "0.6.34",
"node-native-zip": "1.1.0",
"node-pac": "^0.2.2",
"parseurl": "^1.3.1",
"pfork": "^0.1.6",
"pipestream": "^0.1.0",
"q": "1.4.1",
"socksv5": "0.0.6",
"starting": "^3.0.0",
"weinre2": "^1.1.0",
"ws-parser": "^0.1.1",
"xml2js": "0.4.17"
},
"scripts": {
"dev": "node bin/whistle.js run -p 8888",
"start": "node bin/whistle.js start",
"restart": "node bin/whistle.js restart",
"stop": "node bin/whistle.js stop",
"test": "node test/index.test.js",
"lint": "eslint ./lib ./bin ./biz/index.js ./biz/init.js ./biz/webui/cgi-bin ./biz/webui/lib ./biz/weinre",
"lintfix": "eslint --fix ./lib ./bin ./biz/index.js ./biz/init.js ./biz/webui/cgi-bin ./biz/webui/lib ./biz/weinre",
"cov": "node_modules/istanbul/lib/cli.js cover node_modules/.bin/tape -- test/index.test.js"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"coveralls": "^2.11.12",
"eslint": "^2.8.0",
"istanbul": "^0.4.4",
"request": "^2.74.0",
"should": "^10.0.0",
"should-http": "0.0.4",
"tape": "^4.6.0",
"ws": "^1.1.4",
"whistle.test": "*"
}
}