forked from joeferner/node-http-mitm-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.44 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "http-mitm-proxy",
"version": "1.0.0",
"description": "HTTP Man In The Middle (MITM) Proxy",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "cross-env TS_NODE_TRANSPILE_ONLY=true TS_NODE_PRETTY=true ts-mocha test/01_proxy.ts --exit",
"build": "rimraf dist && tsc",
"prepare": "npm run build"
},
"repository": "https://github.com/joeferner/node-http-mitm-proxy",
"bugs": {
"url": "https://github.com/joeferner/node-http-mitm-proxy/issues"
},
"bin": {
"http-mitm-proxy": "./dist/bin/mitm-proxy.js"
},
"keywords": [
"mitm",
"http",
"https",
"ssl",
"websocket",
"proxy"
],
"author": "Joe Ferner <joe@fernsroth.com>",
"contributors": [
"Félicien François <felicien@tweakstyle.com>",
"Simon Pratt <simon@pr4tt.com>",
"JonLuca DeCaro <jonluca.decaro@gmail.com>"
],
"license": "MIT",
"engines": {
"node": ">=8.0 <=16"
},
"devDependencies": {
"@types/mocha": "10.0.x",
"@types/node": "18.11.x",
"cross-env": "7.0.x",
"mocha": "10.2.x",
"node-static": "0.7.x",
"prettier": "2.8.x",
"request": "^2.88.2",
"rimraf": "3.0.x",
"ts-mocha": "10.0.x",
"ts-node": "10.9.x",
"typescript": "4.9.x"
},
"dependencies": {
"async": "3.2.x",
"debug": "4.3.x",
"mkdirp": "1.0.x",
"node-forge": "1.3.x",
"semaphore": "1.1.x",
"uuid": "9.0.x",
"ws": "8.11.x",
"yargs": "17.6.x"
}
}