-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "node-mitmproxy",
"version": "3.1.1",
"description": "Node.js MITM Proxy",
"main": "lib",
"bin": "lib/bin/index.js",
"scripts": {
"test": "node ./test/ConfigTestCases.test.js",
"build": "babel -w src -d lib",
"prepublish": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuchangming/node-mitmproxy.git"
},
"keywords": [
"MITM",
"proxy",
"Node"
],
"author": "wuchangming",
"license": "MIT",
"bugs": {
"url": "https://github.com/wuchangming/node-mitmproxy/issues"
},
"homepage": "https://github.com/wuchangming/node-mitmproxy#readme",
"devDependencies": {
"babel-cli": "^6.6.5"
},
"dependencies": {
"agentkeepalive": "^2.1.1",
"babel-core": "^6.8.0",
"babel-plugin-transform-async-to-generator": "^6.7.4",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"charset": "^1.0.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"iconv-lite": "^0.4.13",
"jschardet": "^1.4.1",
"lodash": "^4.7.0",
"mkdirp": "^0.5.1",
"node-forge": "^0.6.39",
"through2": "^2.0.1",
"tunnel-agent": "^0.4.3"
},
"files": [
"lib"
],
"engines": {
"node": ">= 4"
}
}