package.json 749 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "exit-hook",
  3. "version": "2.2.1",
  4. "description": "Run some code when the process exits",
  5. "license": "MIT",
  6. "repository": "sindresorhus/exit-hook",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=6"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "exit",
  25. "quit",
  26. "process",
  27. "hook",
  28. "graceful",
  29. "handler",
  30. "shutdown",
  31. "sigterm",
  32. "sigint",
  33. "terminate",
  34. "kill",
  35. "stop",
  36. "event",
  37. "signal"
  38. ],
  39. "devDependencies": {
  40. "ava": "^1.4.1",
  41. "execa": "^1.0.0",
  42. "tsd": "^0.7.2",
  43. "xo": "^0.24.0"
  44. }
  45. }