forked from joeferner/node-http-mitm-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 993 Bytes
/
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
{
"name": "http-mitm-proxy",
"version": "0.8.2",
"description": "HTTP Man In The Middle (MITM) Proxy",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha"
},
"repository": "https://github.com/joeferner/node-http-mitm-proxy",
"bugs": {
"url": "https://github.com/joeferner/node-http-mitm-proxy/issues"
},
"bin": {
"http-mitm-proxy": "./bin/mitm-proxy.js"
},
"keywords": [
"mitm",
"http",
"https",
"ssl",
"websocket",
"proxy"
],
"author": "Joe Ferner <[email protected]>",
"contributors": [
"Félicien François <[email protected]>",
"Simon Pratt <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"mocha": "^6.1.4",
"node-static": "^0.7.10",
"request": "^2.83.0"
},
"dependencies": {
"async": "^2.6.2",
"debug": "^4.1.0",
"mkdirp": "^0.5.1",
"node-forge": "^0.8.4",
"optimist": "^0.6.1",
"semaphore": "^1.1.0",
"ws": "^3.2.0"
}
}