gtanner / qrcode-terminal

QRCodes in your terminal, cause thats hot.
Apache License 2.0
1.28k stars 102 forks source link

fix: use SPDX identifier. #40

Open neverendingqs opened 3 years ago

neverendingqs commented 3 years ago

This change will help with tools that do automated license checks by switching to the SPDX identifier for the Apache 2.0 license.


https://docs.npmjs.com/cli/v6/configuring-npm/package-json#license says:

If you're using a common license such as BSD-2-Clause or MIT, add a current SPDX license identifier for the license you're using, like this:

https://spdx.org/licenses/ shows that the identifier is Apache-2.0.


Note: https://docs.npmjs.com/cli/v6/configuring-npm/package-json#license also states that the current format is deprecated, and the following is prefered:

{ "license": "Apache-2.0" }

Happy to make that change if desired.