{"_id":"helper-date","_rev":"21-3b335c306464df032c7124abe46bfd9e","name":"helper-date","time":{"modified":"2022-06-18T20:07:42.676Z","created":"2014-11-10T05:36:40.646Z","0.1.0":"2014-11-10T05:36:40.646Z","0.1.1":"2014-11-10T05:40:11.277Z","0.1.2":"2014-11-10T07:45:26.277Z","0.1.3":"2014-11-12T04:03:58.290Z","0.2.0":"2014-12-07T01:43:03.992Z","0.2.1":"2015-02-17T16:10:31.930Z","0.2.2":"2015-06-19T00:52:21.835Z","0.2.3":"2017-01-02T05:52:36.023Z","1.0.0":"2017-07-04T07:37:57.949Z","1.0.1":"2017-09-04T13:14:37.822Z"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist-tags":{"latest":"1.0.1"},"description":"Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registere","readme":"# helper-date [![NPM version](https://img.shields.io/npm/v/helper-date.svg?style=flat)](https://www.npmjs.com/package/helper-date) [![NPM monthly downloads](https://img.shields.io/npm/dm/helper-date.svg?style=flat)](https://npmjs.org/package/helper-date) [![NPM total downloads](https://img.shields.io/npm/dt/helper-date.svg?style=flat)](https://npmjs.org/package/helper-date) [![Linux Build Status](https://img.shields.io/travis/helpers/helper-date.svg?style=flat&label=Travis)](https://travis-ci.org/helpers/helper-date)\n\n> Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registered. Also compatible with verb, assemble and Template.\n\nFollow this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), for updates on this project and others.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save helper-date\n```\n\n## Usage\n\nWith Handlebars:\n\n```handlebars\n{{date \"5 years ago\" \"YYYY\"}}\n//=> 2010\n```\n\nWith Lo-Dash or Underscore:\n\n```js\n<%= date(\"5 years ago\", \"YYYY\") %>\n//=> 2010\n```\n\nWith Verb (lo-dash, with special delimiters to avoid delimiter collision in markdown docs):\n\n```js\n2012\n//=> 2010\n```\n\n### [template](https://github.com/jonschlinkert/template)\n\nRegister the helper for use with any template engine\n\n```js\ntemplate.helper('date', require('helper-date'));\n```\n\n### [assemble](https://github.com/assemble/assemble)\n\nTo register the helper for use with [assemble](https://github.com/assemble/assemble) v0.6.0 and greater:\n\n```js\nassemble.helper('date', require('helper-date'));\n```\n\n### [verb](https://github.com/verbose/verb)\n\nRegister the helper for use with [verb](https://github.com/verbose/verb):\n\n```js\nvar verb = require('verb');\nverb.helper('date', require('helper-date'));\n\nverb.task('default', function() {\n  verb.src('.verb*.md')\n    .pipe(verb.dest('./'));\n});\n```\n\n### [handlebars](http://www.handlebarsjs.com/)\n\n```js\nvar handlebars = require('handlebars');\nhandlebars.registerHelper('date', require('helper-date'));\n```\nUsage\n\n```handlebars\n{{date \"5 years ago\" \"YYYY\"}}\n```\n\n### [lodash](https://lodash.com/) or [underscore](http://underscorejs.org)\n\n```js\n// as a mixin\n_.mixin({date: dateHelper});\n_.template('<%= _.date(\"5 years ago\", \"YYYY\") %>', {});\n//=> 2010\n\n// passed on the context\n_.template('<%= date(\"5 years ago\", \"YYYY\") %>', {date: dateHelper});\n//=> 2010\n\n// as an import\nvar settings = {imports: {date: dateHelper}};\n_.template('<%= date(\"5 years ago\", \"YYYY\") %>', {}, settings);\n//=> 2010\n```\n\n## About\n\n### Related projects\n\nYou might also be interested in these projects:\n\n* [handlebars-helper-moment](https://www.npmjs.com/package/handlebars-helper-moment): A helper to master time! Combining the powers of Assemble, Handlebars.js and Moment.js. This helper… [more](https://github.com/assemble/handlebars-helper-moment) | [homepage](https://github.com/assemble/handlebars-helper-moment \"A helper to master time! Combining the powers of Assemble, Handlebars.js and Moment.js. This helper leverages Moment.js to provide ultimate control over manipulating time and dates in your templates.\")\n* [handlebars-helpers](https://www.npmjs.com/package/handlebars-helpers): More than 130 Handlebars helpers in ~20 categories. Helpers can be used with Assemble, Generate… [more](https://github.com/helpers/handlebars-helpers) | [homepage](https://github.com/helpers/handlebars-helpers \"More than 130 Handlebars helpers in ~20 categories. Helpers can be used with Assemble, Generate, Verb, Ghost, gulp-handlebars, grunt-handlebars, consolidate, or any node.js/Handlebars project.\")\n* [helper-dateformat](https://www.npmjs.com/package/helper-dateformat): Template helper for adding formatted dates using node-dateformat. Works with Handlebars, Lo-Dash, underscore, or any… [more](https://github.com/helpers/helper-dateformat) | [homepage](https://github.com/helpers/helper-dateformat \"Template helper for adding formatted dates using node-dateformat. Works with Handlebars, Lo-Dash, underscore, or any template engine that supports helper functions. Also compatible with verb, assemble and Template.\")\n* [template-helpers](https://www.npmjs.com/package/template-helpers): Generic JavaScript helpers that can be used with any template engine. Handlebars, Lo-Dash, Underscore, or… [more](https://github.com/jonschlinkert/template-helpers) | [homepage](https://github.com/jonschlinkert/template-helpers \"Generic JavaScript helpers that can be used with any template engine. Handlebars, Lo-Dash, Underscore, or any engine that supports helper functions.\")\n\n### Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\nPlease read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.\n\n### Contributors\n\n| **Commits** | **Contributor** | \n| --- | --- |\n| 20 | [jonschlinkert](https://github.com/jonschlinkert) |\n| 1 | [bradtaylorsf](https://github.com/bradtaylorsf) |\n\n### Building docs\n\n_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_\n\nTo generate the readme, run the following command:\n\n```sh\n$ npm install -g verbose/verb#dev verb-generate-readme && verb\n```\n\n### Running tests\n\nRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:\n\n```sh\n$ npm install && npm test\n```\n\n### Author\n\n**Jon Schlinkert**\n\n* [github/jonschlinkert](https://github.com/jonschlinkert)\n* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)\n\n### License\n\nCopyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT License](LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on September 04, 2017._","versions":{"0.1.1":{"name":"helper-date","description":"Template helper for adding formatted dates with node-dateformat. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registered. Also compatible with verb, assemble and Template.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/helper-date.git"},"bugs":{"url":"https://github.com/jonschlinkert/helper-date/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/helper-date/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"dependencies":{"dateformat":"^1.0.8"},"devDependencies":{"handlebars":"^2.0.0","lodash":"^2.4.1","should":"^4.2.1"},"keywords":["assemble","handlebars","helper","lo-dash","lodash","template","underscore","verb"],"_id":"helper-date@0.1.1","_shasum":"dae279e98759131224cf44aa22c4dae5b4148788","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"dae279e98759131224cf44aa22c4dae5b4148788","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-0.1.1.tgz","integrity":"sha512-CtX51lWHbVCBGFzdjqe2r800/Uxou3K/eQLLBUIutcejde69Y7kW949mQ0QY1VcI4TaYJTuIk+NZozl840ZUew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDW+ByUPiLyksGFPmU3hi0fAUaax35bM+ezb6tpzWelyQIgVkljWFEwtsr8+snMNsxzBubUNUVE7fFQI12TfHyAGv0="}]}},"0.1.2":{"name":"helper-date","description":"Template helper for adding formatted dates with node-dateformat. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registered. Also compatible with verb, assemble and Template.","version":"0.1.2","homepage":"https://github.com/jonschlinkert/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/helper-date.git"},"bugs":{"url":"https://github.com/jonschlinkert/helper-date/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/helper-date/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"dependencies":{"dateformat":"^1.0.8"},"devDependencies":{"handlebars":"^2.0.0","lodash":"^2.4.1","should":"^4.2.1"},"keywords":["assemble","handlebars","helper","lo-dash","lodash","template","underscore","verb"],"_id":"helper-date@0.1.2","_shasum":"8ff415d3f46e1c3d084ae71e5e65520b78283334","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"8ff415d3f46e1c3d084ae71e5e65520b78283334","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-0.1.2.tgz","integrity":"sha512-U2MvpRumAF+MnGbRx8VZgJmZUlzyQiCNZjlHbBVPOjChGRJQcyLZT/zpmpud+nBr17nHZBVDOE0xbc1fUkJYdg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIECX6szw8CqiLRPEhHLqzUQyf1qgFlfAMsJ33yvqKfBMAiEAyESssm+yxXP/MZHvGOdl2hXHXap6p4y2Idw9EhHNKww="}]}},"0.1.3":{"name":"helper-date","description":"Template helper for adding formatted dates with node-dateformat. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registered. Also compatible with verb, assemble and Template.","version":"0.1.3","homepage":"https://github.com/helpers/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/helpers/helper-date.git"},"bugs":{"url":"https://github.com/helpers/helper-date/issues"},"licenses":[{"type":"MIT","url":"https://github.com/helpers/helper-date/blob/master/LICENSE-MIT"}],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"dependencies":{"dateformat":"^1.0.8"},"devDependencies":{"handlebars":"^2.0.0","lodash":"^2.4.1","should":"^4.2.1"},"keywords":["assemble","handlebars","helper","lo-dash","lodash","template","underscore","verb"],"_id":"helper-date@0.1.3","_shasum":"bc975ca2a0e74ef4ec2aae89c87105df792ebb47","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"bc975ca2a0e74ef4ec2aae89c87105df792ebb47","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-0.1.3.tgz","integrity":"sha512-69JliWTLbjtj4ZX1L/6dldUa12twS0wlNxC5d2afoQZsyPSIuuZ2s5KZWzZyGb+D6MzVOMzY5unsbp8CB8J60g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFBxrlEm08SIMdlmkzhqTiEQE9pyrMuS6h1FTOCk5s1+AiBuiiHq4m7uz0zmOAkHKRgN+WPiOWNdzG+cueaJvcHiVg=="}]}},"0.2.0":{"name":"helper-date","description":"Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registere","version":"0.2.0","homepage":"https://github.com/helpers/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/helpers/helper-date.git"},"bugs":{"url":"https://github.com/helpers/helper-date/issues"},"license":{"type":"MIT","url":"https://github.com/helpers/helper-date/blob/master/LICENSE-MIT"},"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"dependencies":{"date.js":"^0.2.0","extend-shallow":"^0.2.0","kind-of":"^0.1.2","moment":"^2.8.4"},"devDependencies":{"handlebars":"^2.0.0","lodash":"^2.4.1","should":"*","mocha":"*"},"keywords":["calendar","dash","date","dateformat","dates","day","engine","format","handlebars","helper","helpers","lo-dash","lodash","moment","moment.js","month","months","parse","parser","template","templates","underscore","week","weekday","year","years"],"_id":"helper-date@0.2.0","_shasum":"66ea18959e44f04624bad4747530c0475b0e5d24","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"66ea18959e44f04624bad4747530c0475b0e5d24","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-0.2.0.tgz","integrity":"sha512-uOVwbOLGj2NW+M113YBI6TS5yqDkb2Zq9/JoX2+Xng/WlMTecfR9yhOX33C7tOXiMBp0PBukO5hic04hrD1KyQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMAH6EyIKhZnj+wCJxUwHeLvFBeAlAOD0Be0KnGYP4xAIgTNlOf3Y8ceO88Cd7bzDTdndrPEvLabnWK4zWsExaxr8="}]}},"0.2.1":{"name":"helper-date","description":"Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registere","version":"0.2.1","homepage":"https://github.com/helpers/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/helpers/helper-date.git"},"bugs":{"url":"https://github.com/helpers/helper-date/issues"},"license":{"type":"MIT","url":"https://github.com/helpers/helper-date/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"date.js":"^0.2.0","extend-shallow":"^0.2.0","kind-of":"^0.1.2","moment":"^2.8.4"},"devDependencies":{"handlebars":"^2.0.0","lodash":"^2.4.1","should":"*","mocha":"*"},"keywords":["calendar","dash","date","dateformat","dates","day","engine","format","handlebars","helper","helpers","lo-dash","lodash","moment","moment.js","month","months","parse","parser","template","templates","underscore","week","weekday","year","years"],"gitHead":"3962757fdf9a3dfa505c45c578e13fedd4a72ce2","_id":"helper-date@0.2.1","_shasum":"ff056c9b6cdfbc15bde6e182d5f2b9e5b21a7e94","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ff056c9b6cdfbc15bde6e182d5f2b9e5b21a7e94","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-0.2.1.tgz","integrity":"sha512-DBvD/rHt3ZjKkLxZPcMplW5VOrvn493Insi1ozwtrrCSAirPzysntoZbjnJLqKdmGUspAIBoh5m5F5MPx1XrXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGGUZmABl6BEHMJrm6RpyLqb65yKdW+bi2Ecmx+zs0trAiEAygqIQeK8RIo8DrCfRFA7o1sGaaacUcBwzsHlPgXJsXA="}]}},"0.2.2":{"name":"helper-date","description":"Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registere","version":"0.2.2","homepage":"https://github.com/helpers/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/helpers/helper-date.git"},"bugs":{"url":"https://github.com/helpers/helper-date/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"date.js":"^0.2.0","extend-shallow":"^1.1.4","kind-of":"^2.0.0","moment":"^2.10.3"},"devDependencies":{"handlebars":"^3.0.3","lodash":"^3.9.3","mocha":"^2.2.5","should":"^7.0.1"},"keywords":["calendar","dash","date","dateformat","dates","day","engine","format","handlebars","helper","helpers","lo-dash","lodash","moment","moment.js","month","months","parse","parser","template","templates","underscore","week","weekday","year","years"],"gitHead":"3962757fdf9a3dfa505c45c578e13fedd4a72ce2","_id":"helper-date@0.2.2","_shasum":"706a1fc522cc8e637e47389087fd0587b8dfd0ca","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"706a1fc522cc8e637e47389087fd0587b8dfd0ca","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-0.2.2.tgz","integrity":"sha512-bvEDlsnC78FKIs+jS0l83eQtlNs8J3olsU2n3UCIVdRvqaTm8gqijhZ8jcNHCZYeGTBj6vaJFBmu1oytiSgOpA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDc+1Nqw9GMZlWqyCFLhZyf7VGCyJEZzjajFXtoaD0V/AiAyIX8OVxJsY4MRqx0WT7a90+1u4gLvqJgPArN0fnALpQ=="}]}},"0.2.3":{"name":"helper-date","description":"Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registere","version":"0.2.3","homepage":"https://github.com/helpers/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/helpers/helper-date.git"},"bugs":{"url":"https://github.com/helpers/helper-date/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"date.js":"^0.3.1","extend-shallow":"^2.0.1","kind-of":"^3.1.0","moment":"^2.17.1"},"devDependencies":{"gulp-format-md":"^0.1.11","handlebars":"^4.0.6","lodash":"^4.17.4","mocha":"^3.2.0"},"keywords":["calendar","dash","date","dateformat","dates","day","engine","format","handlebars","helper","helpers","lo-dash","lodash","moment","moment.js","month","months","parse","parser","render","template","templates","underscore","week","weekday","year","years"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["handlebars-helper-moment","handlebars-helpers","helper-dateformat","template-helpers"]},"reflinks":["assemble","handlebars","lodash","template","underscore","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"78f1c2e208518dc9233c1f2a77ae0f9fe0a66651","_id":"helper-date@0.2.3","_shasum":"d870cabba041d329cc856db20bb8c49674e3ef28","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.9.2","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"d870cabba041d329cc856db20bb8c49674e3ef28","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-0.2.3.tgz","integrity":"sha512-w9ZTgPQpy3VuIvtDbvroRSJAd7in3+hCGQnC+eVNanezqOfQ08mPbmp5zjg6mAEiSyLJ/+5zFygYWVn95UnSbA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCz30WW0ndXH0mARNUpZjbTYghAC45J1DmxSeixXHDkuwIhANObzbgQLPSQbdXHPbVinx5cwXTFBKeh8geLwWWIIx6m"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/helper-date-0.2.3.tgz_1483336354197_0.25528541672974825"}},"1.0.0":{"name":"helper-date","description":"Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registere","version":"1.0.0","homepage":"https://github.com/helpers/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/helpers/helper-date.git"},"bugs":{"url":"https://github.com/helpers/helper-date/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"date.js":"^0.3.1","handlebars-utils":"^1.0.1","moment":"^2.18.1"},"devDependencies":{"gulp-format-md":"^1.0.0","mocha":"^3.4.2","handlebars":"^4.0.10","lodash":"^4.17.4"},"keywords":["calendar","compile","dash","date","dateformat","dates","day","engine","format","handlebars","helper","helpers","lo-dash","lodash","moment","moment.js","month","months","parse","parser","render","template","templates","underscore","week","weekday","year","years"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["handlebars-helper-moment","handlebars-helpers","helper-dateformat","template-helpers"]},"reflinks":["assemble","handlebars","lodash","template","underscore","verb-generate-readme"],"lint":{"reflinks":true}},"gitHead":"2961fc41be561e29a89c083b0197e41d6168bcf2","_id":"helper-date@1.0.0","_npmVersion":"5.0.4","_nodeVersion":"7.7.3","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"integrity":"sha512-iev3hiloIPrdFyabWK6Z/FqaUbhcQQZ+pLjAI7qDGFFfb37qgcDhSWEKseeBV6dktMzwl4o2AH44H4feAy4CYQ==","shasum":"e1118391e9af4b81ee04b33bc2a76a68b6cd5f6d","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-1.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBS1tdje6sFaakPnG7qtbQN+7R0s2BaWHlfifmnlMMH9AiEA5w6079XHQDZWoqx8prDYA70PZ3QDhLGParcWFsrQdHM="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/helper-date-1.0.0.tgz_1499153876949_0.11091484013013542"}},"1.0.1":{"name":"helper-date","description":"Format dates with date.js and moment.js. Uses date.js to parse human readable date phrases, and moment to format the rendered output. Should work with any Handlebars, Lo-Dash, underscore, or any template engine that allows helper functions to be registere","version":"1.0.1","homepage":"https://github.com/helpers/helper-date","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Brad Taylor","url":"https://www.linkedin.com/in/bradtaylorsf"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}],"repository":{"type":"git","url":"git+https://github.com/helpers/helper-date.git"},"bugs":{"url":"https://github.com/helpers/helper-date/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=4.0"},"scripts":{"test":"mocha"},"dependencies":{"date.js":"^0.3.1","handlebars-utils":"^1.0.4","moment":"^2.18.1"},"devDependencies":{"gulp-format-md":"^1.0.0","handlebars":"^4.0.10","lodash":"^4.17.4","mocha":"^3.5.0"},"keywords":["calendar","compile","dash","date","dateformat","dates","day","engine","format","handlebars","helper","helpers","lo-dash","lodash","moment","moment.js","month","months","parse","parser","render","template","templates","underscore","week","weekday","year","years"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["handlebars-helper-moment","handlebars-helpers","helper-dateformat","template-helpers"]},"lint":{"reflinks":true},"reflinks":["assemble","handlebars","lodash","template","underscore","verb"]},"gitHead":"095803decb02f8d01f88340b97f266df01482e46","_id":"helper-date@1.0.1","_npmVersion":"5.4.0","_nodeVersion":"8.4.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"integrity":"sha512-wU3VOwwTJvGr/w5rZr3cprPHO+hIhlblTJHD6aFBrKLuNbf4lAmkawd2iK3c6NbJEvY7HAmDpqjOFSI5/+Ey2w==","shasum":"12fedea3ad8e44a7ca4c4efb0ff4104a5120cffb","tarball":"https://registry.npmjs.org/helper-date/-/helper-date-1.0.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDkSNCtpxc9KK3xiAUIIibwGJl51PqYIDNa5Em6psa3twIgUgkjDLHDtF6Wq8WOHDgAlg23ZRoj4QfXV2aHI2YvSdM="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/helper-date-1.0.1.tgz_1504530876839_0.3630575977731496"}}},"homepage":"https://github.com/helpers/helper-date","keywords":["calendar","compile","dash","date","dateformat","dates","day","engine","format","handlebars","helper","helpers","lo-dash","lodash","moment","moment.js","month","months","parse","parser","render","template","templates","underscore","week","weekday","year","years"],"repository":{"type":"git","url":"git+https://github.com/helpers/helper-date.git"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"bugs":{"url":"https://github.com/helpers/helper-date/issues"},"readmeFilename":"README.md","license":"MIT","contributors":[{"name":"Brad Taylor","url":"https://www.linkedin.com/in/bradtaylorsf"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"}]}