diff options
author | Jason Karns | 2015-06-16 10:43:20 -0400 |
---|---|---|
committer | Jason Karns | 2015-06-16 10:43:20 -0400 |
commit | 071a523f423b2484eadf0082850aa172c9a9ad52 (patch) | |
tree | 52d3c476af579ebc1df415f9c28ad5f88cf668fb /package.json | |
parent | f0cf1f54d04088d241acf81eef42bd878a9f02ba (diff) |
`licenses` field is deprecated
the `licenses` field in package.json is deprecated. https://docs.npmjs.com/files/package.json#license
The `license` field is the recommended field and expects an SPDX expression.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/package.json b/package.json index 201c6bf..c55021c 100644 --- a/package.json +++ b/package.json @@ -40,10 +40,6 @@ "grunt": "~0.4.0", "node-sass": "~0.9.3" }, - "licenses": [ - { - "type": "MIT", - "url": "https://github.com/hakimel/reveal.js/blob/master/LICENSE" - } - ] + + "license": "MIT" } |