forked from chimurai/http-proxy-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.4 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.4 KB
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
48
49
50
51
52
53
54
55
{
"name": "http-proxy-middleware",
"version": "0.14.0",
"description": "The one-liner node.js proxy middleware for connect, express and browser-sync",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"cover": "rm -rf coverage && istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && istanbul-coveralls && rm -rf coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/chimurai/http-proxy-middleware.git"
},
"keywords": [
"reverse",
"proxy",
"middleware",
"http",
"https",
"connect",
"express",
"browser-sync",
"gulp",
"grunt-contrib-connect",
"websocket",
"ws",
"cors"
],
"author": "Steven Chim",
"license": "MIT",
"bugs": {
"url": "https://github.com/chimurai/http-proxy-middleware/issues"
},
"homepage": "https://github.com/chimurai/http-proxy-middleware",
"devDependencies": {
"browser-sync": "^2.11.0",
"chai": "^3.4.1",
"connect": "^3.4.0",
"coveralls": "^2.11.6",
"express": "^4.13.3",
"istanbul": "^0.4.1",
"istanbul-coveralls": "^1.0.3",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "1.2.0",
"open": "0.0.5",
"ws": "^1.0.1"
},
"dependencies": {
"http-proxy": "^1.12.0",
"is-glob": "^2.0.1",
"lodash": "^4.6.1",
"micromatch": "^2.3.7"
}
}