package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "node-notifier",
  3. "version": "5.4.5",
  4. "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)",
  5. "main": "index.js",
  6. "scripts": {
  7. "precommit": "lint-staged",
  8. "pretest": "npm run lint",
  9. "test": "jest",
  10. "example": "node ./example/message.js",
  11. "example:mac": "node ./example/advanced.js",
  12. "example:mac:input": "node ./example/macInput.js",
  13. "example:windows": "node ./example/toaster.js",
  14. "lint": "eslint example/*.js lib/*.js notifiers/*.js test/**/*.js index.js"
  15. },
  16. "jest": {
  17. "testRegex": "/test/[^_]*.js",
  18. "testEnvironment": "node",
  19. "setupTestFrameworkScriptFile": "./test/_test-matchers.js"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git"
  24. },
  25. "keywords": [
  26. "notification center",
  27. "mac os x 10.8",
  28. "notify",
  29. "terminal-notifier",
  30. "notify-send",
  31. "growl",
  32. "windows 8 notification",
  33. "toaster",
  34. "notification"
  35. ],
  36. "author": "Mikael Brevik",
  37. "license": "MIT",
  38. "devDependencies": {
  39. "eslint": "^5.12.1",
  40. "eslint-config-semistandard": "^13.0.0",
  41. "eslint-config-standard": "^12.0.0",
  42. "eslint-plugin-import": "^2.15.0",
  43. "eslint-plugin-node": "^8.0.1",
  44. "eslint-plugin-promise": "^4.0.1",
  45. "eslint-plugin-standard": "^4.0.0",
  46. "husky": "^1.3.1",
  47. "jest": "^23.2.0",
  48. "lint-staged": "^8.1.0",
  49. "prettier": "^1.12.1"
  50. },
  51. "dependencies": {
  52. "growly": "^1.3.0",
  53. "is-wsl": "^1.1.0",
  54. "semver": "^5.5.0",
  55. "shellwords": "^0.1.1",
  56. "which": "^1.3.0"
  57. },
  58. "lint-staged": {
  59. "*.{js,json,css,md}": [
  60. "prettier --write",
  61. "git add"
  62. ]
  63. },
  64. "bugs": {
  65. "url": "https://github.com/mikaelbr/node-notifier/issues"
  66. },
  67. "homepage": "https://github.com/mikaelbr/node-notifier#readme",
  68. "directories": {
  69. "example": "example",
  70. "test": "test"
  71. }
  72. }