forked from http-party/node-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (41 loc) · 1.33 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" : "http-proxy",
"version" : "1.8.1",
"repository" : {
"type" : "git",
"url" : "https://github.com/nodejitsu/node-http-proxy.git"
},
"description" : "HTTP proxying for the masses",
"author": "Nodejitsu Inc. <[email protected]>",
"maintainers" : [
"yawnt <[email protected]>",
"indexzero <[email protected]>"
],
"main" : "index.js",
"dependencies" : {
"eventemitter3" : "0.x.x",
"requires-port" : "0.x.x"
},
"devDependencies": {
"mocha" : "*",
"expect.js" : "*",
"dox" : "*",
"coveralls" : "*",
"mocha-lcov-reporter": "*",
"blanket" : "*",
"ws" : "~0.5.0",
"socket.io" : "*",
"socket.io-client" : "*",
"async" : "*"
},
"scripts" : {
"coveralls" : "mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js",
"blanket" : { "pattern": "lib/http-proxy" },
"test" : "mocha -R landing test/*-test.js",
"test-cov" : "mocha --require blanket -R html-cov > cov/coverage.html"
},
"engines" : {
"node" : ">=0.10.0"
},
"license" : "MIT"
}