package.json 795 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "restore-cursor",
  3. "version": "3.1.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": ">=8"
  14. },
  15. "scripts": {
  16. "test": "xo && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts"
  21. ],
  22. "keywords": [
  23. "exit",
  24. "quit",
  25. "process",
  26. "graceful",
  27. "shutdown",
  28. "sigterm",
  29. "sigint",
  30. "terminate",
  31. "kill",
  32. "stop",
  33. "cli",
  34. "cursor",
  35. "ansi",
  36. "show",
  37. "term",
  38. "terminal",
  39. "console",
  40. "tty",
  41. "shell",
  42. "command-line"
  43. ],
  44. "dependencies": {
  45. "onetime": "^5.1.0",
  46. "signal-exit": "^3.0.2"
  47. },
  48. "devDependencies": {
  49. "tsd": "^0.7.2",
  50. "xo": "^0.24.0"
  51. }
  52. }