├── .editorconfig ├── .github └── workflows │ └── markdownlint.yml ├── .gitignore ├── .mdlrc ├── CODEOWNERS ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── NOTICE ├── README.md ├── cdx.md └── cdx ├── composer.md ├── device.md ├── gomod.md ├── lifecycle.md ├── maven.md ├── npm.md ├── pipenv.md ├── poetry.md ├── python.md └── rustc.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/.github/workflows/markdownlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/.mdlrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/README.md -------------------------------------------------------------------------------- /cdx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx.md -------------------------------------------------------------------------------- /cdx/composer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/composer.md -------------------------------------------------------------------------------- /cdx/device.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/device.md -------------------------------------------------------------------------------- /cdx/gomod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/gomod.md -------------------------------------------------------------------------------- /cdx/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/lifecycle.md -------------------------------------------------------------------------------- /cdx/maven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/maven.md -------------------------------------------------------------------------------- /cdx/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/npm.md -------------------------------------------------------------------------------- /cdx/pipenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/pipenv.md -------------------------------------------------------------------------------- /cdx/poetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/poetry.md -------------------------------------------------------------------------------- /cdx/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/python.md -------------------------------------------------------------------------------- /cdx/rustc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/cyclonedx-property-taxonomy/HEAD/cdx/rustc.md --------------------------------------------------------------------------------