mirror of
https://github.com/anchore/syft.git
synced 2026-02-13 02:56:42 +01:00
12 lines
391 B
Go
12 lines
391 B
Go
package pkg
|
|
|
|
type LuaRocksPackage struct {
|
|
Name string `json:"name"`
|
|
Version string `json:"version"`
|
|
License string `json:"license"`
|
|
Homepage string `json:"homepage"`
|
|
Description string `json:"description"`
|
|
URL string `json:"url"`
|
|
Dependencies map[string]string `json:"dependencies"`
|
|
}
|