From b1f617fcb2821f67453dc037cd0a6ebd8eb44de0 Mon Sep 17 00:00:00 2001 From: Thomas Hartwig Date: Tue, 12 Mar 2024 00:45:30 +0100 Subject: [PATCH] Fix License (#8253) The previous license value was not suitable for most software license scanners. Listing the actual license string in the package.json fixes this --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a52fdb548e7..f7f7d5595ba 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "flatbuffers" ], "author": "The FlatBuffers project", - "license": "SEE LICENSE IN LICENSE", + "license": "Apache-2.0", "bugs": { "url": "https://github.com/google/flatbuffers/issues" },