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.

60 lines
1.4 KiB

11 years ago
11 years ago
8 years ago
9 years ago
11 years ago
10 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
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. "files": [
  28. "bin",
  29. "lib",
  30. "ssl"
  31. ],
  32. "scripts": {
  33. "test": "tape test/*.js",
  34. "docs": "jsdoc2md -t jsdoc2md/api.hbs -p list lib/*.js > doc/api.md; echo",
  35. "cover": "istanbul cover ./node_modules/.bin/tape test/*.js && cat coverage/lcov.info | coveralls && rm -rf coverage; echo"
  36. },
  37. "repository": "https://github.com/75lb/local-web-server",
  38. "author": "Lloyd Brookes <75pound@gmail.com>",
  39. "dependencies": {
  40. "ansi-escape-sequences": "^2.2.2",
  41. "array-back": "^1.0.3",
  42. "command-line-args": "^3.0.0",
  43. "command-line-tool": "~0.4.0",
  44. "command-line-usage": "^3.0.3",
  45. "config-master": "^2.0.3",
  46. "koa": "^2.0.0",
  47. "local-web-server-default-stack": "github:local-web-server/default-stack",
  48. "reduce-flatten": "^1.0.1",
  49. "table-layout": "~0.2.2",
  50. "typical": "^2.4.2",
  51. "walk-back": "^2.0.1"
  52. },
  53. "devDependencies": {
  54. "jsdoc-to-markdown": "^1.3.6",
  55. "koa-cache-control": "^1.0.0",
  56. "koa-livereload": "~0.2.0",
  57. "req-then": "~0.2.4",
  58. "tape": "^4.6.0"
  59. }
  60. }