package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "update-notifier",
  3. "version": "5.1.0",
  4. "description": "Update notifications for your CLI app",
  5. "license": "BSD-2-Clause",
  6. "repository": "yeoman/update-notifier",
  7. "funding": "https://github.com/yeoman/update-notifier?sponsor=1",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava --timeout=20s --serial"
  18. },
  19. "files": [
  20. "index.js",
  21. "check.js"
  22. ],
  23. "keywords": [
  24. "npm",
  25. "update",
  26. "updater",
  27. "notify",
  28. "notifier",
  29. "check",
  30. "checker",
  31. "cli",
  32. "module",
  33. "package",
  34. "version"
  35. ],
  36. "dependencies": {
  37. "boxen": "^5.0.0",
  38. "chalk": "^4.1.0",
  39. "configstore": "^5.0.1",
  40. "has-yarn": "^2.1.0",
  41. "import-lazy": "^2.1.0",
  42. "is-ci": "^2.0.0",
  43. "is-installed-globally": "^0.4.0",
  44. "is-npm": "^5.0.0",
  45. "is-yarn-global": "^0.3.0",
  46. "latest-version": "^5.1.0",
  47. "pupa": "^2.1.1",
  48. "semver": "^7.3.4",
  49. "semver-diff": "^3.1.1",
  50. "xdg-basedir": "^4.0.0"
  51. },
  52. "devDependencies": {
  53. "ava": "^2.4.0",
  54. "clear-module": "^4.1.1",
  55. "fixture-stdout": "^0.2.1",
  56. "mock-require": "^3.0.3",
  57. "strip-ansi": "^6.0.0",
  58. "xo": "^0.37.1"
  59. }
  60. }