{"maintainers":[{"email":"gianni@runlevel6.org","name":"anonymous"},{"email":"c.holloway@rotaready.com","name":"anonymous"},{"email":"tristanjm96@gmail.com","name":"anonymous"},{"email":"beaumont.a.jonathan@gmail.com","name":"anonymous"}],"dist-tags":{"latest":"4.0.2"},"author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"description":"Fancy date ranges for Moment.js","readme":"# moment-range [![CircleCI](https://circleci.com/gh/rotaready/moment-range.svg?style=shield)](https://circleci.com/gh/rotaready/moment-range)\n\nFancy date ranges for [Moment.js][moment].\n\n<!-- START doctoc generated TOC please keep comment here to allow auto update -->\n<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->\n\n\n- [Installation](#installation)\n  - [Node / NPM](#node--npm)\n  - [Browser](#browser)\n  - [Older browsers and IE11](#older-browsers-and-ie11)\n- [Examples](#examples)\n  - [Create](#create)\n    - [rangeFromInterval](#rangefrominterval)\n    - [parseZoneRange](#parsezonerange)\n    - [rangeFromISOString](#rangefromisostring)\n  - [Attributes](#attributes)\n  - [Querying](#querying)\n    - [Adjacent](#adjacent)\n    - [Center](#center)\n    - [Contains](#contains)\n    - [Within](#within)\n    - [Overlaps](#overlaps)\n    - [Intersect](#intersect)\n    - [IsRange](#isrange)\n  - [Manipulation](#manipulation)\n    - [Add](#add)\n    - [Clone](#clone)\n    - [SnapTo](#snapto)\n    - [Subtract](#subtract)\n  - [Iteration](#iteration)\n    - [by](#by)\n    - [byRange](#byrange)\n    - [reverseBy](#reverseby)\n    - [reverseByRange](#reversebyrange)\n  - [Compare](#compare)\n    - [Equality](#equality)\n    - [Difference](#difference)\n  - [Conversion](#conversion)\n    - [`toDate`](#todate)\n    - [`toString`](#tostring)\n    - [`valueOf`](#valueof)\n- [Running Tests](#running-tests)\n- [Contributors](#contributors)\n- [License](#license)\n\n<!-- END doctoc generated TOC please keep comment here to allow auto update -->\n\n\n## Installation\n\nmoment-range works in both the browser and [node.js][node].\n\n### Node / NPM\n\nInstall via npm:\n\n``` sh\nnpm install --save moment-range\n```\n\n**ES6:**\n\n``` js\nimport Moment from 'moment';\nimport { extendMoment } from 'moment-range';\n\nconst moment = extendMoment(Moment);\n```\n\n**CommonJS:**\n\n``` js\nconst Moment = require('moment');\nconst MomentRange = require('moment-range');\n\nconst moment = MomentRange.extendMoment(Moment);\n```\n\n### Browser\n\n``` html\n<script src=\"moment.js\"></script>\n<script src=\"moment-range.js\"></script>\n```\n\n``` js\nwindow['moment-range'].extendMoment(moment);\n```\n\nThanks to the fine people at [cdnjs][cdnjs], you can link to moment-range from\nthe [cdnjs servers][cdnjs-moment-range].\n\n\n### Older browsers and IE11\n\nThis library makes use of `Symbol.iterator` to provide the [iteration\nprotocols] now that there is [broad support] for them, if you need to support\nolder browsers (specifically IE11) you will need to include a polyfill. Any of\nthe following should work, depending on your project configuration:\n\n* [babel runtime transform plugin]\n* [babel polyfill]\n* https://github.com/medikoo/es6-iterator\n* https://github.com/zloirock/core-js\n\n\n## Examples\n\n### Create\n\nCreate a date range:\n\n``` js\nconst start = new Date(2012, 0, 15);\nconst end   = new Date(2012, 4, 23);\nconst range = moment.range(start, end);\n```\n\nYou can also create a date range with moment objects:\n\n``` js\nconst start = moment('2011-04-15', 'YYYY-MM-DD');\nconst end   = moment('2011-11-27', 'YYYY-MM-DD');\nconst range = moment.range(start, end);\n```\n\nArrays work too:\n\n``` js\nconst dates = [moment('2011-04-15', 'YYYY-MM-DD'), moment('2011-11-27', 'YYYY-MM-DD')];\nconst range = moment.range(dates);\n```\n\nYou can also create a range from an [ISO 8601 time interval][interval] string:\n\n``` js\nconst timeInterval = '2015-01-17T09:50:04+00:00/2015-04-17T08:29:55+00:00';\nconst range = moment.range(timeInterval);\n```\n\nYou can also create a range from the start until the end of a named interval:\n\n``` js\nconst date = moment('2011-04-15', 'YYYY-MM-DD');\nconst range = date.range('month');\n```\n\nYou can also create open-ended ranges which go to the earliest or latest possible date:\n\n``` js\nconst rangeUntil = moment.range(null, '2011-05-05');\nconst rangeFrom = moment.range('2011-03-05');\nconst rangeAllTime = moment.range();\n```\nNote that any falsy value except 0 is treated as a missing date, resulting in an open-ended range.\n\n*Note:* Dates and moment objects both use a timestamp of 00:00:000 if none is\nprovided. To ensure your range includes any timestamp for the given end date,\nuse `.setHours(23,59,59,999)` when constructing a Date object, or\n`.endOf('day')` when constructing a moment object.\n\n#### rangeFromInterval\n\nYou can also create a range between an interval and a specified date. This accepts positive or negative values\nfor `count` and the date will default to _now_ if not provided.\n\n``` js\nconst interval = 'month';\nconst count = 4;\nconst date = moment('2017-07-20');\n\nconst range1 = moment.rangeFromInterval(interval, count, date);  // moment.range('2017-07-20', '2017-11-20')\nconst range2 = moment.rangeFromInterval('month', -2, date);      // moment.range('2017-05-20', '2017-07-20')\n```\n\nNote: The date can be provided as a Date, String, or Moment.\nWhen using a negative interval, the date provided will be set as the end of the range.\n\n#### parseZoneRange\n\n**DEPRECATED** in `4.0.0`: Replaced by `rangeFromISOString` to follow naming conventions.\n\n#### rangeFromISOString\n\nConverts an [ISO 8601 time interval string][interval] into a date range while\npreserving the time zones using [moment.parseZone][parseZone].\n\n``` js\nconst interval = '2015-01-17T09:50:00+03:00/2015-04-17T08:29:55-04:00';\nconst range = moment.rangeFromISOString(interval);\n\nrange.toString(); // '2015-01-17T09:50:00+03:00/2015-04-17T08:29:55-04:00'\n```\n\n### Attributes\n\nYou can access the start and end moments of the range easily enough:\n\n``` js\nconst start = new Date(2012, 0, 15);\nconst end   = new Date(2012, 4, 23);\nconst range = moment.range(start, end);\n\nrange.start  // moment\nrange.end  // moment\n```\n\n### Querying\n\nMany of the following examples make use of these moments:\n\n``` js\nconst a = moment('2016-03-10');\nconst b = moment('2016-03-15');\nconst c = moment('2016-03-29');\nconst d = moment('2016-04-01');\n```\n\n#### Adjacent\n\nCheck if two ranges are touching but not overlapping:\n\n``` js\n\nconst range1 = moment.range(a, b);\nconst range2 = moment.range(b, c);\nconst range3 = moment.range(c, d);\n\nrange1.adjacent(range2) // true\nrange1.adjacent(range3) // false\n```\n\n#### Center\n\nCalculate the center of a range:\n\n``` js\nconst start = new Date(2011, 2, 5);\nconst end   = new Date(2011, 3, 5);\nconst range = moment.range(start, end);\n\nrange.center(); // 1300622400000\n```\n\n#### Contains\n\nCheck to see if your range contains a date/moment. By default the start and end\ndates are included in the search. E.g.:\n\n``` js\nconst range = moment.range(a, c);\n\nrange.contains(a); // true\nrange.contains(b); // true\nrange.contains(c); // true\nrange.contains(d); // false\n```\n\nYou can also control whether the start or end dates should be excluded from the\nsearch with the `excludeStart` and `excludeEnd` options:\n\n``` js\nconst range = moment.range(a, c);\n\nrange.contains(a); // true\nrange.contains(a, { excludeStart: true }); // false\nrange.contains(c); // true\nrange.contains(c, { excludeEnd: true; }); // false\n```\n\n**DEPRECATED** in `4.0.0`: The `exclusive` options is used to indicate if the start/end of\nthe range should be excluded when testing for inclusion:\n\n**Note**: You can obtain the same functionality by setting `{ excludeStart:\ntrue, excludeEnd: true }`\n\n``` js\nrange.contains(c); // true\nrange.contains(c, { exclusive: false }); // true\nrange.contains(c, { exclusive: true }); // false\n```\n\n#### Within\n\nFind out if your moment falls within a date range:\n\n``` js\nconst range = moment.range(a, c);\n\nb.within(range); // true\n```\n\n#### Overlaps\n\nDoes it overlap another range?\n\n``` js\nconst range1 = moment.range(a, c);\nconst range2 = moment.range(b, d);\nrange1.overlaps(range2); // true\n```\n\nInclude adjacent ranges:\n\n``` js\nconst range1 = moment.range(a, b);\nconst range2 = moment.range(b, c);\n\nrange1.overlaps(range2)                      // false\nrange1.overlaps(range2, { adjacent: false }) // false\nrange1.overlaps(range2, { adjacent: true })  // true\n```\n\n#### Intersect\n\nWhat is the intersecting range?\n\n``` js\nconst range1 = moment.range(a, c);\nconst range2 = moment.range(b, d);\nrange1.intersect(range2); // moment.range(b, c)\n```\n\n#### IsRange\n\nIs it a Range?\n\n``` js\nmoment.isRange(range); // true\nmoment.isRange(IamNotRange); // false\n```\n\n### Manipulation\n\n#### Add\n\nAdd/combine/merge overlapping or adjacent ranges.\n\n``` js\nconst range1 = moment.range(a, c);\nconst range2 = moment.range(b, d);\nrange1.add(range2); // moment.range(a, d)\n\nconst range3 = moment.range(a, b);\nconst range4 = moment.range(c, d);\nrange3.add(range4); // null\n```\n\nInclude adjacent ranges:\n\n``` js\nconst range1 = moment.range(a, b);\nconst range2 = moment.range(b, c);\n\nrange1.add(range2); // null\nrange1.add(range2, { adjacent: false }); // null\nrange1.add(range2, { adjacent: true }); // moment.range(a, c)\n```\n\n#### Clone\n\nDeep clone a range\n\n``` js\nconst range1 = moment.range(a, d);\n\nconst range2 = range1.clone();\nrange2.start.add(2, 'days');\n\nrange1.start.toDate().getTime() === range2.start.toDate().getTime() // false\n```\n\n#### SnapTo\n\nSnap the start and end of a range to a given interval.\n\n``` js\nconst start = moment('2018-01-25 17:05:33');\nconst end = moment('2018-01-28 06:10:00');\n\nconst range1 = moment.range(start, end);\nconst range2 = range1.snapTo('day'); // 2018-01-25T00:00:00 -> 2018-01-28T23:59:59\n\nrange1.diff('days'); // 2\nrange2.diff('days'); // 3\n```\n\n#### Subtract\n\nSubtracting one range from another.\n\n``` js\nconst range_ab = moment.range(a, b);\nconst range_bc = moment.range(b, c);\nconst range_cd = moment.range(c, d);\nconst range_ad = moment.range(a, d);\nrange_ad.subtract(range_bc); // [moment.range(a, b) moment.range(c, d)]\nrange_ac.subtract(range_bc); // [moment.range(a, b)]\nrange_ab.subtract(range_cd); // [moment.range(a, b)]\nrange_bc.subtract(range_bd); // [null]\n```\n\n### Iteration\n\nEach of the iteration methods returns an [Iterable][iterable], providing\na convenient and performant interface to iterating over your ranges by a given\nperiod.\n\n#### by\n\nIterate over your range by a given period. Any of the units accepted by\n[moment.js' `add` method][add] may be used. E.g.: `'years' | 'quarters'\n| 'months' | 'weeks' | 'days' | 'hours' | 'minutes' | 'seconds'\n| 'milliseconds'`\n\n``` js\nconst range = moment.range('2010-01-01', '2015-01-01');\n\nfor (let month of range.by('month')) {\n  month.format('YYYY-MM-DD');\n}\n\nconst years = Array.from(range.by('year'));\nyears.length == 6 // true\nyears.map(m => m.format('YYYY')) // ['2010', '2011', '2012', '2013', '2014', '2015']\n```\n\nIteration also supports excluding the final time slice of the range by setting the\n`excludeEnd` option to `true`. In the example below, the 5:00 -> 6:00 time slice is omitted.\n\n``` js\nconst range = moment.range('2018-01-01 00:00', '2018-01-01 05:30');\n\nconst hours = Array.from(range.by('hour', { excludeEnd: true }));\nhours.length == 5 // true\nhours.map(m => m.format('HH:mm')) // ['00:00', '01:00', '02:00', '03:00', '04:00']\n```\n\nAdditionally it's possible to iterate by a given step that defaults to `1`:\n\n``` js\nconst start  = new Date(2012, 2, 2);\nconst end    = new Date(2012, 2, 6);\nconst range1 = moment.range(start, end);\n\nlet acc = Array.from(range1.by('day', { step: 2 }));\n\nacc.map(m => m.format('DD')) // ['02', '04', '06']\n\nacc = Array.from(range1.by('day', { excludeEnd: true, step: 2 }));\n\nacc.map(m => m.format('DD')) // ['02', '04']\n```\n\nYou can iterate over the span of a range for a period that is entered but not complete by using the [snapTo()](#snapto) method:\n\n``` js\nconst start = moment(\"2017-01-01T13:30:00\");\nconst end = moment(\"2017-01-05T01:45:12\");\nconst r1 = moment.range(start, end);\nconst r2 = r1.snapTo('day');\n\nArray.from(r1.by('days')).map(m => m.format('DD')); // ['01', '02', '03', '04']\nArray.from(r2.by('days')).map(m => m.format('DD')); // ['01', '02', '03', '04', '05']\n```\n\n**DEPRECATED** in `4.0.0`: The `exclusive` options is used to indicate if the\nend of the range should be excluded when testing for inclusion:\n\n**Note**: You can obtain the same functionality by setting `{ excludeEnd: true }`\n\n\n#### byRange\n\n``` js\nconst start = new Date(2012, 2, 1); // 1st\nconst two   = new Date(2012, 2, 2); // 2nd\nconst end   = new Date(2012, 2, 5); // 5th\nconst range1 = moment.range(start, end);\nconst range2 = moment.range(start, two); // One day\n```\n\nIterate by another range:\n\n``` js\nconst acc = Array.from(range1.byRange(range2));\n\nacc.length == 5 // true\nacc.map(m => m.format('DD')) // ['01','02','03','04','05']\n```\n\nExclude the end time slice:\n\n``` js\nconst acc = Array.from(range1.byRange(range2, { excludeEnd: true }));\n\nacc.length == 4 // true\nacc.map(m => m.format('DD')) // ['01','02','03','04']\n```\n\nBy step:\n\n``` js\nlet acc = Array.from(range1.byRange(range2, { step: 2 }));\n\nacc.map(m => m.format('DD')) // ['01', '03', '05']\n\nacc = Array.from(range1.byRange(range2, { excludeEnd, true, step: 2 }));\n\nacc.map(m => m.format('DD')) // ['01', '03']\n```\n\n**DEPRECATED** in `4.0.0`: The `exclusive` options is used to indicate if the\nend of the range should be excluded when testing for inclusion:\n\n**Note**: You can obtain the same functionality by setting `{ excludeEnd: true }`\n\n\n#### reverseBy\n\nIterate over a range in reverse:\n\n``` js\nconst range = moment.range('2012-01-01', '2015-01-01');\nconst acc = Array.from(range.reverseBy('years'));\nacc.map(m => m.format('YYYY')) // ['2015', '2014', '2013', '2012']\n```\n\nExclude the start time slice:\n\n``` js\nconst range = moment.range('2012-01-01', '2015-01-01');\nconst acc = Array.from(range.reverseBy('years', { excludeStart: true }));\nacc.map(m => m.format('YYYY')) // ['2015', '2014', '2013']\n```\n\nBy step:\n\n``` js\nconst start  = new Date(2012, 2, 2);\nconst end    = new Date(2012, 2, 6);\nconst range1 = moment.range(start, end);\n\nlet acc = Array.from(range1.reverseBy('day', { step: 2 }));\n\nacc.map(m => m.format('DD')) // ['06', '04', '02']\n\nacc = Array.from(range1.reverseBy('day', { excludeStart: true, step: 2 }));\n\nacc.map(m => m.format('DD')) // ['06', '04']\n```\n\n**DEPRECATED** in `4.0.0`: The `exclusive` options is used to indicate if the\nstart of the range should be excluded when testing for inclusion:\n\n**Note**: You can obtain the same functionality by setting `{ excludeStart: true }`\n\n\n#### reverseByRange\n\n``` js\nconst start = new Date(2012, 2, 1);\nconst two   = new Date(2012, 2, 2);\nconst end   = new Date(2012, 2, 5);\nconst range1 = moment.range(start, end);\nconst range2 = moment.range(start, two); // One day\n```\n\nIterate by another range in reverse:\n\n``` js\nconst acc = Array.from(range1.reverseByRange(range2));\n\nacc.length == 5 // true\nacc.map(m => m.format('DD')) // ['05', '04', '03', '02', '01']\n```\n\nExclude the start value:\n\n``` js\nconst acc = Array.from(range1.reverseByRange(range2, { excludeStart: true }));\n\nacc.length == 4 // true\nacc.map(m => m.format('DD')) // ['05', '04', '03', '02']\n```\n\nBy step:\n\n``` js\nlet acc = Array.from(range1.reverseByRange(range2, { step: 2 }));\n\nacc.map(m => m.format('DD')) // ['05', '03', '01']\n\nacc = Array.from(range1.reverseByRange(range2, { excludeStart: true, step: 2 }));\n\nacc.map(m => m.format('DD')) // ['05', '03']\n```\n\n**DEPRECATED** in `4.0.0`: The `exclusive` options is used to indicate if the\nstart of the range should be excluded when testing for inclusion:\n\n**Note**: You can obtain the same functionality by setting `{ excludeStart: true }`\n\n\n### Compare\n\nCompare range lengths or add them together with simple math:\n\n``` js\nconst range1 = moment.range(new Date(2011, 2, 5), new Date(2011, 3, 15));\nconst range2 = moment.range(new Date(1995, 0, 1), new Date(1995, 12, 25));\n\nrange2 > range1 // true\n\nrange1 + range2 // duration of both ranges in milliseconds\n\nMath.abs(range1 - range2); // difference of ranges in milliseconds\n```\n\n#### Equality\n\nCheck if two ranges are the same, i.e. their starts and ends are the same:\n\n``` js\nconst range1 = moment.range(new Date(2011, 2, 5), new Date(2011, 3, 15));\nconst range2 = moment.range(new Date(2011, 2, 5), new Date(2011, 3, 15));\nconst range3 = moment.range(new Date(2011, 3, 5), new Date(2011, 6, 15));\n\nrange1.isSame(range2); // true\nrange2.isSame(range3); // false\n\nrange1.isEqual(range2); // true\nrange2.isEqual(range3); // false\n```\n\n#### Difference\n\nThe difference of the entire range given various units.\n\nAny of the units accepted by [moment.js' `add` method][add] may be used.\n\n``` js\nconst start = new Date(2011, 2, 5);\nconst end   = new Date(2011, 5, 5);\nconst range = moment.range(start, end);\n\nrange.diff('months'); // 3\nrange.diff('days');   // 92\nrange.diff();         // 7945200000\n```\n\nOptionally you may specify if the difference should not be truncated. By default it\nmimics moment-js' behaviour and truncates the values:\n\n``` js\nconst d1 = new Date(Date.UTC(2011, 4, 1));\nconst d2 = new Date(Date.UTC(2011, 4, 5, 12));\nconst range = moment.range(d1, d2);\n\nrange.diff('days')        // 4\nrange.diff('days', false) // 4\nrange.diff('days', true)  // 4.75\n```\n\n`#duration` is an alias for `#diff` and they may be used interchangeably.\n\n### Conversion\n\n#### `toDate`\n\nConverts the `DateRange` to an `Array` of the start and end `Date` objects.\n\n``` js\nconst start = new Date(2011, 2, 5);\nconst end   = new Date(2011, 5, 5);\nconst range = moment.range(start, end);\n\nrange.toDate(); // [new Date(2011, 2, 5), new Date(2011, 5, 5)]\n```\n\n#### `toString`\n\nConverting a `DateRange` to a `String` will format it as an [ISO 8601 time\ninterval][interval]:\n\n``` js\nconst start = '2015-01-17T09:50:04+00:00';\nconst end   = '2015-04-17T08:29:55+00:00';\nconst range = moment.range(moment.utc(start), moment.utc(end));\n\nrange.toString() // '2015-01-17T09:50:04+00:00/2015-04-17T08:29:55+00:00'\n```\n\n#### `valueOf`\n\nThe difference between the end date and start date in milliseconds.\n\n``` js\nconst start = new Date(2011, 2, 5);\nconst end   = new Date(2011, 5, 5);\nconst range = moment.range(start, end);\n\nrange.valueOf(); // 7945200000\n```\n\n## Running Tests\n\nClone this bad boy:\n\n``` sh\ngit clone https://git@github.com/rotaready/moment-range.git\n```\n\nInstall the dependencies:\n\n``` sh\nyarn install\n```\n\nDo all the things!\n\n``` sh\nyarn run check\nyarn run test\nyarn run lint\n```\n\n## Contributors\n\n- [**Adam Biggs**](https://github.com/adambiggs) (http://lightmaker.com)\n- [**Mats Julian Olsen**](https://github.com/mewwts)\n- [**Matt Patterson**](https://github.com/fidothe) (http://reprocessed.org/)\n- [**Wilgert Velinga**](https://github.com/wilgert) (http://neocles.io)\n- [**Tomasz Bak**](https://github.com/tb) (http://twitter.com/tomaszbak)\n- [**Stuart Kelly**](https://github.com/stuartleigh)\n- [**Jeremy Forsythe**](https://github.com/jdforsythe)\n- [**Александр Гренишин**](https://github.com/nd0ut)\n- [**@scotthovestadt**](https://github.com/scotthovestadt)\n- [**Thomas van Lankveld**](https://github.com/thomasvanlankveld)\n- [**nebel**](https://github.com/pronebel)\n- [**Kevin Ross**](https://github.com/rosskevin) (http://www.alienfast.com)\n- [**Thomas Walpole**](https://github.com/twalpole)\n- [**Jonathan Kim**](https://github.com/jkimbo) (http://jkimbo.co.uk)\n- [**Tymon Tobolski**](https://github.com/teamon) (http://teamon.eu)\n- [**Aristide Niyungeko**](https://github.com/aristiden7o)\n- [**Bradley Ayers**](https://github.com/bradleyayers)\n- [**Ross Hadden**](https://github.com/rosshadden) (http://rosshadden.github.com/resume)\n- [**Victoria French**](https://github.com/victoriafrench)\n- [**Jochen Diekenbrock**](https://github.com/JochenDiekenbrock)\n\n\n## License\n\nmoment-range is [UNLICENSED][unlicense].\n\n[add]: http://momentjs.com/docs/#/manipulating/add/\n[babel runtime transform plugin]: https://babeljs.io/docs/plugins/transform-runtime\n[babel polyfill]: https://babeljs.io/docs/usage/polyfill\n[broad support]: http://kangax.github.io/compat-table/es6/#test-well-known_symbols_Symbol.iterator,_existence_a_href=_https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/iterator_title=_MDN_documentation_img_src=_../mdn.png_alt=_MDN_(Mozilla_Development_Network)_logo_width=_15_height=_13_/_/a_nbsp;\n[cdnjs]: https://github.com/cdnjs/cdnjs\n[cdnjs-moment-range]: https://cdnjs.com/libraries/moment-range\n[interval]: http://en.wikipedia.org/wiki/ISO_8601#Time_intervals\n[iterable]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#Syntaxes_expecting_iterables\n[iteration protocols]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols\n[moment]: http://momentjs.com/\n[node]: http://nodejs.org/\n[unlicense]: http://unlicense.org/\n[parseZone]: https://momentjs.com/docs/#/parsing/parse-zone/\n","repository":{"url":"https://git@github.com/rotaready/moment-range.git","type":"git"},"users":{"nuwaio":true,"sorin89":true,"faraoman":true,"jonathas":true,"mattchue":true,"princetoad":true,"vparaskevas":true,"htzhao200744":true,"kriswallsmith":true,"sarfarazsajjad":true},"bugs":{"url":"https://github.com/rotaready/moment-range/issues"},"license":"Unlicense","versions":{"0.1.0":{"name":"moment-range","version":"0.1.0","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@0.1.0","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"name":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"b3d5802cf10423de31507800f4ff6f53bed554d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-0.1.0.tgz","integrity":"sha512-et61ChnrHrVdJ5dImBKqlXaMzR31wMeM3ZctUGxlizQ+Tfa7ItE/bkrVAC8nuDRZtjK+B2dwDXiUcHFF5mZZsg==","signatures":[{"sig":"MEQCIFz9PBH65jMMTcQqlMFmfBGjwqRR+mCOZen7g9UnkuJgAiBm3ol9m7XbIfuFNgrbUcj94tbxukdkQd0I2LVGhUoxhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"git://github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.1.18","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"v0.6.8","dependencies":{"moment":"1.3.0"},"_defaultsLoaded":true,"devDependencies":{"mocha":"1.0.3","should":"0.6.3","coffee-script":"~1.3.3"},"_engineSupported":true,"optionalDependencies":{}},"0.1.1":{"name":"moment-range","version":"0.1.1","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@0.1.1","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":"https://github.com/gf3/moment-range/issues","dist":{"shasum":"1fdec5ab44e548d6678886c75e71828d1f4122af","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-0.1.1.tgz","integrity":"sha512-UCQXPbAd++uTHTEhQfM0h7sGAl/VcPpv5IvCknmbt1Ml9R+Xa0qMeaqFarOoRQhdmTU4EstGUwz/PsBNrTYDiQ==","signatures":[{"sig":"MEQCIFlVfUDxzssqIkzjh8yGe/CaGsw8XP69qRVKeTWCQkzVAiAqA/KIMyDbRg+Vn/W6YCeHNp9apHs63Pq5RkZhP5ugjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","engines":{"node":"*"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":"1.3.0"},"devDependencies":{"mocha":"1.3.0","should":"0.6.3","coffee-script":"~1.3.3"}},"0.1.2":{"name":"moment-range","version":"0.1.2","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@0.1.2","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":"https://github.com/gf3/moment-range/issues","dist":{"shasum":"988a2de57506a846761b0be4ca7d9b773f2c2fe1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-0.1.2.tgz","integrity":"sha512-9VlvCtCjvNrI6fmSGJirJRsRkRWXDtKj8XckmxFYkXws4rhK9klXCBouX22ISC5GCnCR5N8rg1T8uxBTH5YdqA==","signatures":[{"sig":"MEUCIQDV2HFixEY85LsMr3DFSqTL8wGh3KlqIibKxp8TNkbIBwIgcjIewC1sCLZbcAooYAT/7ZVVcFXqdCz9qJktcavsnFE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.1.63","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":"1.3.0"},"devDependencies":{"mocha":"1.3.0","should":"0.6.3","coffee-script":"~1.3.3"}},"0.1.3":{"name":"moment-range","version":"0.1.3","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@0.1.3","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":"https://github.com/gf3/moment-range/issues","dist":{"shasum":"998e1bfabe05b3f7a0950e88e54d4c559a2ff746","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-0.1.3.tgz","integrity":"sha512-v9Dvtl4aufe57R8tzL+m1NrqLCkes1O60YJ9kn0HrkUyejVCVbyKtFijBAsupkNvDW1l+4OdpoNgfFRzB0HviA==","signatures":[{"sig":"MEQCIEZXldaqyFHykZwucZT+nDhj/8MLq/oboBPZPZfMWPZpAiAGV34F6p0otjFRIU2rXVHosF3ln4INFwN6DB943ETl3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.1.65","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":"1.3.0"},"devDependencies":{"mocha":"1.3.0","should":"0.6.3","coffee-script":"~1.3.3"}},"0.1.4":{"name":"moment-range","version":"0.1.4","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@0.1.4","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":"https://github.com/gf3/moment-range/issues","dist":{"shasum":"2302abf17216d71f5d45e00f9b0095faaafc880b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-0.1.4.tgz","integrity":"sha512-o8pjJgLpgKaBsFG4U1YnkT+xzVBpdnI8zpsvRb/tEkijoZCfrsu8Vh5xRiCWiabLmsxcIxxZFBVs69Xdssu+qg==","signatures":[{"sig":"MEUCIQDiGqLUkpjQzp8HuSrcy1Uo0FwNsyMLMVzSjIyzmm+psAIgelrqqbKPe7UhpPpjQ2Sor/9ljYiKeHJ7j0apT0jJWxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.1.65","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":"1.3.0"},"devDependencies":{"mocha":"1.3.0","should":"0.6.3","coffee-script":"~1.5"}},"0.1.5":{"name":"moment-range","version":"0.1.5","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@0.1.5","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"1cb4995a6b2b9792093999fa6470028d1322468e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-0.1.5.tgz","integrity":"sha512-9I1V+WNFfyBELBxj5I/Kq+PjdEX0IqGv5AV2E2w6uGKI6Ul2ntNbMGvv7jtuLpN1r2MpWMuM/H2DhJG+TflDeQ==","signatures":[{"sig":"MEUCIB8N7PEkjTbpmCrTbWCDYdBYR3N717e12/e5AccQX75/AiEAzpRNT9KvnkG8no94btbYvaBh33JJt+6YJnHkpkRotvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.2.24","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":"1.5.0"},"devDependencies":{"mocha":"1.3.0","should":"0.6.3","coffee-script":"~1.5"}},"0.1.7":{"name":"moment-range","version":"0.1.7","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@0.1.7","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"9767f59d85b626a28a54e303bf7caea09ca6a5c1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-0.1.7.tgz","integrity":"sha512-YeVoDKbXVpiHLaKEALlL19oao2Z2RN5bTtzYKCqr8kUHVJRWI5j4Uz9gFtz7OgKmUAhbH1Foyn/DHhHDi1y/HA==","signatures":[{"sig":"MEYCIQD43ZBha9/D2Lk/SN59rzfpVq3R9LvowGq+hunUTENStgIhAM5L/r32Yoh3aTwedeR93CTfnmr38P6eR0eR+nOiQvhx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.2.24","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"mocha":"1.3.0","should":"0.6.3","coffee-script":"~1.6"}},"1.0.0":{"name":"moment-range","version":"1.0.0","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.0","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"31270234248922edbed5d7778d2106b436dd463e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.0.tgz","integrity":"sha512-/x50sRZEg+MZodnFZZkaNdgvJetI3fj0aun+2ZMBz8yARaDWMKbM/9hrTxU2fLtB1VRWbocYDWJCUslqtyoBCQ==","signatures":[{"sig":"MEYCIQD96SRH1RBLspAxkK6UVYG64G1Teg8Feg1iA7Wga/MJGAIhAJ4P37jY9i8oI4ADEqr2YtSpoNzp3TxAXIDOaoR5jj8H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.3.26","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"1.3.0","should":"0.6.3","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0"}},"1.0.1":{"name":"moment-range","version":"1.0.1","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.1","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"8d78bbfbc37ed2244b4acc304643f57f23f7fc25","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.1.tgz","integrity":"sha512-uTqdzh3AE53YAcixF08HC3QlhQFe1qMGAoj4LON/gzZc4mRMxgc0u7uAtaduHHzXg7f1EAaO8Li8ZCGcV8ZcpA==","signatures":[{"sig":"MEUCIDm2e5eCAHQ8vHh96fbjjiFrKJlAjeoe3qFEO7DvQD47AiEA1Dc9bNqHxqAmyNUzqYYo8OXIfpPtNzrZ6AphTEBlmBY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.3.26","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"1.3.0","should":"0.6.3","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0"}},"1.0.2":{"name":"moment-range","version":"1.0.2","author":{"url":"http://gf3.ca","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.2","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"ac20408cf8cf6c488d157df882bdd21ce3051b2f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.2.tgz","integrity":"sha512-/K5lUmQgIuuzjfW8RgtHWScML+1VKBByrfQX4z7H+xTXn2BE1RwQ22xhTtKPWuELshuEkQ74qb2wl5rOtiFlkQ==","signatures":[{"sig":"MEUCIASeImsqa3aWAV0WuqmK2lJruuorVYTen+VjSJbgBpChAiEA8uA/m22GVMSkSjQqT6lh0lUecMoNTNiqfkcf3+euKZs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","engines":{"node":"*"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.3.26","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"1.3.0","should":"0.6.3","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0"}},"1.0.3":{"name":"moment-range","version":"1.0.3","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.3","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"2b36d3dda7aa42c0e1453e5e41ba056fc3b6bc2e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.3.tgz","integrity":"sha512-k6XIN78ye70Ps1B5FpP1Mic1NrSdAqUmCdi45wium6ppy+BsR3ahhUjduMi+Fi0x30CX8BU0bEYATx7gU7OWwQ==","signatures":[{"sig":"MEUCIQCnToydDqrGU9OjOg3tz1kUlFelECDTx0Ex0LNG1498EQIgFTJBROIrQK+cRqBCUmUDsElbV/qN/iCAPJMhU48voy8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"2b36d3dda7aa42c0e1453e5e41ba056fc3b6bc2e","engines":{"node":"*"},"gitHead":"4d30aaa2879e7bb22a15e69782ea9bf63fbc94b1","scripts":{"test":"grunt mochaTest","build":"grunt coffee umd"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.0.0","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"1.3.0","should":"0.6.3","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0"}},"1.0.4":{"name":"moment-range","version":"1.0.4","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.4","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"bd18b7fb93872e489b071a566c220f096c3722c4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.4.tgz","integrity":"sha512-/qrBFd1Xdvi2oN3jVt33/10RRFjVaGA9rqVR/UZJAG1I/+/54LwIX9OynjVBUC3MJ9sMr1fJGRMrLQVFAfFgIg==","signatures":[{"sig":"MEUCIQCFnYjnADZ+gg6hwkXEsPNDc9d7vXGfkKcAKSgZwbvw8wIgIrVf9XSF4GlDN0NuvGK77veJIB1pCxAM9NKH4g1j4os=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"bd18b7fb93872e489b071a566c220f096c3722c4","engines":{"node":"*"},"gitHead":"dad2510213da9663d5336a11259cacd0a4c2f0b9","scripts":{"test":"grunt mochaTest","build":"grunt coffee umd"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.0.0","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"1.3.0","should":"0.6.3","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0"}},"1.0.5":{"name":"moment-range","version":"1.0.5","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.5","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"1f2088e984c881bc82d56f646fabb4b9e0d21561","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.5.tgz","integrity":"sha512-GZG/lolUCuvPp7AzuWfmhOFCenUxgGOCtKdnqq9sCpLQm5Rp445nm5IkTHUHhw1V/qI4zexg0DSXUM52Ncs+4g==","signatures":[{"sig":"MEUCIESB5+uDawTdp0NiN79594pXU4hmXNxv3ArxcYI4qdQyAiEAqpQWqcE+lpZgPQUp4zN+4uvx9EqlPZmKdlvOs0UMkxQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"1f2088e984c881bc82d56f646fabb4b9e0d21561","engines":{"node":"*"},"gitHead":"203d9c62b6726f54aaeb959fa6f90bcf5b53982d","scripts":{"test":"grunt mochaTest","build":"grunt coffee umd uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.0.0","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"1.3.0","should":"0.6.3","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0","grunt-contrib-uglify":"^0.6.0"}},"1.0.6":{"name":"moment-range","version":"1.0.6","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.6","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"b038540fe32b0c5831fa3ab041b16e3eab4655ef","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.6.tgz","integrity":"sha512-jWbN4NkTomCyhQPIpXH0QgDB47EUdYxVzBMnqABC7e48NwXiCFsMmo5D3tfx7VE6JATO3TfD+2/joMeJa7klhA==","signatures":[{"sig":"MEUCIQCoayBX1WHJvHbd04qQXqKnc7hwcoLACDP2HEohFIb8DAIgEnKEi99lwXdhxEuAVT3TMHT5cUOYfoAzLloC9c/EyQs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"b038540fe32b0c5831fa3ab041b16e3eab4655ef","engines":{"node":"*"},"gitHead":"d091cc44274b0b5d2b04d2ff1e5dc52d05a286f0","scripts":{"test":"grunt mochaTest","build":"grunt coffee umd uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.4.28","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"^2.1.0","should":"^4.6.5","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0","grunt-contrib-uglify":"^0.6.0"}},"1.0.7":{"name":"moment-range","version":"1.0.7","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.7","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"635cd0d13802c314e34221bd8653b7c720158b68","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.7.tgz","integrity":"sha512-XQ+9jkgEohZKKNkP8CFS7Gxfy8fP2xukgqNUWd23V1jiBwpXflyvZVh3kBE17AtswF2X8dTFO50vGw6a7H56KQ==","signatures":[{"sig":"MEUCIQCRzjbncXqUQe5I+8AG/8zA6wtW4uEwoHMbKQfhx7HhPwIgTTrjvqaqxfbv8A7Y7vGR8zD5JRN3tAf6/30hCh6JslI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"635cd0d13802c314e34221bd8653b7c720158b68","engines":{"node":"*"},"gitHead":"0c304d9030755af2b2518f06147954bde4bacc4e","scripts":{"test":"grunt mochaTest","build":"grunt coffee umd uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"1.4.28","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"^2.1.0","should":"^5.0.1","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0","grunt-contrib-uglify":"^0.6.0"}},"1.0.8":{"name":"moment-range","version":"1.0.8","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.8","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"35030814eeaeb332be6a596d2ce51e61d68fcba9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.8.tgz","integrity":"sha512-uyDfw5jMP1xHE0o1cV0FRKjxL9U2rHAuJyCRzp7TqxDJKQIhEx538HJPzhIuIzo+xg04ZGJS5ED4/elILneIqg==","signatures":[{"sig":"MEUCIQC1bm7PG60Rzn5NDrCCwcQf2kBAwbtScS+B7tNOuvL8NAIgVKpSwsiVx5px6rBQZITuoHX70nfxJEymU5ZNxph+o5c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"35030814eeaeb332be6a596d2ce51e61d68fcba9","engines":{"node":"*"},"gitHead":"7637cc2cb9db6697eccabef9bd2595dead9463d2","scripts":{"test":"grunt mochaTest","build":"grunt coffee umd uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.5.1","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"0.12.0","dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"^2.1.0","should":"^5.0.1","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0","grunt-contrib-uglify":"^0.6.0"}},"1.0.9":{"name":"moment-range","version":"1.0.9","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.0.9","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"22b94d696ccd0ba3e5c49e0526682c3a79aca787","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.0.9.tgz","integrity":"sha512-q+B8tAXFx+KmtAsPdyxrFN0qHsoPiiX9aods8u+hxdG2FvtyIcX+/jDgNDKpLxjDuTqykz/2TLgKJu9pDJVOjA==","signatures":[{"sig":"MEUCIBA40CVxVniM8RtfLDe7g8TlKlP8Dx/BFFcAOZ6PLQzaAiEA6wAI3+Kg8LFELS509gSwtPpBwZsYr9TpLRd5uAQ6S0M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"22b94d696ccd0ba3e5c49e0526682c3a79aca787","engines":{"node":"*"},"gitHead":"c1d19f20ab6a4c673d7a8007601a1bbc1fb08b86","scripts":{"test":"grunt mochaTest","build":"grunt coffee umd uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.5.1","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"0.12.0","dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"^2.1.0","should":"^5.0.1","grunt-umd":"~1.3.0","coffee-script":"~1","grunt-mocha-test":"~0.7.0","grunt-contrib-coffee":"~0.7.0","grunt-contrib-uglify":"^0.6.0"}},"1.1.0":{"name":"moment-range","version":"1.1.0","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.1.0","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"99df62c9326a7c6e9d0f798c6afb6e2ba167756f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.1.0.tgz","integrity":"sha512-dZdSjTSwKwOMMadjcgNI2sspG0yiOLK+imtp3EQRu5VNcqCJrTTjHIRHdBXWWSod9lEFXcsIlG/w5sjCrF0GHQ==","signatures":[{"sig":"MEUCIQDr57Zkmg2zUdU1uqsZdqlT2x54oCYbEImUw3Z4c5PX9gIgWYpxPw3uffY8R+fZsvVy9wBLmfiH/VWdP+KLaWtKq04=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"99df62c9326a7c6e9d0f798c6afb6e2ba167756f","engines":{"node":"*"},"gitHead":"8fb30e8e45f03af37ac8dd2895fd32790ed50b47","scripts":{"test":"grunt mochaTest","build":"grunt es6transpiler browserify uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.5.1","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"0.12.0","devDependencies":{"grunt":"~0.4.1","mocha":"^2.1.0","should":"^5.0.1","grunt-cli":"^0.1.13","grunt-browserify":"^3.8.0","grunt-mocha-test":"~0.7.0","grunt-contrib-uglify":"^0.6.0","grunt-es6-transpiler":"^1.0.2"},"peerDependencies":{"moment":">= 1"}},"1.1.1":{"name":"moment-range","version":"1.1.1","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.1.1","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"eb175dacdcadd1ee54f11db8d6ac581a28f764a3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.1.1.tgz","integrity":"sha512-oakHCSd1s9XYaS55RItPS5DoczhVN/LKkrIQt930GmVHBijRgdrDrRsX2MXCtG2HOFavQ3QWjO29wMHclKVP9g==","signatures":[{"sig":"MEQCIFnDGQ0ZhKSt0HUafm5FPA4AvfNB4EW8E8WQ6KmtuervAiBKR9XYhRSopM18lnx5gef5RipvV7HYdiW2+lAIE+EJnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"eb175dacdcadd1ee54f11db8d6ac581a28f764a3","engines":{"node":"*"},"gitHead":"c41c9b0c363bd726d21f0db35992ac2b3a9a991a","scripts":{"test":"grunt mochaTest","build":"grunt es6transpiler browserify uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.5.1","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"0.12.0","devDependencies":{"grunt":"~0.4.1","mocha":"^2.1.0","should":"^5.0.1","grunt-cli":"^0.1.13","grunt-browserify":"^3.8.0","grunt-mocha-test":"~0.7.0","grunt-contrib-uglify":"^0.6.0","grunt-es6-transpiler":"^1.0.2"},"peerDependencies":{"moment":">= 1"}},"1.1.2":{"name":"moment-range","version":"1.1.2","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.1.2","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"8b59421c524f3e91eaa4f5c924388500665222a5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.1.2.tgz","integrity":"sha512-+xHqhg6p4UGEyFHUPhAcM7Hp7F7POYaZ4qThVy70BcSmpt/9le2Ajf9G9+PO6QUGphnrHjHskWFeyyKg7yvb8A==","signatures":[{"sig":"MEUCIFRn6pE5NmhvpgEcc79XAl9C5J855AwRTScdxdAOVdzoAiEAmQ1eFmBgJWYx5TcLbkrbNxZfLypMkJyO9Csvdupn8Lg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"8b59421c524f3e91eaa4f5c924388500665222a5","engines":{"node":"*"},"gitHead":"ee9c229c2095412522ae2e45b0fd52399cc6234b","scripts":{"test":"grunt mochaTest","build":"grunt es6transpiler replace umd uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.5.1","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"0.12.0","devDependencies":{"grunt":"~0.4.1","mocha":"^2.1.0","should":"^5.0.1","grunt-cli":"^0.1.13","grunt-umd":"^2.3.3","grunt-mocha-test":"~0.7.0","grunt-text-replace":"^0.4.0","grunt-contrib-uglify":"^0.6.0","grunt-es6-transpiler":"^1.0.2"},"peerDependencies":{"moment":">= 1"}},"1.2.0":{"name":"moment-range","version":"1.2.0","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@1.2.0","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"d9ea8d57192ec5f0787d0fd12595359eed11aaf8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-1.2.0.tgz","integrity":"sha512-u5pFS28M2V31pIsbWBe8eAgSxIDBtxo0cbx80Ua87fK7UsN86tU/m3PWKxt73HkjUfGZsk0T1iyGGoe7YZSA2w==","signatures":[{"sig":"MEUCIFqXQalj+O79niU14dEoevt1/WSCubEF2C18crjxCFevAiEAtUmevVkTHMHV8fIdvyRaZpLOEi3x1m2rHwn24ekOcNU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/moment-range","_from":".","_shasum":"d9ea8d57192ec5f0787d0fd12595359eed11aaf8","engines":{"node":"*"},"gitHead":"b4f32628132bb2aee0fb92dbf6cf13dda1e976c8","scripts":{"test":"grunt mochaTest","build":"grunt es6transpiler replace umd uglify"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.5.1","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"0.12.0","dependencies":{"moment":">= 1"},"devDependencies":{"grunt":"~0.4.1","mocha":"^2.1.0","should":"^5.0.1","grunt-cli":"^0.1.13","grunt-umd":"^2.3.3","grunt-mocha-test":"~0.7.0","grunt-text-replace":"^0.4.0","grunt-contrib-uglify":"^0.6.0","grunt-es6-transpiler":"^1.0.2"}},"2.0.2":{"name":"moment-range","version":"2.0.2","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@2.0.2","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"0250346b38be0db3cec745c1d3dff7b8af8eefec","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-2.0.2.tgz","integrity":"sha512-TvFLzKivp6mxUt3Gm7w1a/B9IosWj8XIB1AdpDd8yUtxrNHRhuret9TlCwwIciOkU+zHIaQP5fLK5zGe8w5AAg==","signatures":[{"sig":"MEUCIQDw+5MuIrcoT7aCx1vXjUun3hL2G1nrseyQwwh0y+evywIgAwqG7Z7mw1KBzc3ZHop6lwbwZe+Bb2O3aYvu7pt1l/E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","_shasum":"0250346b38be0db3cec745c1d3dff7b8af8eefec","engines":{"node":"*"},"gitHead":"0b9b89c7e86adc48fff22265b2f09d11ffebcbc2","scripts":{"test":"grunt mochaTest","build":"grunt es6transpiler replace umd uglify","jsdoc":"jsdoc -c .jsdoc"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.5.1","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"0.12.0","devDependencies":{"grunt":"~0.4.1","jsdoc":"^3.3.0","mocha":"^2.1.0","should":"^5.0.1","grunt-cli":"^0.1.13","grunt-umd":"^2.3.3","grunt-mocha-test":"~0.7.0","grunt-text-replace":"^0.4.0","grunt-contrib-uglify":"^0.6.0","grunt-es6-transpiler":"^1.0.2"},"peerDependencies":{"moment":">= 1"}},"2.0.3":{"name":"moment-range","version":"2.0.3","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@2.0.3","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"b2864b55743856b89f9d3fdaa841b315262df5f3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-2.0.3.tgz","integrity":"sha512-LtvlPrK6+8qnLCcR1ma3FUSeo+7FLcXLhrjp2EAGvGpApXcF4l6mLBjVd0iEA/kbFkOHRo57SmgB3oDuGF6cTw==","signatures":[{"sig":"MEUCIQCY0RBVwlYz3c/P7as0+B3P78qWko/OJ85VDGQYT521hgIgFZIeWtVwDVTODaf/X6Q753nknGZYUkcWys9H+/gT4V8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","_shasum":"b2864b55743856b89f9d3fdaa841b315262df5f3","engines":{"node":"*"},"gitHead":"dbe0325a60b4ae1b3b3d8c7af85aea2dda857d34","scripts":{"test":"grunt mochaTest","build":"grunt es6transpiler replace umd uglify","jsdoc":"jsdoc -c .jsdoc"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"2.5.1","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"0.12.0","devDependencies":{"grunt":"~0.4.1","jsdoc":"^3.3.0","mocha":"^2.1.0","should":"^5.0.1","grunt-cli":"^0.1.13","grunt-umd":"^2.3.3","grunt-mocha-test":"~0.7.0","grunt-text-replace":"^0.4.0","grunt-contrib-uglify":"^0.6.0","grunt-es6-transpiler":"^1.0.2"},"peerDependencies":{"moment":">= 1"}},"2.1.0":{"name":"moment-range","version":"2.1.0","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@2.1.0","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"fd479c41a653b29d4438d0e05dbeebc15af48c33","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-2.1.0.tgz","integrity":"sha512-dnU1e/KFpX1jY1tsZgivCREgsrb7dSDXmi1n/QCtSrOzI5fK5g3VbPRiCGWc9jwRISvRWhKGqsjutGm38ZfKuw==","signatures":[{"sig":"MEUCIQCITPnwIOLBgLHryVm1RWKQm/SF///mJRY74T8jKpDJmwIgd3gP92XjmdGm4XYajDaZhXcS4zxqiucIWPaXaPxgg/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","_shasum":"fd479c41a653b29d4438d0e05dbeebc15af48c33","engines":{"node":"*"},"gitHead":"72e31df65da59e39dbde540c500d8d7da4f82995","scripts":{"test":"grunt mochaTest","build":"grunt es6transpiler replace umd uglify","jsdoc":"jsdoc -c .jsdoc"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"git+https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"3.3.12","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"5.3.0","devDependencies":{"grunt":"~0.4.1","jsdoc":"^3.3.0","mocha":"^2.1.0","moment":">= 1","should":"^5.0.1","grunt-cli":"^0.1.13","grunt-umd":"^2.3.3","grunt-mocha-test":"~0.7.0","grunt-text-replace":"^0.4.0","grunt-contrib-uglify":"^0.6.0","grunt-es6-transpiler":"^1.0.2"},"peerDependencies":{"moment":">= 1"}},"2.2.0":{"name":"moment-range","version":"2.2.0","author":{"url":"http://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@2.2.0","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"b02575778a4ac50a65777939f5c5d757f83fcd85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-2.2.0.tgz","integrity":"sha512-nh2IRdxV+wxiQunifqFVNTSzqNej8HMB/rA8Jxb0CAuhftpjJcRnxrbb30iEs2TLMbcjmXCie4Tsx1JnUomH+g==","signatures":[{"sig":"MEYCIQDEkZ09sGhZ0PZDTtJsn62PxvhieBDZ2lu9Kt4FyuMxPwIhAIH3PNM8UDI+L5OsRYuomwMsl6VjnQmJKQhdfVVZyaiS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","_shasum":"b02575778a4ac50a65777939f5c5d757f83fcd85","engines":{"node":"*"},"gitHead":"1effe5852e7d9312debc6ecb6de334b605bc9fb6","scripts":{"test":"grunt mochaTest","build":"grunt es6transpiler replace umd uglify","jsdoc":"jsdoc -c .jsdoc"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"git+https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"3.3.12","description":"Fancy date ranges for Moment.js","directories":{"lib":"./lib"},"_nodeVersion":"5.3.0","devDependencies":{"grunt":"~0.4.1","jsdoc":"^3.3.0","mocha":"^2.1.0","moment":">= 1","should":"^5.0.1","grunt-cli":"^0.1.13","grunt-umd":"^2.3.3","grunt-mocha-test":"~0.7.0","grunt-text-replace":"^0.4.0","grunt-contrib-uglify":"^0.6.0","grunt-es6-transpiler":"^1.0.2"},"peerDependencies":{"moment":">= 1"},"_npmOperationalInternal":{"tmp":"tmp/moment-range-2.2.0.tgz_1456867644380_0.46856884472072124","host":"packages-12-west.internal.npmjs.com"}},"3.0.0-0":{"name":"moment-range","version":"3.0.0-0","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@3.0.0-0","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"d6992ecc0be7fad2feb80cca2455c02c28283408","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-3.0.0-0.tgz","integrity":"sha512-+yQTi6adZ23zDmL5OD6P9jFGqSSW8RyEWyOEOu8gW0b+Vkt4tlzFqoQnwatjF0VMKwU2gSLuZsrlj5EZBZCLsA==","signatures":[{"sig":"MEUCIQDN8ETLH+OgrAjcZix8KALwFFOmj1jn5wE5GfvVG6iESAIgXmlipXLE99YwPRfkao6zZFzSeM10dXlmUU2e4Xbpoco=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","files":["dist/"],"_shasum":"d6992ecc0be7fad2feb80cca2455c02c28283408","engines":{"node":"*"},"gitHead":"f68c307c51cc8f2fbaf31f940e08cb4f56892643","scripts":{"lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack","doctoc":"doctoc README.md --github","version":"npm run build; cp ./lib/moment-range.js.flow ./dist","prepublish":"npm run build; cp ./lib/moment-range.js.flow ./dist","preversion":"npm run test && npm run lint"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"git+https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"3.10.9","description":"Fancy date ranges for Moment.js","directories":{},"_nodeVersion":"7.2.0","dependencies":{"expect.js":"^0.3.1"},"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","webpack":"^1.13.3","flow-bin":"^0.36.0","babel-core":"^6.18.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^1.8.0","babel-polyfill":"^6.16.0","grunt-text-replace":"^0.4.0","babel-preset-es2015":"^6.18.0","copy-webpack-plugin":"^4.0.1","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range-3.0.0-0.tgz_1483992213383_0.7893932133447379","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"moment-range","version":"3.0.0","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@3.0.0","maintainers":[{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"name":"Adam Biggs","email":"adam.biggs@lightmaker.com"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"name":"Stuart Kelly","email":"stuart.leigh83@gmail.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"name":"Scott Hovestadt","email":"scott.hovestadt@gmail.com"},{"name":"Nebel","email":"nebel08@gmail.com"},{"name":"Aristide Niyungeko","email":"niyungeko@gmail.com"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"name":"Thomas Walpole","email":"twalpole@gmail.com"},{"name":"Daniel Sarfati","email":"daniel@knockrentals.com"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"fd29bf474edd53d7b7a6a216937aafc91903bc67","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-3.0.0.tgz","integrity":"sha512-sUUBbbl0KOAmKOjNlujKUZlesYeBycRkgaciGr6T3Mla0R5A7cfbsxbq53sJPWbDVgCB7Jtyw4ep9/bDH66yjA==","signatures":[{"sig":"MEYCIQCzaSi1Fmh5yc7KoVp4c1ryTfSsFPIG9mOWKieqOFZAIgIhAIZvt5XXsxoVvwSA07lPYlbMUsmLijUtizL9pNu8e9F7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","files":["dist/"],"_shasum":"fd29bf474edd53d7b7a6a216937aafc91903bc67","engines":{"node":"*"},"gitHead":"50f4eb8198cd956bf58bbc993a1467088527b130","scripts":{"flow":"flow","lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack","doctoc":"doctoc README.md --github","version":"npm run build; cp ./declarations/moment-range.js.flow ./dist","prepublish":"npm run build; cp ./declarations/moment-range.js.flow ./dist","preversion":"npm run flow && npm run lint && npm run test"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"git+https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"3.10.9","description":"Fancy date ranges for Moment.js","directories":{},"_nodeVersion":"7.2.0","dependencies":{"expect.js":"^0.3.1"},"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","webpack":"^1.13.3","flow-bin":"^0.36.0","babel-core":"^6.18.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^1.8.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range-3.0.0.tgz_1484585131349_0.9465949553996325","host":"packages-18-east.internal.npmjs.com"}},"3.0.1":{"name":"moment-range","version":"3.0.1","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@3.0.1","maintainers":[{"name":"anonymous","email":"email@adambig.gs"},{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"4899bfb9e68c8db0ccfac7325231fe1acbdba317","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-3.0.1.tgz","integrity":"sha512-FQDogjY8hU3Eeh7RZP1v42lZrIIQ2Fy1RVOhbOfCxlHNT7t2WJg02g4XDLc2lXAkiyUJEZ1IGPOrBH3x58z/lA==","signatures":[{"sig":"MEQCIG67C53MfiRAYduod69BgyOXIzYscpYZ2KO4FuXNMgmzAiBpuMUN7X15AXBtNQZNX53AGzrNWfCXX16Ib9oTgfBxmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","files":["dist/"],"_shasum":"4899bfb9e68c8db0ccfac7325231fe1acbdba317","engines":{"node":"*"},"gitHead":"91a60aa81ef1467973f22161a49e06b95f329fa8","scripts":{"flow":"flow","lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack","doctoc":"doctoc README.md --github","version":"npm run build; cp ./declarations/moment-range.js.flow ./dist","prepublish":"npm run build; cp ./declarations/moment-range.js.flow ./dist","preversion":"npm run flow && npm run lint && npm run test"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"git+https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"4.0.5","description":"Fancy date ranges for Moment.js","directories":{},"_nodeVersion":"7.4.0","dependencies":{"es6-symbol":"^3.1.0"},"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","moment":"^2.17.1","webpack":"^1.13.3","flow-bin":"^0.36.0","expect.js":"^0.3.1","babel-core":"^6.18.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^1.8.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range-3.0.1.tgz_1485880837633_0.6780689344741404","host":"packages-12-west.internal.npmjs.com"}},"3.0.2":{"name":"moment-range","version":"3.0.2","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@3.0.2","maintainers":[{"name":"anonymous","email":"email@adambig.gs"},{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"},{"url":"https://github.com/victoriafrench","name":"Victoria French","email":"victoria.french@cinecove.com"},{"url":"https://github.com/JochenDiekenbrock","name":"Jochen Diekenbrock"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"fc5c7db5e8ea15e455c46c1455c3023b2daf9767","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-3.0.2.tgz","integrity":"sha512-InwBgX6KJQbfhJMBee2whiE/N1lPhPYQqTnuGqqucTy/q/yF4kn8IcdtbXZDh7W42Mnme1N+PWaqu3p2+B+q6w==","signatures":[{"sig":"MEQCIEiO5oe8ekwlY3T95bAp0Xb0Dzvs0mDjLSP/x4WhreeCAiBj3FoYlfVgc/wqzGq2W8jvGk+iH+uWrvk/gBiSqAUCMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","files":["dist/","lib/"],"module":"lib/moment-range.js","_shasum":"fc5c7db5e8ea15e455c46c1455c3023b2daf9767","engines":{"node":"*"},"gitHead":"4e962e9c86f8a3866b7c01064e89a28be4818c9b","scripts":{"flow":"flow","lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack","doctoc":"doctoc README.md --github","version":"npm run build; cp ./declarations/moment-range.js.flow ./dist","prepublish":"npm run build; cp ./declarations/moment-range.js.flow ./dist","preversion":"npm run flow && npm run lint && npm run test"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"git+https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"4.0.5","description":"Fancy date ranges for Moment.js","directories":{},"_nodeVersion":"7.4.0","dependencies":{"es6-symbol":"^3.1.0"},"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","moment":"^2.17.1","webpack":"^2.2.1","flow-bin":"^0.36.0","expect.js":"^0.3.1","babel-core":"^6.18.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^2.0.2","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range-3.0.2.tgz_1486999957370_0.5563321232330054","host":"packages-18-east.internal.npmjs.com"}},"3.0.3":{"name":"moment-range","version":"3.0.3","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":{"url":"https://github.com/gf3/moment-range/raw/master/UNLICENSE","type":"Public Domain"},"_id":"moment-range@3.0.3","maintainers":[{"name":"anonymous","email":"email@adambig.gs"},{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"},{"url":"https://github.com/victoriafrench","name":"Victoria French","email":"victoria.french@cinecove.com"},{"url":"https://github.com/JochenDiekenbrock","name":"Jochen Diekenbrock"}],"homepage":"https://github.com/gf3/moment-range","bugs":{"url":"https://github.com/gf3/moment-range/issues"},"dist":{"shasum":"f7a1567c73228f317469cb33148ea996f79ccb9a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-3.0.3.tgz","integrity":"sha512-pXjnFu1u0Po0DzE9X9AsDLubrclCtYr07iccIvu7x+0JRKFwYNGONtRDpm62IxWNg0OXNcujnEvGzmwhuenvbg==","signatures":[{"sig":"MEQCIFBDjPC0momfg+90IyfFLn6za/5F5erF2P5qLrFjRoSVAiBU1crp7qnW41HAWL6oKB2yVTHu3KABbteOE7vvg9M77g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","_from":".","files":["dist/","lib/"],"_shasum":"f7a1567c73228f317469cb33148ea996f79ccb9a","engines":{"node":"*"},"gitHead":"c2474be0aa1fb3a46e914778af9788f1c18afe93","scripts":{"flow":"flow","lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack","doctoc":"doctoc README.md --github","version":"npm run build; cp ./declarations/moment-range.js.flow ./dist","prepublish":"npm run build; cp ./declarations/moment-range.js.flow ./dist","preversion":"npm run flow && npm run lint && npm run test"},"_npmUser":{"name":"anonymous","email":"gianni@runlevel6.org"},"repository":{"url":"git+https://git@github.com/gf3/moment-range.git","type":"git"},"_npmVersion":"4.0.5","description":"Fancy date ranges for Moment.js","directories":{},"jsnext:main":"lib/moment-range.js","_nodeVersion":"7.4.0","dependencies":{"es6-symbol":"^3.1.0"},"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","moment":"^2.17.1","webpack":"^2.2.1","flow-bin":"^0.36.0","expect.js":"^0.3.1","babel-core":"^6.18.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^2.0.2","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range-3.0.3.tgz_1488325820873_0.12435132637619972","host":"packages-18-east.internal.npmjs.com"}},"3.1.0":{"name":"moment-range","version":"3.1.0","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":"Unlicense","_id":"moment-range@3.1.0","maintainers":[{"name":"anonymous","email":"tristanjm96@gmail.com"},{"name":"anonymous","email":"rhysjc@gmail.com"},{"name":"anonymous","email":"c.holloway@rotaready.com"},{"name":"anonymous","email":"email@adambig.gs"},{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"},{"url":"https://github.com/victoriafrench","name":"Victoria French","email":"victoria.french@cinecove.com"},{"url":"https://github.com/JochenDiekenbrock","name":"Jochen Diekenbrock"}],"homepage":"https://github.com/rotaready/moment-range","bugs":{"url":"https://github.com/rotaready/moment-range/issues"},"dist":{"shasum":"96ab2245939b1c0991f0e4128079843218415c29","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-3.1.0.tgz","integrity":"sha512-BO1Fx1lUqRlVk6xc9ryelyyvqxl7ZEcZkhRCbGroZ/VtEV9cNboLYSC4M+iA5ko/Qpy4BnSMDjP50Xfv1qZMhw==","signatures":[{"sig":"MEYCIQDVaexE7cyBkLbI/+r4VzKLkAbrkifgaXu0KDkoTMtjngIhAL8NmLr1kd/xRevA5wkZ9UVbgeDbL4j2kf1GtCMRJbfK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","files":["dist/","lib/"],"engines":{"node":"*"},"scripts":{"flow":"flow","lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack","doctoc":"doctoc README.md --github","version":"yarn run build; cp ./declarations/moment-range.js.flow ./dist","prepublish":"yarn run build; cp ./declarations/moment-range.js.flow ./dist","preversion":"yarn run flow && yarn run lint && yarn run test"},"_npmUser":{"name":"anonymous","email":"tristanjm96@gmail.com"},"repository":{"url":"https://git@github.com/rotaready/moment-range.git","type":"git"},"description":"Fancy date ranges for Moment.js","directories":{},"jsnext:main":"lib/moment-range.js","licenseText":"This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to <http://unlicense.org/>\n\n","dependencies":{"es6-symbol":"^3.1.0"},"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","moment":"^2.17.1","webpack":"^2.2.1","flow-bin":"^0.36.0","expect.js":"^0.3.1","babel-core":"^6.18.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^2.0.2","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range-3.1.0.tgz_1512408566901_0.7653017775155604","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"moment-range","version":"3.1.1","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":"Unlicense","_id":"moment-range@3.1.1","maintainers":[{"name":"anonymous","email":"tristanjm96@gmail.com"},{"name":"anonymous","email":"rhysjc@gmail.com"},{"name":"anonymous","email":"c.holloway@rotaready.com"},{"name":"anonymous","email":"email@adambig.gs"},{"name":"anonymous","email":"gianni@runlevel6.org"}],"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"},{"url":"https://github.com/victoriafrench","name":"Victoria French","email":"victoria.french@cinecove.com"},{"url":"https://github.com/JochenDiekenbrock","name":"Jochen Diekenbrock"}],"homepage":"https://github.com/rotaready/moment-range","bugs":{"url":"https://github.com/rotaready/moment-range/issues"},"dist":{"shasum":"5c52cf9fab29db9dd9bcd86d37e52b04a7a7271a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-3.1.1.tgz","integrity":"sha512-VqJIVDs6wUzCjTkSmkOwqRseqAo3+En2rdsKEKIWtPxzo+uJdRQGjU2HWJr6/zL3fZJdNtpddyDkB4Pfyg8KLQ==","signatures":[{"sig":"MEUCIDe9IW6lfa6dc4IujnPgvdnJaSN7uM8QsjoiP2y+ksFcAiEAluWCGqwCoQ9oiup68WdsDHUnTCbww4fSsXIR8lGqYX0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./dist/moment-range","files":["dist/","lib/"],"engines":{"node":"*"},"scripts":{"flow":"flow","lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack","doctoc":"doctoc README.md --github","version":"yarn run build; cp ./declarations/moment-range.js.flow ./dist","prepublish":"yarn run build; cp ./declarations/moment-range.js.flow ./dist","preversion":"yarn run flow && yarn run lint && yarn run test"},"_npmUser":{"name":"anonymous","email":"tristanjm96@gmail.com"},"repository":{"url":"https://git@github.com/rotaready/moment-range.git","type":"git"},"description":"Fancy date ranges for Moment.js","directories":{},"jsnext:main":"lib/moment-range.js","licenseText":"This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to <http://unlicense.org/>\n\n","dependencies":{"es6-symbol":"^3.1.0"},"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","moment":"^2.17.1","webpack":"^2.2.1","flow-bin":"^0.36.0","expect.js":"^0.3.1","babel-core":"^6.18.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^2.0.2","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range-3.1.1.tgz_1516398287683_0.970723849022761","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"moment-range","version":"4.0.0","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":"Unlicense","_id":"moment-range@4.0.0","maintainers":[{"name":"anonymous","email":"email@adambig.gs"},{"name":"anonymous","email":"c.holloway@rotaready.com"},{"name":"anonymous","email":"gianni@runlevel6.org"},{"name":"anonymous","email":"rhysjc@gmail.com"},{"name":"anonymous","email":"tristanjm96@gmail.com"}],"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"},{"url":"https://github.com/victoriafrench","name":"Victoria French","email":"victoria.french@cinecove.com"},{"url":"https://github.com/JochenDiekenbrock","name":"Jochen Diekenbrock"}],"homepage":"https://github.com/rotaready/moment-range","bugs":{"url":"https://github.com/rotaready/moment-range/issues"},"dist":{"shasum":"f60ed56cc7e1fb0cde5d06eb8da760226c5392a1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-4.0.0.tgz","fileCount":9,"integrity":"sha512-myxwlMVHxeqMK/lztE/z9NhvtGmgBZIjzXF26yi4bhsLthx1bM5Ok54HiF+7do/x2SMAZ4466GwWC7W/ya/rhA==","signatures":[{"sig":"MEUCIQCKkv8P4FubFX9EFhQCDkM4unnS9MrqM17DfbY7oy63FgIgKZNoRqJcq+gWA+VDXVsoZxtNQxOuYYna/r0oVelwIL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":129325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa0gXFCRA9TVsSAnZWagAAjrkQAJcSlh+sh3etzPsuix2L\nXs8QHLgJmivEE2inO6OhSpFcE3lu17WhI/7BYBwDu0e4CEv9YCwSVBdKM8x9\nKXOgZtY9TW1DdCA4tKNA+ZwoT0EKVQxqo5TXQsh84gsv2gIpFftFO+AKHjAr\n49JZjXqICfTxOZi86p6L3i8yhWEmDofGRfcynBqesBoHRnufd36ifQq0Z06R\nUmc13NLSdTAAAFYY0iFQoOL0eQzsNGnXLujcd3dnPgexpSaJCraD4AyWlaTD\nCPMN3j5U/yuBPQr0JaGhAiLSBom9HlmM//FacjTu331MRQFSJjxSnaQTq4Tn\nWtqR9vadFHPH408NUtvSnOG3vhcgUu4+Tu3Y2U+xEhhR/8eqqR2E4TbMUkY/\ng6fMzbISzI9SyCs0O8gWop0JdrJdOkjDvYMbdG8zqkcYFALs0BaKOH8KJy+n\nWg9vIH26FTRdrI16zxWUkiY9iS+/FE7wrbx+3ZmaO3QXSfbdlYBrsSt+PK8c\ns7B1fW8g8NuDLDWgvrAXvIfGan8VbQiWQdAJpguGPoZlzAPbagJwmvGJjEJd\nv34NoUgdqFO1XfAKaXT8S60KxwATG3KxZFpkeRj/LYvel5DDQJnF6XlkTtXq\nPdsYqZSwAJkK+9ZBJ6ESSfUQobJRRDu+rSSFH9od8aanz7fqV9ccgWxQH3aq\nGZjA\r\n=qB9w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/moment-range","files":["dist/"],"engines":{"node":"*"},"scripts":{"lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack -p","check":"yarn run check:flow && yarn run check:typescript","doctoc":"doctoc README.md --github","version":"yarn run build && cp ./lib/*.flow ./lib/*.d.ts ./dist","check:flow":"flow","preversion":"yarn run check && yarn run lint && yarn run test","prepublishOnly":"yarn run build && cp ./lib/*.flow ./lib/*.d.ts ./dist","check:typescript":"tsc --project ./typing-tests/typescript"},"typings":"./dist/moment-range.d.ts","_npmUser":{"name":"anonymous","email":"tristanjm96@gmail.com"},"repository":{"url":"https://git@github.com/rotaready/moment-range.git","type":"git"},"description":"Fancy date ranges for Moment.js","directories":{},"jsnext:main":"lib/moment-range.js","licenseText":"This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to <http://unlicense.org/>\n\n","dependencies":{"es6-symbol":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","moment":"^2.17.1","webpack":"^2.2.1","flow-bin":"0.66.0","expect.js":"^0.3.1","babel-core":"^6.18.2","typescript":"^2.6.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^2.0.2","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range_4.0.0_1523713475579_0.66603488792195","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"moment-range","version":"4.0.1","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":"Unlicense","_id":"moment-range@4.0.1","maintainers":[{"name":"anonymous","email":"email@adambig.gs"},{"name":"anonymous","email":"c.holloway@rotaready.com"},{"name":"anonymous","email":"gianni@runlevel6.org"},{"name":"anonymous","email":"rhysjc@gmail.com"},{"name":"anonymous","email":"tristanjm96@gmail.com"}],"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"},{"url":"https://github.com/victoriafrench","name":"Victoria French","email":"victoria.french@cinecove.com"},{"url":"https://github.com/JochenDiekenbrock","name":"Jochen Diekenbrock"}],"homepage":"https://github.com/rotaready/moment-range","bugs":{"url":"https://github.com/rotaready/moment-range/issues"},"dist":{"shasum":"1ae8cf209dded0a5ce5e16603146265b3906a86f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-4.0.1.tgz","fileCount":9,"integrity":"sha512-qKqC4g81Hu9CIUTADsWPXtRFL+fUvMka5MZpt4X7ZJ7g4/vo4nlLWjvtxaZijzUn8Ed8afeNOO4eK4AhGwhG/A==","signatures":[{"sig":"MEUCIQCIn/Y9uPAa0MfgBkQoVqvFEOcI8uszTRdpzyhofTgkfgIgLOH5F1zecK/rb5HnxdE9hIHuvsq3x7IB3J4OWZmH3FY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":129369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6PGJCRA9TVsSAnZWagAAfmQP/A4LkgjX+wMmVlChmVWX\nEppoaHnT8R95YSzGoxGvSIADEh65nNmuXjGcVxQY7tMeM2onVu9vcl50kGPl\nh14Gu3Vt/BadBaNYjsG4PZ/b/kVZrC8k0gzQ1LGKhVuMMUptBanHwOwAEGB9\ndMpJ0Hu8b77ycB1sNGuY6lrTkDuCimgN0HWIOrjEVqmcudk6ilZZl4XBWp+Q\nSuvJHdK1nwe3QgtWsMXUrsS1Rt9mWCxqjc1QlnGdu+HSyinTI5BS4UX62gvt\nsqXlrGo2LZtNeNyXnNsJ2zcOafA9VygCpztKEHvXsDRmIHExONkEVoXZtbOb\nDsdFYEOF5VAyoHzI6ioH9QGsoEbOwYlh4v1WSR1su0c7o/gR20P3qvVDEJkn\na0EAV+bV9qdYyDLKmrYzDwy601fJv2cNeZFjR+QwEtXjWsEHEWqP4NTFT00e\nNoTRSq62BYeleLMei1eZ9YvSfT4WuEeDYJVaw4GrGDB+cAXeP/1Ued4iquPy\nEoNaB7wCfF1iP7euommxaHisHXDgmABzU72EwxLjs/plJH4n9O6Nh8JFAlMq\nVlOLu7+3fCiwaR77I60opl7o6VQiDKjE58GCS4byAI0Pc7rtE9fvJ8xlwa7N\nbtr4poupCDPdvKusnQRywBNdRYuJggvcVsLovdkHBOvIFVAQX+dm/diD+IIM\nt7rV\r\n=CBUz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/moment-range","files":["dist/"],"engines":{"node":"*"},"scripts":{"lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack -p","check":"yarn run check:flow && yarn run check:typescript","doctoc":"doctoc README.md --github","version":"yarn run build && cp ./lib/*.flow ./lib/*.d.ts ./dist","check:flow":"flow","preversion":"yarn run check && yarn run lint && yarn run test","prepublishOnly":"yarn run build && cp ./lib/*.flow ./lib/*.d.ts ./dist","check:typescript":"tsc --project ./typing-tests/typescript"},"typings":"./dist/moment-range.d.ts","_npmUser":{"name":"anonymous","email":"tristanjm96@gmail.com"},"repository":{"url":"https://git@github.com/rotaready/moment-range.git","type":"git"},"description":"Fancy date ranges for Moment.js","directories":{},"licenseText":"This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to <http://unlicense.org/>\n\n","dependencies":{"es6-symbol":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.2.0","eslint":"^3.11.1","moment":"^2.17.1","webpack":"^2.2.1","flow-bin":"0.66.0","expect.js":"^0.3.1","babel-core":"^6.18.2","typescript":"^2.6.2","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^2.0.2","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range_4.0.1_1525215622955_0.7380785054853631","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"moment-range","version":"4.0.2","author":{"url":"https://butt.zone","name":"Gianni Chiappetta","email":"gianni@runlevel6.org"},"license":"Unlicense","_id":"moment-range@4.0.2","maintainers":[{"name":"anonymous","email":"email@adambig.gs"},{"name":"anonymous","email":"c.holloway@rotaready.com"},{"name":"anonymous","email":"gianni@runlevel6.org"},{"name":"anonymous","email":"rhysjc@gmail.com"},{"name":"anonymous","email":"tristanjm96@gmail.com"}],"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"},{"url":"https://github.com/victoriafrench","name":"Victoria French","email":"victoria.french@cinecove.com"},{"url":"https://github.com/JochenDiekenbrock","name":"Jochen Diekenbrock"}],"homepage":"https://github.com/rotaready/moment-range","bugs":{"url":"https://github.com/rotaready/moment-range/issues"},"dist":{"shasum":"f7c3863df2a1ed7fd1822ba5a7bcf53a78701be9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/moment-range/-/moment-range-4.0.2.tgz","fileCount":9,"integrity":"sha512-n8sceWwSTjmz++nFHzeNEUsYtDqjgXgcOBzsHi+BoXQU2FW+eU92LUaK8gqOiSu5PG57Q9sYj1Fz4LRDj4FtKA==","signatures":[{"sig":"MEUCIEAWm449LWx/Ts+oD1LJPFCVmNq+tAX5zTgftC1N+l28AiEArJvhAiqHgOFlJ71U/yIDyciloLbHZjkwoakiMsyMdPU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":130567,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcc9f1CRA9TVsSAnZWagAAFDQQAI4zjkiTKlkrKQEOtRAt\naUS3RZQGHGI6Mgw6VhBoHahM/ijDT0GRvLYNV35MLv4GaT7eRUyA7unY+cHy\nDnpJkrzOb+4nPRulIbn2tWTDyHFngU4gD1Ia5Trw/FFADrJ6H+ev0w4s6dRx\nTHNuyLkxPl+l+INOlwJetK7SU04XuTgUhWrCHwYs9v6qUvJbzx0OdIw8ZFHv\nzBlNIc+rKM/sFoWyX/qrgOudQE53XT1nxz2nUa5LCdKry3h8Jj8DXZENyU0F\nK8ptWxJrXRSfEPD8P1xW5eeBjCTMaeDIYcdcTWFg19Xvu5wkngI2ahgIb0ut\nEVB8u5tNAfpkqPTzw9jZsW4hV7PjANl245kkNhgMYMO2M2gXHWtsxCyNAwDf\nSLu1LU/R9XDvISXvzptwdjStQnlDYKLZ8AHn9jMurSey5B0ZtdqB9yYESL+f\nOWdmxxPyb14+3s/jOExO6TGdGQTblJhuRYUCJjUwTutoQH4x9Gp4HEczGC05\nFoRsIRxEFyHQRilCo+VTpwgqA5o1u0v4SFN/MF2spMTBZggmRmwsIkrlWzjO\nBDaC2P5lI3CIL6xgkayKNpx8HyHjn5Re6dC6JUQPG91B7eY2iypWVwNTKgZM\nRJnPLFWrB9PhwnouCm87uQQje9pokQC7GUjKDkvJpZ4+8hziLKXKB5ZUWU44\nPkId\r\n=9rD7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/moment-range","engines":{"node":"*"},"scripts":{"lint":"eslint ./lib/","test":"karma start ./karma.conf.js","build":"webpack -p","check":"yarn check:flow && yarn check:typescript","doctoc":"doctoc README.md --github","version":"yarn build && cp ./lib/*.flow ./lib/*.d.ts ./dist","check:flow":"flow","preversion":"yarn check && yarn lint && yarn test","prepublishOnly":"yarn build && cp ./lib/*.flow ./lib/*.d.ts ./dist","check:typescript":"tsc --project ./typing-tests/typescript"},"typings":"./dist/moment-range.d.ts","_npmUser":{"name":"anonymous","email":"beaumont.a.jonathan@gmail.com"},"repository":{"url":"https://git@github.com/rotaready/moment-range.git","type":"git"},"description":"Fancy date ranges for Moment.js","directories":{},"licenseText":"This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to <http://unlicense.org/>\n\n","dependencies":{"es6-symbol":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"karma":"^1.3.0","mocha":"^2.5.3","doctoc":"^1.4.0","eslint":"^3.11.1","moment":"^2.24.0","webpack":"^2.2.1","flow-bin":"0.66.0","expect.js":"^0.3.1","babel-core":"^6.18.2","typescript":"^3.3.3333","karma-mocha":"^1.3.0","babel-eslint":"^7.1.1","babel-loader":"^6.2.8","karma-expect":"^1.1.3","eslint-loader":"^1.6.1","karma-webpack":"^2.0.2","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.18.0","babel-preset-stage-0":"^6.16.0","karma-babel-polyfill":"0.0.5","karma-chrome-launcher":"^2.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.2","babel-plugin-transform-flow-strip-types":"^6.18.0"},"peerDependencies":{"moment":">= 2"},"_npmOperationalInternal":{"tmp":"tmp/moment-range_4.0.2_1551095796408_0.3108334742242749","host":"s3://npm-registry-packages"}}},"name":"moment-range","time":{"created":"2012-05-23T16:42:18.190Z","modified":"2025-07-09T21:56:40.700Z","0.1.0":"2012-05-23T16:42:18.793Z","0.1.1":"2012-09-08T00:09:47.787Z","0.1.2":"2012-10-15T22:45:11.674Z","0.1.3":"2012-11-22T23:26:31.561Z","0.1.4":"2013-02-26T20:25:38.756Z","0.1.5":"2013-07-11T18:48:03.172Z","0.1.7":"2013-08-22T23:27:36.547Z","1.0.0":"2014-02-03T22:56:49.130Z","1.0.1":"2014-02-26T18:21:06.507Z","1.0.2":"2014-05-24T20:11:33.092Z","1.0.3":"2014-09-23T19:16:29.530Z","1.0.4":"2014-09-23T19:41:15.305Z","1.0.5":"2014-09-24T18:43:03.681Z","1.0.6":"2015-02-11T02:26:37.505Z","1.0.7":"2015-02-25T23:02:28.039Z","1.0.8":"2015-04-16T13:59:13.606Z","1.0.9":"2015-04-16T14:02:12.857Z","1.1.0":"2015-05-31T05:30:44.356Z","1.1.1":"2015-06-01T16:31:01.802Z","1.1.2":"2015-06-01T17:39:46.834Z","1.2.0":"2015-06-01T18:01:28.388Z","2.0.2":"2015-06-04T15:21:31.910Z","2.0.3":"2015-07-17T18:00:59.173Z","2.1.0":"2015-12-18T19:40:14.265Z","2.2.0":"2016-03-01T21:27:27.030Z","3.0.0-0":"2017-01-09T20:03:33.628Z","3.0.0":"2017-01-16T16:45:33.296Z","3.0.1":"2017-01-31T16:40:39.624Z","3.0.2":"2017-02-13T15:32:39.518Z","3.0.3":"2017-02-28T23:50:22.699Z","3.1.0":"2017-12-04T17:29:27.552Z","3.1.1":"2018-01-19T21:44:47.918Z","4.0.0":"2018-04-14T13:44:35.669Z","4.0.1":"2018-05-01T23:00:23.024Z","4.0.2":"2019-02-25T11:56:36.609Z"},"contributors":[{"url":"lightmaker.com","name":"Adam Biggs"},{"url":"https://github.com/mewwts","name":"Mats Julian Olsen"},{"url":"http://reprocessed.org/","name":"Matt Patterson","email":"matt@reprocessed.org"},{"url":"http://neocles.io","name":"Wilgert Velinga","email":"wilgert@wilgert.nl"},{"url":"http://twitter.com/tomaszbak","name":"Tomasz Bak"},{"url":"https://github.com/stuartleigh","name":"Stuart Kelly"},{"url":"https://github.com/jdforsythe","name":"Jeremy Forsythe","email":"jdforsythe@gmail.com"},{"url":"https://github.com/nd0ut","name":"Александр Гренишин","email":"nd0ut.me@gmail.com"},{"url":"https://github.com/scotthovestadt","name":"@scotthovestadt"},{"url":"https://github.com/thomasvanlankveld","name":"Thomas van Lankveld"},{"url":"https://github.com/pronebel","name":"nebel","email":"nebel@outlook.com"},{"url":"http://www.alienfast.com","name":"Kevin Ross","email":"kevin.ross@alienfast.com"},{"url":"https://github.com/twalpole","name":"Thomas Walpole","email":"twalpole@gmail.com"},{"url":"jkimbo.co.uk","name":"Jonathan Kim","email":"hello@jkimbo.co.uk"},{"url":"http://teamon.eu","name":"Tymon Tobolski","email":"i@teamon.eu"},{"url":"https://github.com/aristiden7o","name":"Aristide Niyungeko","email":"aristide.niyungeko@gmail.com"},{"url":"https://github.com/bradleyayers","name":"Bradley Ayers","email":"bradley.ayers@gmail.com"},{"url":"http://rosshadden.github.com/resume","name":"Ross Hadden","email":"ross@hadden.family"},{"url":"https://github.com/victoriafrench","name":"Victoria French","email":"victoria.french@cinecove.com"},{"url":"https://github.com/JochenDiekenbrock","name":"Jochen Diekenbrock"}],"readmeFilename":"README.md","homepage":"https://github.com/rotaready/moment-range"}