From a5e4e4066d0a4f094ac30ec0a91638db160b9293 Mon Sep 17 00:00:00 2001 From: Bennie Mosher Date: Mon, 21 Dec 2015 10:54:08 -0700 Subject: [PATCH] Updated package.json to use new SPDX license exp. According to the docs on npmjs.com and the warning output when running `npm install`, the license element in `package.json` was invalid. NPM has updated their requirements to use the new SPDX license expression syntax version 2.0, and the license expression that was being used is now deprecated. I updated the license field to use the new valid expression. For more information, please see: https://docs.npmjs.com/files/package.json#license --- LICENSE | 1 + package.json | 8 ++------ 2 files changed, 3 insertions(+), 6 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..ff462117 --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +SEE: http://rem.mit-license.org/ diff --git a/package.json b/package.json index b755562e..d465cbed 100644 --- a/package.json +++ b/package.json @@ -11,9 +11,5 @@ "test": "node test.js" }, "bugs": { "url": "https://github.com/remy/mit-license/issues" }, - "licenses": [ - { "type": "MIT", - "url": "http://rem.mit-license.org/" - } - ] -} \ No newline at end of file + "license" : "SEE LICENSE IN LICENSE" +}