UNPKG

1.1 kBJSONView Raw
1{
2 "name": "mitm",
3 "version": "0.5.1",
4 "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.",
5 "keywords": [
6 "http",
7 "https",
8 "intercept",
9 "interception",
10 "mock",
11 "network",
12 "socket",
13 "test",
14 "webmock"
15 ],
16 "homepage": "https://github.com/moll/node-mitm",
17 "bugs": "https://github.com/moll/node-mitm/issues",
18
19 "author": {
20 "name": "Andri Möll",
21 "email": "andri@dot.ee",
22 "url": "http://themoll.com"
23 },
24
25 "repository": {
26 "type": "git",
27 "url": "git://github.com/moll/node-mitm.git"
28 },
29
30 "licenses": [{
31 "type": "LAGPL",
32 "url": "https://github.com/moll/node-mitm/blob/master/LICENSE"
33 }],
34
35 "main": "index.js",
36 "scripts": {"test": "make test"},
37
38 "dependencies": {
39 "underscore": ">= 1.1.5 < 1.6"
40 },
41
42 "devDependencies": {
43 "mocha": ">= 1.12.0 < 2",
44 "must": "< 1",
45 "co": ">= 3.0.4 < 4",
46 "sinon": ">= 1.9 < 2"
47 },
48
49 "engines": {"node": ">= 0.10.24"}
50}