package.json 1005 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "log-update",
  3. "version": "4.0.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. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "log",
  25. "logger",
  26. "logging",
  27. "cli",
  28. "terminal",
  29. "term",
  30. "console",
  31. "shell",
  32. "update",
  33. "refresh",
  34. "overwrite",
  35. "output",
  36. "stdout",
  37. "progress",
  38. "bar",
  39. "animation"
  40. ],
  41. "dependencies": {
  42. "ansi-escapes": "^4.3.0",
  43. "cli-cursor": "^3.1.0",
  44. "slice-ansi": "^4.0.0",
  45. "wrap-ansi": "^6.2.0"
  46. },
  47. "devDependencies": {
  48. "@types/node": "^13.7.4",
  49. "ava": "^3.3.0",
  50. "terminal.js": "^1.0.10",
  51. "tsd": "^0.11.0",
  52. "xo": "^0.26.1"
  53. }
  54. }