package.json 745 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "restore-cursor",
  3. "version": "2.0.0",
  4. "description": "Gracefully restore the CLI cursor on exit",
  5. "license": "MIT",
  6. "repository": "sindresorhus/restore-cursor",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "files": [
  16. "index.js"
  17. ],
  18. "keywords": [
  19. "exit",
  20. "quit",
  21. "process",
  22. "graceful",
  23. "shutdown",
  24. "sigterm",
  25. "sigint",
  26. "terminate",
  27. "kill",
  28. "stop",
  29. "cli",
  30. "cursor",
  31. "ansi",
  32. "show",
  33. "term",
  34. "terminal",
  35. "console",
  36. "tty",
  37. "shell",
  38. "command-line"
  39. ],
  40. "dependencies": {
  41. "onetime": "^2.0.0",
  42. "signal-exit": "^3.0.2"
  43. }
  44. }