From d1e826b1982e2a21937aed31cda4d99a471213fb Mon Sep 17 00:00:00 2001 From: Daniel Cohen Date: Wed, 4 May 2016 14:05:25 +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 | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/package.json b/package.json index a5308bc..406b424 100644 --- a/package.json +++ b/package.json @@ -32,12 +32,7 @@ "bin": { "csvtojson": "./bin/csvtojson" }, - "license": [ - { - "type": "MIT", - "url": "https://github.com/Keyang/node-csvtojson/blob/master/LICENSE" - } - ], + "license": "MIT", "engines": { "node": ">=0.10" },