diff --git a/schema/tables/npm_packages.yml b/schema/tables/npm_packages.yml index 63380ee6ef..6b483dfca0 100644 --- a/schema/tables/npm_packages.yml +++ b/schema/tables/npm_packages.yml @@ -7,12 +7,9 @@ columns: platforms: - linux examples: >- - List the author, description and more information about packages made by Fleet. Replace the - homepage with any other distributor desired. + List the author, description and more information about the NPM package called `webpack`, if installed: + ```sql + SELECT author, description, directory, version FROM npm_packages WHERE name='webpack'; ``` - - SELECT author, description, directory, version FROM npm_packages WHERE homepage='https://fleetdm.com'; - - ``` - +description: Node.js packages globally installed on a system.