UNPKG

1.09 kBJSONView Raw
1{
2 "name": "mitm",
3 "version": "0.4.0",
4 "description": "Intercept and mock network TCP connections and HTTP requests. Intercepts and gives you vanilla Net.Socket, Http.IncomingMessage and Http.ServerResponse to assert on and respond with. Small, fast and simple. Super useful when testing code that hits remote servers.",
5 "keywords": [
6 "http",
7 "https",
8 "mock",
9 "network",
10 "socket",
11 "test",
12 "webmock"
13 ],
14 "homepage": "https://github.com/moll/node-mitm",
15 "bugs": "https://github.com/moll/node-mitm/issues",
16
17 "author": {
18 "name": "Andri Möll",
19 "email": "andri@dot.ee",
20 "url": "http://themoll.com"
21 },
22
23 "repository": {
24 "type": "git",
25 "url": "git://github.com/moll/node-mitm.git"
26 },
27
28 "licenses": [{
29 "type": "LAGPL",
30 "url": "https://github.com/moll/node-mitm/blob/master/LICENSE"
31 }],
32
33 "main": "index.js",
34 "scripts": {"test": "make test"},
35
36 "dependencies": {
37 "underscore": ">= 1.1.5 < 1.6"
38 },
39
40 "devDependencies": {
41 "mocha": ">= 1.12.0 < 2",
42 "must": "< 1",
43 "co": ">= 3.0.4 < 4",
44 "sinon": ">= 1.9 < 2"
45 },
46
47 "engines": {"node": ">= 0.10.24"}
48}