UNPKG

1.36 kBJSONView Raw
1{
2 "name" : "http-proxy",
3 "version" : "1.10.0",
4
5 "repository" : {
6 "type" : "git",
7 "url" : "https://github.com/nodejitsu/node-http-proxy.git"
8 },
9
10 "description" : "HTTP proxying for the masses",
11 "author": "Nodejitsu Inc. <info@nodejitsu.com>",
12 "maintainers" : [
13 "yawnt <yawnt@nodejitsu.com>",
14 "indexzero <charlie@nodejitsu.com>"
15 ],
16
17 "main" : "index.js",
18
19 "dependencies" : {
20 "eventemitter3" : "0.x.x",
21 "requires-port" : "0.x.x"
22 },
23 "devDependencies": {
24 "mocha" : "*",
25 "expect.js" : "*",
26 "dox" : "*",
27 "coveralls" : "*",
28 "mocha-lcov-reporter": "*",
29 "blanket" : "*",
30 "ws" : "~0.5.0",
31 "socket.io" : "*",
32 "socket.io-client" : "*",
33 "async" : "*"
34 },
35 "scripts" : {
36 "coveralls" : "mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js",
37 "blanket" : { "pattern": "lib/http-proxy" },
38 "test" : "mocha -R landing test/*-test.js",
39 "test-cov" : "mocha --require blanket -R html-cov > cov/coverage.html"
40 },
41
42 "engines" : {
43 "node" : ">=0.10.0"
44 },
45
46 "license" : "MIT"
47}