mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* Adding the resolved and integrity fields of yarn.lock to the parsed metadata. This addition is similar to the metadata added when parsing package-lock.json. Signed-off-by: asi-cider <88270351+asi-cider@users.noreply.github.com> * fix comment Signed-off-by: asi-cider <88270351+asi-cider@users.noreply.github.com> * Adding the Index field to metadeta when parsing poetry.lock similarly to the existing Pipfile metadata Signed-off-by: asi-cider <88270351+asi-cider@users.noreply.github.com> * fixing struct accoding to tests Signed-off-by: asi-cider <88270351+asi-cider@users.noreply.github.com> * remove old schema change Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * remove empty constants Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * re-generate JSON schema Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * update document ref Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> * fix linting Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> --------- Signed-off-by: asi-cider <88270351+asi-cider@users.noreply.github.com> Signed-off-by: Alex Goodman <wagoodman@users.noreply.github.com> Co-authored-by: Alex Goodman <wagoodman@users.noreply.github.com>
25 lines
1019 B
Go
25 lines
1019 B
Go
package pkg
|
|
|
|
// NpmPackage represents the contents of a javascript package.json file.
|
|
type NpmPackage struct {
|
|
Name string `mapstructure:"name" json:"name"`
|
|
Version string `mapstructure:"version" json:"version"`
|
|
Author string `mapstructure:"author" json:"author"`
|
|
Homepage string `mapstructure:"homepage" json:"homepage"`
|
|
Description string `mapstructure:"description" json:"description"`
|
|
URL string `mapstructure:"url" json:"url"`
|
|
Private bool `mapstructure:"private" json:"private"`
|
|
}
|
|
|
|
// NpmPackageLockEntry represents a single entry within the "packages" section of a package-lock.json file.
|
|
type NpmPackageLockEntry struct {
|
|
Resolved string `mapstructure:"resolved" json:"resolved"`
|
|
Integrity string `mapstructure:"integrity" json:"integrity"`
|
|
}
|
|
|
|
// YarnLockEntry represents a single entry section of a yarn.lock file.
|
|
type YarnLockEntry struct {
|
|
Resolved string `mapstructure:"resolved" json:"resolved"`
|
|
Integrity string `mapstructure:"integrity" json:"integrity"`
|
|
}
|