├── .github └── workflows │ └── build.yml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── LICENSE ├── README.md ├── bin └── improved-yarn-audit ├── package.json ├── test ├── huge-package.json ├── huge-yarn.lock ├── mocks │ ├── test-11.iyarc │ ├── test-12.iyarc │ ├── test-13.iyarc │ ├── test-14.args │ ├── test-15.iyarc │ ├── test-16.args │ ├── test-17.iyarc │ ├── test-2.args │ ├── test-21.iyarc │ ├── test-3.iyarc │ ├── test-4.iyarc │ ├── test-5.iyarc │ └── test-6.iyarc ├── test.sh ├── vunerable-package.json └── vunerable-yarn.lock └── yarn.lock /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/README.md -------------------------------------------------------------------------------- /bin/improved-yarn-audit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/bin/improved-yarn-audit -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/package.json -------------------------------------------------------------------------------- /test/huge-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/huge-package.json -------------------------------------------------------------------------------- /test/huge-yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/huge-yarn.lock -------------------------------------------------------------------------------- /test/mocks/test-11.iyarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-11.iyarc -------------------------------------------------------------------------------- /test/mocks/test-12.iyarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-12.iyarc -------------------------------------------------------------------------------- /test/mocks/test-13.iyarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-13.iyarc -------------------------------------------------------------------------------- /test/mocks/test-14.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-14.args -------------------------------------------------------------------------------- /test/mocks/test-15.iyarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-15.iyarc -------------------------------------------------------------------------------- /test/mocks/test-16.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-16.args -------------------------------------------------------------------------------- /test/mocks/test-17.iyarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-17.iyarc -------------------------------------------------------------------------------- /test/mocks/test-2.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-2.args -------------------------------------------------------------------------------- /test/mocks/test-21.iyarc: -------------------------------------------------------------------------------- 1 | # testing an empty RC file -------------------------------------------------------------------------------- /test/mocks/test-3.iyarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-3.iyarc -------------------------------------------------------------------------------- /test/mocks/test-4.iyarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-4.iyarc -------------------------------------------------------------------------------- /test/mocks/test-5.iyarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/mocks/test-5.iyarc -------------------------------------------------------------------------------- /test/mocks/test-6.iyarc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/test.sh -------------------------------------------------------------------------------- /test/vunerable-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/vunerable-package.json -------------------------------------------------------------------------------- /test/vunerable-yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/test/vunerable-yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djfdyuruiry/improved-yarn-audit/HEAD/yarn.lock --------------------------------------------------------------------------------