mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-03-25 09:25:49 +00:00
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
15 lines
447 B
JSON
15 lines
447 B
JSON
{
|
|
"author": "Remy Sharp <remy@leftlogic.com> (http://remysharp.com/)",
|
|
"name": "mit-licence",
|
|
"description": "Hosted MIT License with details controlled through this repo",
|
|
"version": "1.0.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:remy/mit-license.git"
|
|
},
|
|
"scripts": {
|
|
"test": "node test.js"
|
|
},
|
|
"bugs": { "url": "https://github.com/remy/mit-license/issues" },
|
|
"license" : "SEE LICENSE IN LICENSE"
|
|
}
|