-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.23 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.23 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
{
"name": "chain-proxy",
"version": "0.0.2",
"description": "Hard port of http-mitm-proxy to Typescript (+ bugfixes, +features)",
"author": "Jason Swearingen <jasons@novaleaf.com>",
"contributors": [
"Joe Ferner <joe@fernsroth.com>",
"Félicien François <felicien@tweakstyle.com>",
"Simon Pratt <simon@pr4tt.com>"
],
"dependencies": {
"@types/async": "^2.0.40",
"@types/mkdirp": "^0.3.29",
"@types/semaphore": "^1.0.28",
"@types/ws": "0.0.40",
"async": "^2.4.0",
"mkdirp": "^0.5.1",
"node-forge": "^0.7.1",
"proxy-agent": "^2.0.0",
"semaphore": "^1.0.5",
"ws": "^2.3.1",
"xlib": "^9.0.0"
},
"devDependencies": {
"mocha": "^3.0.2"
},
"scripts": {
"test": "mocha ./dist/**/*.js --watch",
"docs": "typedoc "
},
"private": false,
"main": "./src/_index.js",
"types": "./src/_index.ts",
"repository": {
"type": "git",
"url": "git+https://jasonswearingen@github.com/Novaleaf/node-chain-proxy.git"
},
"keywords": [
"proxy",
"upstream",
"chain",
"mitm",
"https"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Novaleaf/node-chain-proxy/issues"
},
"homepage": "https://github.com/Novaleaf/node-chain-proxy#readme"
}