From c2efb081209cae1c8b4c8105b217a3e5cd9bc243 Mon Sep 17 00:00:00 2001 From: Muhammed Abiola <88386924+mabioIa@users.noreply.github.com> Date: Thu, 15 Sep 2022 10:06:40 +0100 Subject: [PATCH] style: Replace invalid SPDX license expression When doing a `yarn e n`, I get a warning to use a valid SPX license expression relating to line of package.json being "GPL". According to the [documentation](https://spdx.org/licenses), "GPL" is an invalid license. We should probably change this to use the SPDX version to correctly reflect licensing. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5459d895..3ae06a9f 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "1.0.0", "main": "index.js", "author": "Matt Pocock ", - "license": "GPL", + "license": "GPL-3.0", "devDependencies": { "@types/node": "^18.6.5", "chokidar": "^3.5.3",