websocket快速操作工具
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.

66 lines
1.4 KiB

  1. {
  2. "name": "live-server",
  3. "version": "1.2.2",
  4. "description": "simple development http server with live reload capability",
  5. "keywords": [
  6. "front-end",
  7. "development",
  8. "tool",
  9. "server",
  10. "http",
  11. "cli"
  12. ],
  13. "author": "Tapio Vierros",
  14. "dependencies": {
  15. "chokidar": "^2.0.4",
  16. "colors": "1.4.0",
  17. "connect": "^3.6.6",
  18. "cors": "latest",
  19. "event-stream": "3.3.4",
  20. "faye-websocket": "0.11.x",
  21. "http-auth": "3.1.x",
  22. "morgan": "^1.9.1",
  23. "object-assign": "latest",
  24. "opn": "latest",
  25. "proxy-middleware": "latest",
  26. "send": "latest",
  27. "serve-index": "^1.9.1"
  28. },
  29. "devDependencies": {
  30. "eslint": "^5.9.0",
  31. "jshint": "^2.9.6",
  32. "mocha": "^5.2.0",
  33. "supertest": "^3.3.0"
  34. },
  35. "scripts": {
  36. "lint": "eslint live-server.js index.js",
  37. "hint": "jshint live-server.js index.js",
  38. "test": "mocha test --exit && npm run lint"
  39. },
  40. "bin": {
  41. "live-server": "./live-server.js"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "https://github.com/tapio/live-server.git"
  46. },
  47. "engines": {
  48. "node": ">=0.10.0"
  49. },
  50. "preferGlobal": true,
  51. "license": "MIT",
  52. "eslintConfig": {
  53. "env": {
  54. "node": true
  55. },
  56. "rules": {
  57. "quotes": 0,
  58. "curly": 0,
  59. "strict": 0,
  60. "no-process-exit": 0,
  61. "eqeqeq": 1,
  62. "no-unused-vars": 1,
  63. "no-shadow": 1
  64. }
  65. }
  66. }