mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-21 06:43:05 -08:00
39 lines
798 B
Go
39 lines
798 B
Go
package types
|
|
|
|
const (
|
|
ArtifactJSONSchemaVersion = 1
|
|
BlobJSONSchemaVersion = 2
|
|
)
|
|
|
|
const (
|
|
// Programming language dependencies
|
|
Bundler = "bundler"
|
|
GemSpec = "gemspec"
|
|
Cargo = "cargo"
|
|
Composer = "composer"
|
|
Npm = "npm"
|
|
NuGet = "nuget"
|
|
Pip = "pip"
|
|
Pipenv = "pipenv"
|
|
Poetry = "poetry"
|
|
PythonPkg = "python-pkg"
|
|
NodePkg = "node-pkg"
|
|
Yarn = "yarn"
|
|
Jar = "jar"
|
|
Pom = "pom"
|
|
GoBinary = "gobinary"
|
|
GoMod = "gomod"
|
|
JavaScript = "javascript"
|
|
|
|
// Config files
|
|
YAML = "yaml"
|
|
JSON = "json"
|
|
TOML = "toml"
|
|
Dockerfile = "dockerfile"
|
|
HCL = "hcl"
|
|
Terraform = "terraform"
|
|
Kubernetes = "kubernetes"
|
|
CloudFormation = "cloudformation"
|
|
Ansible = "ansible"
|
|
)
|