package.json 662 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "exit-hook",
  3. "version": "1.1.1",
  4. "description": "Run some code when the process exits",
  5. "license": "MIT",
  6. "repository": "sindresorhus/exit-hook",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "http://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "node test.js"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "exit",
  23. "quit",
  24. "process",
  25. "hook",
  26. "graceful",
  27. "handler",
  28. "shutdown",
  29. "sigterm",
  30. "sigint",
  31. "terminate",
  32. "kill",
  33. "stop",
  34. "event"
  35. ],
  36. "devDependencies": {
  37. "ava": "0.0.4"
  38. }
  39. }