From 14d3c1cd6a4ba289cb9688bc6123b193b8964e5e Mon Sep 17 00:00:00 2001 From: Shota Fuji Date: Wed, 21 Apr 2021 01:54:27 +0900 Subject: [PATCH] Use SPDX identifier at license field It is recommended to use the SPDX license identifier for the `license` field in package.json. https://docs.npmjs.com/cli/v7/configuring-npm/package-json#license Automatic license checkers such as `license-checker-webpack-plugin` accepts only SPDX license identifiers and some well-known format as a valid license. With this change, these tools can handle this package correctly. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 54c6db1..c20d388 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "url": "https://github.com/GoogleChrome/dialog-polyfill.git" }, "author": "The Chromium Authors", - "license": "BSD", + "license": "BSD-3-Clause", "homepage": "https://github.com/GoogleChrome/dialog-polyfill", "devDependencies": { "chai": "^4.2.0",