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.

54 lines
1.3 KiB

12 years ago
12 years ago
10 years ago
10 years ago
12 years ago
10 years ago
10 years ago
12 years ago
12 years ago
10 years ago
10 years ago
10 years ago
12 years ago
  1. {
  2. "name": "local-web-server",
  3. "version": "0.5.23",
  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. ],
  21. "engines": {
  22. "node": ">=4.0.0"
  23. },
  24. "scripts": {
  25. "test": "tape test/*.js",
  26. "docs": "jsdoc2md -t jsdoc2md/README.hbs lib/*.js > README.md; echo",
  27. "cover": "istanbul cover ./node_modules/.bin/tape test/*.js && cat coverage/lcov.info | coveralls && rm -rf coverage; echo"
  28. },
  29. "repository": "https://github.com/75lb/local-web-server",
  30. "author": "Lloyd Brookes <75pound@gmail.com>",
  31. "dependencies": {
  32. "command-line-args": "^2.0.2",
  33. "config-master": "^2",
  34. "http-proxy": "^1.12.0",
  35. "kcors": "^1.0.1",
  36. "koa": "^2.0.0-alpha.3",
  37. "koa-compress": "^1.0.8",
  38. "koa-conditional-get": "^1.0.3",
  39. "koa-convert": "^1.1.0",
  40. "koa-etag": "^2.1.0",
  41. "koa-morgan": "^0.4.0",
  42. "koa-rewrite": "^1.1.1",
  43. "koa-route": "^3",
  44. "koa-send": "^3.1.0",
  45. "koa-serve-index": "^1.1.0",
  46. "koa-static": "^1.5.2",
  47. "path-to-regexp": "^1.2.1",
  48. "stream-log-stats": "^v1.1.0-0"
  49. },
  50. "devDependencies": {
  51. "req-then": "^0.2.2",
  52. "tape": "^4.2.2"
  53. }
  54. }