package.json 857 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "signal-exit",
  3. "version": "3.0.5",
  4. "description": "when you want to fire an event no matter how a process exits.",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "tap --timeout=240 ./test/*.js --cov",
  8. "coverage": "nyc report --reporter=text-lcov | coveralls",
  9. "release": "standard-version"
  10. },
  11. "files": [
  12. "index.js",
  13. "signals.js"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/tapjs/signal-exit.git"
  18. },
  19. "keywords": [
  20. "signal",
  21. "exit"
  22. ],
  23. "author": "Ben Coe <ben@npmjs.com>",
  24. "license": "ISC",
  25. "bugs": {
  26. "url": "https://github.com/tapjs/signal-exit/issues"
  27. },
  28. "homepage": "https://github.com/tapjs/signal-exit",
  29. "devDependencies": {
  30. "chai": "^3.5.0",
  31. "coveralls": "^3.1.1",
  32. "nyc": "^15.1.0",
  33. "standard-version": "^9.3.1",
  34. "tap": "^15.0.10"
  35. }
  36. }