package.json 805 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "hard-rejection",
  3. "version": "2.1.0",
  4. "description": "Make unhandled promise rejections fail hard right away instead of the default silent fail",
  5. "license": "MIT",
  6. "repository": "sindresorhus/hard-rejection",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=6"
  14. },
  15. "scripts": {
  16. "test": "xo && ava && tsd"
  17. },
  18. "files": [
  19. "index.js",
  20. "index.d.ts",
  21. "register.js"
  22. ],
  23. "keywords": [
  24. "promise",
  25. "promises",
  26. "unhandled",
  27. "uncaught",
  28. "rejection",
  29. "hard",
  30. "fail",
  31. "catch",
  32. "throw",
  33. "handler",
  34. "exit",
  35. "debug",
  36. "debugging",
  37. "verbose",
  38. "immediate",
  39. "immediately"
  40. ],
  41. "devDependencies": {
  42. "ava": "^1.4.1",
  43. "execa": "^1.0.0",
  44. "tsd": "^0.7.1",
  45. "xo": "^0.24.0"
  46. }
  47. }