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.

68 lines
1.5 KiB

11 years ago
4 years ago
11 years ago
9 years ago
4 years ago
11 years ago
6 years ago
11 years ago
7 years ago
7 years ago
11 years ago
  1. {
  2. "name": "local-web-server",
  3. "version": "4.0.0",
  4. "description": "A lean, modular web server for rapid full-stack development",
  5. "repository": "https://github.com/lwsjs/local-web-server",
  6. "author": "Lloyd Brookes <75pound@gmail.com>",
  7. "bin": {
  8. "ws": "./bin/cli.js"
  9. },
  10. "license": "MIT",
  11. "keywords": [
  12. "dev",
  13. "server",
  14. "web",
  15. "tool",
  16. "front-end",
  17. "development",
  18. "cors",
  19. "mime",
  20. "rest",
  21. "mock",
  22. "api",
  23. "proxy",
  24. "lws",
  25. "backend",
  26. "frontend",
  27. "full-stack"
  28. ],
  29. "engines": {
  30. "node": ">=10"
  31. },
  32. "scripts": {
  33. "start": "node ./bin/cli.js --directory public",
  34. "test": "test-runner test/*.js",
  35. "cover": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
  36. },
  37. "files": [
  38. "bin/*.js",
  39. "lib/*.js",
  40. "index.js"
  41. ],
  42. "dependencies": {
  43. "lws": "^3.0.0",
  44. "lws-basic-auth": "^2.0.0",
  45. "lws-blacklist": "^3.0.0",
  46. "lws-body-parser": "^2.0.0",
  47. "lws-compress": "^2.0.0",
  48. "lws-conditional-get": "^2.0.0",
  49. "lws-cors": "^3.0.0",
  50. "lws-index": "^2.0.0",
  51. "lws-json": "^2.0.0",
  52. "lws-log": "^2.0.0",
  53. "lws-mime": "^2.0.0",
  54. "lws-range": "^3.0.0",
  55. "lws-request-monitor": "^2.0.0",
  56. "lws-rewrite": "^3.0.0",
  57. "lws-spa": "^3.0.0",
  58. "lws-static": "^2.0.0",
  59. "node-version-matches": "^2.0.1"
  60. },
  61. "devDependencies": {
  62. "coveralls": "^3.0.9",
  63. "jsdoc-to-markdown": "^5.0.3",
  64. "node-fetch": "^2.6.0",
  65. "nyc": "^15.0.0",
  66. "test-runner": "^0.8.13"
  67. }
  68. }