From e6773e01e9f5ac1926aee7de4c6f2147f661dccd Mon Sep 17 00:00:00 2001 From: Daniel Cohen <dcohenb@gmail.com> Date: Tue, 3 May 2016 11:24:53 +0300 Subject: [PATCH] Format the license in package.json to match the SPDX standard As documented on the NPM documentation (https://docs.npmjs.com/files/package.json#license). The license field has to comply with the SPDX specification for communicating the licenses and copyrights associated with a software package. This commit changes the license to a valid SPDX value (MIT) --- package.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index f4b9ce8d..52967ad6 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,7 @@ "version": "0.16.1", "description": "RESTful web API Documentation Generator", "author": "Peter Rottmann <rottmann@inveris.de>", - "license": { - "type": "MIT", - "url": "https://github.com/apidoc/apidoc/blob/master/LICENSE" - }, + "license": "MIT", "preferGlobal": true, "bin": "bin/apidoc", "main": "./lib/index.js",