package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "notifications",
  3. "main": "./lib/main",
  4. "version": "0.73.0",
  5. "repository": "https://github.com/pulsar-edit/pulsar",
  6. "description": "A tidy way to display Pulsar notifications.",
  7. "license": "MIT",
  8. "engines": {
  9. "atom": ">0.50.0"
  10. },
  11. "dependencies": {
  12. "fs-plus": "^3.0.0",
  13. "moment": "^2.19.3",
  14. "semver": "^7.0.0",
  15. "stacktrace-parser": "^0.1.3",
  16. "temp": "^0.8.1"
  17. },
  18. "devDependencies": {
  19. "coffeelint": "^1.9.7"
  20. },
  21. "configSchema": {
  22. "showErrorsInDevMode": {
  23. "type": "boolean",
  24. "default": false,
  25. "description": "Show notifications for uncaught exceptions even if Pulsar is running in dev mode. If this config setting is disabled, uncaught exceptions will trigger the dev tools to open and be logged in the console tab."
  26. },
  27. "defaultTimeout": {
  28. "type": "integer",
  29. "default": 5000,
  30. "minimum": 1000,
  31. "description": "The default notification timeout for a non-dismissable notification."
  32. }
  33. },
  34. "deserializers": {
  35. "notifications/NotificationsLog": "createLog"
  36. }
  37. }