package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "human-signals",
  3. "version": "2.1.0",
  4. "main": "build/src/main.js",
  5. "files": [
  6. "build/src",
  7. "!~"
  8. ],
  9. "scripts": {
  10. "test": "gulp test"
  11. },
  12. "husky": {
  13. "hooks": {
  14. "pre-push": "gulp check --full"
  15. }
  16. },
  17. "description": "Human-friendly process signals",
  18. "keywords": [
  19. "signal",
  20. "signals",
  21. "handlers",
  22. "error-handling",
  23. "errors",
  24. "interrupts",
  25. "sigterm",
  26. "sigint",
  27. "irq",
  28. "process",
  29. "exit",
  30. "exit-code",
  31. "status",
  32. "operating-system",
  33. "es6",
  34. "javascript",
  35. "linux",
  36. "macos",
  37. "windows",
  38. "nodejs"
  39. ],
  40. "license": "Apache-2.0",
  41. "homepage": "https://git.io/JeluP",
  42. "repository": "ehmicky/human-signals",
  43. "bugs": {
  44. "url": "https://github.com/ehmicky/human-signals/issues"
  45. },
  46. "author": "ehmicky <ehmicky@gmail.com> (https://github.com/ehmicky)",
  47. "directories": {
  48. "lib": "src",
  49. "test": "test"
  50. },
  51. "types": "build/src/main.d.ts",
  52. "dependencies": {},
  53. "devDependencies": {
  54. "@ehmicky/dev-tasks": "^0.31.9",
  55. "ajv": "^6.12.0",
  56. "ava": "^3.5.0",
  57. "gulp": "^4.0.2",
  58. "husky": "^4.2.3",
  59. "test-each": "^2.0.0"
  60. },
  61. "engines": {
  62. "node": ">=10.17.0"
  63. }
  64. }