package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "update-notifier",
  3. "version": "2.5.0",
  4. "description": "Update notifications for your CLI app",
  5. "license": "BSD-2-Clause",
  6. "repository": "yeoman/update-notifier",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "https://sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=4"
  14. },
  15. "scripts": {
  16. "test": "xo && ava --timeout=20s"
  17. },
  18. "files": [
  19. "index.js",
  20. "check.js"
  21. ],
  22. "keywords": [
  23. "npm",
  24. "update",
  25. "updater",
  26. "notify",
  27. "notifier",
  28. "check",
  29. "checker",
  30. "cli",
  31. "module",
  32. "package",
  33. "version"
  34. ],
  35. "dependencies": {
  36. "boxen": "^1.2.1",
  37. "chalk": "^2.0.1",
  38. "configstore": "^3.0.0",
  39. "import-lazy": "^2.1.0",
  40. "is-ci": "^1.0.10",
  41. "is-installed-globally": "^0.1.0",
  42. "is-npm": "^1.0.0",
  43. "latest-version": "^3.0.0",
  44. "semver-diff": "^2.0.0",
  45. "xdg-basedir": "^3.0.0"
  46. },
  47. "devDependencies": {
  48. "ava": "*",
  49. "clear-module": "^2.1.0",
  50. "fixture-stdout": "^0.2.1",
  51. "mock-require": "^2.0.2",
  52. "strip-ansi": "^4.0.0",
  53. "xo": "^0.18.2"
  54. }
  55. }