From 8467255bf1a661ad168501feb4234e92611320f6 Mon Sep 17 00:00:00 2001 From: Alexey Rodionov Date: Sun, 12 Mar 2017 18:17:06 +0300 Subject: [PATCH] Fix license value in bower.json According to bower.json spec (https://github.com/bower/spec/blob/master/json.md#license), "license" value must be one of SPDX license identifiers (https://spdx.org/licenses), "BSD" is not a valid SPDX identifier. --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 9cbcbb7..c64745c 100644 --- a/bower.json +++ b/bower.json @@ -13,7 +13,7 @@ "keywords": [ "webcomponents" ], - "license": "BSD", + "license": "BSD-3-Clause", "ignore": [], "devDependencies": { "web-component-tester": "^5",