We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
package.json currently lists the projects licenses in an array which is deprecated by npmjs:
Some old packages used license objects or a “licenses” property containing an array of license objects: ...
Those styles are now deprecated. Instead, use SPDX expressions
Projects like https://github.com/microsoft/license-checker-webpack-plugin pick up the license here as either MIT or SIL (generating an incorrect SPDX expression of "(MIT OR OFL-1.1)").
"(MIT OR OFL-1.1)"
The following changes should be made to this repository:
package.json/licenses
package.json/license
"(MIT AND OFL-1.1)"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
package.json currently lists the projects licenses in an array which is deprecated by npmjs:
Projects like https://github.com/microsoft/license-checker-webpack-plugin pick up the license here as either MIT or SIL (generating an incorrect SPDX expression of
"(MIT OR OFL-1.1)"
).The following changes should be made to this repository:
package.json/licenses
memberpackage.json/license
member with value"(MIT AND OFL-1.1)"
The text was updated successfully, but these errors were encountered: