-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
47 lines (41 loc) · 1.05 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
{
"name": "mitm",
"version": "1.7.3",
"description": "Intercept and mock outgoing network TCP connections and HTTP requests for testing. Intercepts and gives you a Net.Socket, Http.IncomingMessage and Http.ServerResponse to test and respond with. Useful when testing code that hits remote servers.",
"keywords": [
"http",
"https",
"intercept",
"interception",
"mock",
"network",
"socket",
"tcp",
"test",
"webmock"
],
"homepage": "https://github.com/moll/node-mitm",
"bugs": "https://github.com/moll/node-mitm/issues",
"author": {
"name": "Andri Möll",
"email": "[email protected]",
"url": "http://themoll.com"
},
"repository": {
"type": "git",
"url": "git://github.com/moll/node-mitm.git"
},
"license": "AGPL-3.0-or-later WITH GPL-3.0-linking-exception",
"main": "index.js",
"scripts": {"test": "make test"},
"dependencies": {
"semver": ">= 5 < 6"
},
"devDependencies": {
"mocha": ">= 1.12.0 < 3",
"must": ">= 0.13 < 0.14",
"sinon": ">= 1.9 < 2",
"underscore": ">= 1.1.6 < 1.14"
},
"engines": {"node": ">= 0.10.24"}
}