package.json 878 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "log-update",
  3. "version": "2.3.0",
  4. "description": "Log by overwriting the previous output in the terminal. Useful for rendering progress bars, animations, etc.",
  5. "license": "MIT",
  6. "repository": "sindresorhus/log-update",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && node test.js"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "log",
  23. "logger",
  24. "logging",
  25. "cli",
  26. "terminal",
  27. "term",
  28. "console",
  29. "shell",
  30. "update",
  31. "refresh",
  32. "overwrite",
  33. "output",
  34. "stdout",
  35. "progress",
  36. "bar",
  37. "animation"
  38. ],
  39. "dependencies": {
  40. "ansi-escapes": "^3.0.0",
  41. "cli-cursor": "^2.0.0",
  42. "wrap-ansi": "^3.0.1"
  43. },
  44. "devDependencies": {
  45. "xo": "*"
  46. }
  47. }