You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.8 KiB

11 years ago
11 years ago
8 years ago
9 years ago
11 years ago
9 years ago
8 years ago
8 years ago
11 years ago
11 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
11 years ago
  1. {
  2. "name": "local-web-server",
  3. "version": "1.2.6",
  4. "description": "A simple web-server for productive front-end development",
  5. "bin": {
  6. "ws": "./bin/cli.js"
  7. },
  8. "main": "lib/local-web-server.js",
  9. "license": "MIT",
  10. "keywords": [
  11. "dev",
  12. "server",
  13. "web",
  14. "tool",
  15. "front-end",
  16. "development",
  17. "cors",
  18. "mime",
  19. "rest",
  20. "mock",
  21. "api",
  22. "proxy"
  23. ],
  24. "engines": {
  25. "node": ">=4.0.0"
  26. },
  27. "scripts": {
  28. "test": "tape test/*/*.js",
  29. "docs": "jsdoc2md -t jsdoc2md/api.hbs -p list lib/*.js > doc/api.md; echo",
  30. "cover": "istanbul cover ./node_modules/.bin/tape test/*.js && cat coverage/lcov.info | coveralls && rm -rf coverage; echo"
  31. },
  32. "repository": "https://github.com/75lb/local-web-server",
  33. "author": "Lloyd Brookes <75pound@gmail.com>",
  34. "dependencies": {
  35. "ansi-escape-sequences": "^2.2.2",
  36. "array-back": "^1.0.3",
  37. "command-line-tool": "~0.3.0",
  38. "config-master": "^2.0.2",
  39. "http-proxy": "^1.13.3",
  40. "kcors": "^1.2.1",
  41. "koa": "^2.0.0",
  42. "koa-bodyparser": "^3.0.0",
  43. "koa-compose": "^3.1.0",
  44. "koa-compress": "^1.0.9",
  45. "koa-conditional-get": "^1.0.3",
  46. "koa-convert": "^1.2.0",
  47. "koa-etag": "^2.1.1",
  48. "koa-json": "^1.1.3",
  49. "koa-mock-response": "0.0.2",
  50. "koa-morgan": "^1.0.1",
  51. "koa-rewrite": "^2.1.0",
  52. "koa-route": "^3.0.0",
  53. "koa-send": "^3.2.0",
  54. "koa-serve-index": "^1.1.1",
  55. "koa-static": "^2.0.0",
  56. "local-web-server-stack": "github:75lb/local-web-server-stack",
  57. "path-to-regexp": "^1.5.0",
  58. "reduce-flatten": "^1.0.0",
  59. "stream-log-stats": "^1.1.3",
  60. "test-value": "^2.0.0",
  61. "typical": "^2.4.2"
  62. },
  63. "devDependencies": {
  64. "jsdoc-to-markdown": "^1.3.6",
  65. "koa-cache-control": "^1.0.0",
  66. "koa-livereload": "^0.1.23",
  67. "req-then": "~0.2.4",
  68. "tape": "^4.5.1"
  69. }
  70. }