-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "https-mitm-proxy-handbook",
"version": "1.0.0",
"description": "how to write a mitm proxy base on Node.js",
"main": "index.js",
"scripts": {
"httpProxy": "node code/chapter1/httpProxy.js",
"httpMitmProxy": "node code/chapter1/httpMitmProxy.js",
"httpTunnelHttps": "node code/chapter2/httpTunnelHttps.js",
"createRootCA": "node code/chapter3/createRootCA.js",
"installCAForMac": "sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain rootCA/rootCA.crt",
"createCertByRootCA": "node code/chapter3/createCertByRootCA.js",
"simpleHttpsProxy": "node code/chapter4/simpleHttpsProxy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuchangming/https-mitm-proxy-handbook.git"
},
"keywords": [
"mtim",
"node",
"handbook",
"https"
],
"author": "wuchangming",
"license": "MIT",
"bugs": {
"url": "https://github.com/wuchangming/https-mitm-proxy-handbook/issues"
},
"engines": {
"node": ">= 4"
},
"homepage": "https://github.com/wuchangming/https-mitm-proxy-handbook#readme",
"dependencies": {
"mkdirp": "^0.5.1",
"node-forge": "^0.6.43",
"through2": "^2.0.1"
}
}