forked from chimurai/http-proxy-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
48
49
50
{
"name": "http-proxy-middleware",
"version": "0.8.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": [
"proxy",
"middleware",
"http",
"https",
"connect",
"express",
"browser-sync",
"gulp",
"websocket"
],
"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.8.2",
"chai": "^3.2.0",
"connect": "^3.4.0",
"coveralls": "^2.11.4",
"express": "^4.13.3",
"istanbul": "^0.3.19",
"istanbul-coveralls": "^1.0.3",
"mocha": "^2.3.0",
"mocha-lcov-reporter": "0.0.2",
"ws": "^0.8.0"
},
"dependencies": {
"http-proxy": "^1.11.2",
"is-glob": "^2.0.0",
"lodash": "^3.10.1",
"micromatch": "^2.2.0"
}
}