├── .appveyor.yml ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── linux.yml │ ├── macos.yml │ ├── release.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── .perltidyrc ├── .proverc ├── .releaserc ├── CONTRIBUTING.md ├── Changes ├── LICENSE ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── README.md ├── SECURITY.md ├── cpanfile ├── lib └── CPAN │ ├── Audit.pm │ └── Audit │ ├── Discover.pm │ ├── Discover │ ├── Cpanfile.pm │ └── CpanfileSnapshot.pm │ ├── Filter.pm │ ├── FreshnessCheck.pm │ ├── Installed.pm │ ├── Query.pm │ └── Version.pm ├── script └── cpan-audit └── t ├── cli.t ├── cli ├── deps.t ├── dist.t ├── installed.t ├── module.t ├── modules.t ├── release.t └── show.t ├── data ├── carton │ └── cpanfile.snapshot ├── cpanfiles │ └── cpanfile ├── excludes ├── installed │ └── perl5 │ │ └── lib │ │ └── perl5 │ │ └── Catalyst.pm ├── modules_excludes └── queried_modules │ └── cpanfile ├── discover ├── cpanfile.t └── cpanfile_snapshot.t ├── excludes.t ├── installed.t ├── json.t ├── lib └── TestCommand.pm ├── queried_modules.t ├── query.t ├── test_manifest └── version.t /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [briandfoy] 4 | -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.perltidyrc: -------------------------------------------------------------------------------- 1 | -l=120 2 | -------------------------------------------------------------------------------- /.proverc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.proverc -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/.releaserc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/Changes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/MANIFEST.SKIP -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/cpanfile -------------------------------------------------------------------------------- /lib/CPAN/Audit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit.pm -------------------------------------------------------------------------------- /lib/CPAN/Audit/Discover.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit/Discover.pm -------------------------------------------------------------------------------- /lib/CPAN/Audit/Discover/Cpanfile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit/Discover/Cpanfile.pm -------------------------------------------------------------------------------- /lib/CPAN/Audit/Discover/CpanfileSnapshot.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit/Discover/CpanfileSnapshot.pm -------------------------------------------------------------------------------- /lib/CPAN/Audit/Filter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit/Filter.pm -------------------------------------------------------------------------------- /lib/CPAN/Audit/FreshnessCheck.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit/FreshnessCheck.pm -------------------------------------------------------------------------------- /lib/CPAN/Audit/Installed.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit/Installed.pm -------------------------------------------------------------------------------- /lib/CPAN/Audit/Query.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit/Query.pm -------------------------------------------------------------------------------- /lib/CPAN/Audit/Version.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/lib/CPAN/Audit/Version.pm -------------------------------------------------------------------------------- /script/cpan-audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/script/cpan-audit -------------------------------------------------------------------------------- /t/cli.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/cli.t -------------------------------------------------------------------------------- /t/cli/deps.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/cli/deps.t -------------------------------------------------------------------------------- /t/cli/dist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/cli/dist.t -------------------------------------------------------------------------------- /t/cli/installed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/cli/installed.t -------------------------------------------------------------------------------- /t/cli/module.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/cli/module.t -------------------------------------------------------------------------------- /t/cli/modules.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/cli/modules.t -------------------------------------------------------------------------------- /t/cli/release.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/cli/release.t -------------------------------------------------------------------------------- /t/cli/show.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/cli/show.t -------------------------------------------------------------------------------- /t/data/carton/cpanfile.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/data/carton/cpanfile.snapshot -------------------------------------------------------------------------------- /t/data/cpanfiles/cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/data/cpanfiles/cpanfile -------------------------------------------------------------------------------- /t/data/excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/data/excludes -------------------------------------------------------------------------------- /t/data/installed/perl5/lib/perl5/Catalyst.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/data/installed/perl5/lib/perl5/Catalyst.pm -------------------------------------------------------------------------------- /t/data/modules_excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/data/modules_excludes -------------------------------------------------------------------------------- /t/data/queried_modules/cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/data/queried_modules/cpanfile -------------------------------------------------------------------------------- /t/discover/cpanfile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/discover/cpanfile.t -------------------------------------------------------------------------------- /t/discover/cpanfile_snapshot.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/discover/cpanfile_snapshot.t -------------------------------------------------------------------------------- /t/excludes.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/excludes.t -------------------------------------------------------------------------------- /t/installed.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/installed.t -------------------------------------------------------------------------------- /t/json.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/json.t -------------------------------------------------------------------------------- /t/lib/TestCommand.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/lib/TestCommand.pm -------------------------------------------------------------------------------- /t/queried_modules.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/queried_modules.t -------------------------------------------------------------------------------- /t/query.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/query.t -------------------------------------------------------------------------------- /t/test_manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/test_manifest -------------------------------------------------------------------------------- /t/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/briandfoy/cpan-audit/HEAD/t/version.t --------------------------------------------------------------------------------