package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "http-proxy-middleware",
  3. "version": "0.17.4",
  4. "description": "The one-liner node.js proxy middleware for connect, express and browser-sync",
  5. "main": "index.js",
  6. "files": [
  7. "index.js",
  8. "lib"
  9. ],
  10. "scripts": {
  11. "clean": "rm -rf coverage",
  12. "test": "mocha --recursive --colors --reporter spec",
  13. "cover": "npm run clean && istanbul cover ./node_modules/mocha/bin/_mocha -- --recursive",
  14. "coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive --reporter spec && istanbul-coveralls && npm run clean"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/chimurai/http-proxy-middleware.git"
  19. },
  20. "keywords": [
  21. "reverse",
  22. "proxy",
  23. "middleware",
  24. "http",
  25. "https",
  26. "connect",
  27. "express",
  28. "browser-sync",
  29. "gulp",
  30. "grunt-contrib-connect",
  31. "websocket",
  32. "ws",
  33. "cors"
  34. ],
  35. "author": "Steven Chim",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/chimurai/http-proxy-middleware/issues"
  39. },
  40. "homepage": "https://github.com/chimurai/http-proxy-middleware",
  41. "devDependencies": {
  42. "browser-sync": "^2.18.2",
  43. "chai": "^3.5.0",
  44. "connect": "^3.5.0",
  45. "coveralls": "^2.11.15",
  46. "express": "^4.14.0",
  47. "istanbul": "^0.4.5",
  48. "istanbul-coveralls": "^1.0.3",
  49. "mocha": "^3.2.0",
  50. "mocha-lcov-reporter": "1.2.0",
  51. "opn": "^4.0.2",
  52. "ws": "^1.1.1"
  53. },
  54. "dependencies": {
  55. "http-proxy": "^1.16.2",
  56. "is-glob": "^3.1.0",
  57. "lodash": "^4.17.2",
  58. "micromatch": "^2.3.11"
  59. }
  60. }