-
Notifications
You must be signed in to change notification settings - Fork 938
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #303 from simonemazzoni/fix_humanize-duration-3.1.…
…0-compatibility FIX: humanizer units format according to humanize-duration v3.1.0+
- Loading branch information
Showing
12 changed files
with
1,168 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,26 @@ | |
"name": "humanize-duration", | ||
"authors": [ | ||
"Evan Hahn <[email protected]> (http://evanhahn.com)", | ||
"Óli Tómas Freysson (https://github.com/olitomas)", | ||
"Martin Prins (https://github.com/magarcia)", | ||
"Filipi Siqueira (https://github.com/filipi777)", | ||
"Peter Rekdal Sunde (https://github.com/peters)", | ||
"Michał Janiec (https://github.com/mjjaniec)", | ||
"Eileen Li (https://github.com/eileen3)", | ||
"Tommy Brunn (https://github.com/Nevon)", | ||
"Giovanni Pellerano (https://github.com/evilaliv3)", | ||
"Rahma Sghaier (https://twitter.com/sghaierrahma)" | ||
"Rahma Sghaier (https://twitter.com/sghaierrahma)", | ||
"Evgenios Kastanias (https://github.com/evgenios)", | ||
"Oleksii Mylotskyi (https://github.com/spalax)", | ||
"Matthew Brandly (https://github.com/brandly)", | ||
"Patrik Simek (https://github.com/patriksimek)", | ||
"Toni Helminen (https://github.com/tonihelminen)", | ||
"Vidmantas Drasutis (https://github.com/drasius2)", | ||
"Manh Tuan (https://github.com/J2TeaM)", | ||
"Leonard Lee (https://github.com/sheeeng)", | ||
"Jesse Jackson (https://github.com/jsejcksn)" | ||
], | ||
"version": "2.8.0", | ||
"version": "3.10.0", | ||
"description": "Convert millisecond durations to English and many other languages.", | ||
"main": "humanize-duration.js", | ||
"homepage": "https://github.com/EvanHahn/HumanizeDuration.js", | ||
|
@@ -26,7 +36,7 @@ | |
"years", | ||
"months" | ||
], | ||
"license": "WTFPL", | ||
"license": "Unlicense", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
|
@@ -38,13 +48,13 @@ | |
"type": "git", | ||
"url": "git://github.com/EvanHahn/HumanizeDuration.js.git" | ||
}, | ||
"_release": "2.8.0", | ||
"_release": "3.10.0", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v2.8.0", | ||
"commit": "dcab6eaf100968c008351c70ae3dea9a8a86d929" | ||
"tag": "v3.10.0", | ||
"commit": "18243414dc4ce75d93f6a501f0e88130f2126421" | ||
}, | ||
"_source": "git://github.com/EvanHahn/HumanizeDuration.js.git", | ||
"_target": "~2.8.0", | ||
"_source": "https://github.com/EvanHahn/HumanizeDuration.js.git", | ||
"_target": "~3.10.0", | ||
"_originalSource": "humanize-duration" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
Version 2, December 2004 | ||
This is free and unencumbered software released into the public domain. | ||
|
||
Copyright (C) 2004 Sam Hocevar <[email protected]> | ||
Anyone is free to copy, modify, publish, use, compile, sell, or | ||
distribute this software, either in source code form or as a compiled | ||
binary, for any purpose, commercial or non-commercial, and by any | ||
means. | ||
|
||
Everyone is permitted to copy and distribute verbatim or modified | ||
copies of this license document, and changing it is allowed as long | ||
as the name is changed. | ||
In jurisdictions that recognize copyright laws, the author or authors | ||
of this software dedicate any and all copyright interest in the | ||
software to the public domain. We make this dedication for the benefit | ||
of the public at large and to the detriment of our heirs and | ||
successors. We intend this dedication to be an overt act of | ||
relinquishment in perpetuity of all present and future rights to this | ||
software under copyright law. | ||
|
||
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | ||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
0. You just DO WHAT THE FUCK YOU WANT TO. | ||
For more information, please refer to <http://unlicense.org/> |
Oops, something went wrong.