npm-check-updates 19.4.1 → 19.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -643,10 +643,12 @@ Modify the output formatting or show additional information. Specify one or more
643
643
  <table>
644
644
  <tr><td>dep</td><td>Prints the dependency type (dev, peer, optional) of each package.</td></tr>
645
645
  <tr><td>group</td><td>Groups packages by major, minor, patch, and major version zero updates.</td></tr>
646
+ <tr><td>homepage</td><td>Displays links to the package's homepage if specified in its package.json.</td></tr>
646
647
  <tr><td>installedVersion</td><td>Prints the exact current version number instead of a range.</td></tr>
647
648
  <tr><td>lines</td><td>Prints name@version on separate lines. Useful for piping to npm install.</td></tr>
648
649
  <tr><td>ownerChanged</td><td>Shows if the package owner has changed.</td></tr>
649
650
  <tr><td>repo</td><td>Infers and displays links to the package's source code repository. Requires packages to be installed.</td></tr>
651
+ <tr><td>diff</td><td>Display link to compare the changes between package versions.</td></tr>
650
652
  <tr><td>time</td><td>Shows the publish time of each upgrade.</td></tr>
651
653
  </table>
652
654
 
package/build/index.d.ts CHANGED
@@ -38,6 +38,7 @@ declare interface PackageFile {
38
38
  devDependencies?: Index<VersionSpec>;
39
39
  imports?: Index<VersionSpec>;
40
40
  engines?: Index<VersionSpec>;
41
+ homepage?: string;
41
42
  name?: string;
42
43
  packageManager?: string;
43
44
  optionalDependencies?: Index<VersionSpec>;