package.json 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "_from": "node-notifier@^8.0.0",
  3. "_id": "node-notifier@8.0.2",
  4. "_inBundle": false,
  5. "_integrity": "sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg==",
  6. "_location": "/node-notifier",
  7. "_phantomChildren": {
  8. "isexe": "2.0.0"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "node-notifier@^8.0.0",
  14. "name": "node-notifier",
  15. "escapedName": "node-notifier",
  16. "rawSpec": "^8.0.0",
  17. "saveSpec": null,
  18. "fetchSpec": "^8.0.0"
  19. },
  20. "_requiredBy": [
  21. "/@jest/reporters"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz",
  24. "_shasum": "f3167a38ef0d2c8a866a83e318c1ba0efeb702c5",
  25. "_spec": "node-notifier@^8.0.0",
  26. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\node_modules\\@jest\\reporters",
  27. "author": {
  28. "name": "Mikael Brevik"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/mikaelbr/node-notifier/issues"
  32. },
  33. "bundleDependencies": false,
  34. "dependencies": {
  35. "growly": "^1.3.0",
  36. "is-wsl": "^2.2.0",
  37. "semver": "^7.3.2",
  38. "shellwords": "^0.1.1",
  39. "uuid": "^8.3.0",
  40. "which": "^2.0.2"
  41. },
  42. "deprecated": false,
  43. "description": "A Node.js module for sending notifications on native Mac, Windows (post and pre 8) and Linux (or Growl as fallback)",
  44. "devDependencies": {
  45. "eslint": "^7.6.0",
  46. "eslint-config-semistandard": "^15.0.1",
  47. "eslint-config-standard": "^14.1.1",
  48. "eslint-plugin-import": "^2.22.0",
  49. "eslint-plugin-node": "^11.1.0",
  50. "eslint-plugin-promise": "^4.2.1",
  51. "eslint-plugin-standard": "^4.0.1",
  52. "husky": "^4.2.5",
  53. "jest": "^26.4.0",
  54. "lint-staged": "^10.2.11",
  55. "prettier": "^2.0.5"
  56. },
  57. "directories": {
  58. "example": "example",
  59. "test": "test"
  60. },
  61. "homepage": "https://github.com/mikaelbr/node-notifier#readme",
  62. "husky": {
  63. "hooks": {
  64. "pre-commit": "lint-staged"
  65. }
  66. },
  67. "jest": {
  68. "testRegex": "/test/[^_]*.js",
  69. "testEnvironment": "node",
  70. "setupFilesAfterEnv": [
  71. "./test/_test-matchers.js"
  72. ]
  73. },
  74. "keywords": [
  75. "notification center",
  76. "mac os x 10.8",
  77. "notify",
  78. "terminal-notifier",
  79. "notify-send",
  80. "growl",
  81. "windows 8 notification",
  82. "toaster",
  83. "notification"
  84. ],
  85. "license": "MIT",
  86. "lint-staged": {
  87. "*.{js,json,css,md}": [
  88. "prettier --write",
  89. "git add"
  90. ]
  91. },
  92. "main": "index.js",
  93. "name": "node-notifier",
  94. "repository": {
  95. "type": "git",
  96. "url": "git+ssh://git@github.com/mikaelbr/node-notifier.git"
  97. },
  98. "scripts": {
  99. "example": "node ./example/message.js",
  100. "example:mac": "node ./example/advanced.js",
  101. "example:mac:input": "node ./example/macInput.js",
  102. "example:windows": "node ./example/toaster.js",
  103. "example:windows:actions": "node ./example/toaster-with-actions.js",
  104. "lint": "eslint example/*.js lib/*.js notifiers/*.js test/**/*.js index.js",
  105. "pretest": "npm run lint",
  106. "test": "jest"
  107. },
  108. "version": "8.0.2"
  109. }