├── .eslintrc ├── .github └── workflows │ ├── npm-publish.yml │ └── npm-test.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── SECURITY.md ├── jest-runner-eslint.config.js ├── jest.eslint.config.js ├── jest.test.config.js ├── package.json └── src ├── LicenseError.js ├── __mocks__ ├── module-with-licence │ └── LICENCE └── module-with-license │ └── LICENSE ├── defaultOutputTemplate.ejs ├── defaultOutputWriter.js ├── index.js ├── licenseUtils.js ├── licenseUtils.spec.js ├── optionsUtils.js └── optionsUtils.spec.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.github/workflows/npm-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/.github/workflows/npm-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/SECURITY.md -------------------------------------------------------------------------------- /jest-runner-eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/jest-runner-eslint.config.js -------------------------------------------------------------------------------- /jest.eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/jest.eslint.config.js -------------------------------------------------------------------------------- /jest.test.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/jest.test.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/LicenseError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/src/LicenseError.js -------------------------------------------------------------------------------- /src/__mocks__/module-with-licence/LICENCE: -------------------------------------------------------------------------------- 1 | LICENCE TEXT -------------------------------------------------------------------------------- /src/__mocks__/module-with-license/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE TEXT -------------------------------------------------------------------------------- /src/defaultOutputTemplate.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/src/defaultOutputTemplate.ejs -------------------------------------------------------------------------------- /src/defaultOutputWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/src/defaultOutputWriter.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/licenseUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/src/licenseUtils.js -------------------------------------------------------------------------------- /src/licenseUtils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/src/licenseUtils.spec.js -------------------------------------------------------------------------------- /src/optionsUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/src/optionsUtils.js -------------------------------------------------------------------------------- /src/optionsUtils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/license-checker-webpack-plugin/HEAD/src/optionsUtils.spec.js --------------------------------------------------------------------------------