@@ -190,6 +190,7 @@ const extendedHelpFormat: ExtendedHelp = ({ markdown }) => {
190190 rows : [
191191 [ 'dep' , `Prints the dependency type (dev, peer, optional) of each package.` ] ,
192192 [ 'group' , `Groups packages by major, minor, patch, and major version zero updates.` ] ,
193+ [ 'homepage' , `Displays links to the package's homepage if specified in its package.json.` ] ,
193194 [ 'installedVersion' , 'Prints the exact current version number instead of a range.' ] ,
194195 [ 'lines' , 'Prints name@version on separate lines. Useful for piping to npm install.' ] ,
195196 [ 'ownerChanged' , `Shows if the package owner has changed.` ] ,
@@ -793,7 +794,7 @@ const cliOptions: CLIOption[] = [
793794 parse : value => ( typeof value === 'string' ? value . split ( ',' ) : value ) ,
794795 default : [ ] ,
795796 type : 'readonly string[]' ,
796- choices : [ 'dep' , 'group' , 'ownerChanged' , 'repo' , 'time' , 'lines' , 'installedVersion' ] ,
797+ choices : [ 'dep' , 'group' , 'homepage' , ' ownerChanged', 'repo' , 'time' , 'lines' , 'installedVersion' ] ,
797798 help : extendedHelpFormat ,
798799 } ,
799800 {
0 commit comments