From 24b2e7c1d82edb969b647f4026c274476ca80198 Mon Sep 17 00:00:00 2001 From: Gregor Tudan Date: Tue, 22 Oct 2019 15:32:02 +0200 Subject: [PATCH] Use the correct SPDX license identifier The license field in package.json should use a SPDX identifier for the license. https://docs.npmjs.com/files/package.json#license "Apache 2.0" isn't quiet right according to https://spdx.org/licenses/ This breaks license checks plugins that do rather strict matching of the id. The project root also contains a copy of the MIT license in LICENSE.md. Shouldn't that be Apache 2.0 as well? --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2e7f779..1afb33f 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "cordova-android" ], "author": "Apache Software Foundation", - "license": "Apache 2.0", + "license": "Apache-2.0", "bugs": { "url": "https://github.com/ionic-team/cordova-plugin-ionic-keyboard/issues" },