{"maintainers":[{"email":"github@sellside.com","name":"jonschlinkert"},{"email":"dev@tavan.de","name":"ctavan"},{"email":"felix@debuggable.com","name":"felixge"}],"dist-tags":{"latest":"2.0.0"},"author":{"name":"Steven Levithan"},"description":"A node.js package for Steven Levithan's excellent dateFormat() function.","readme":"# dateformat\n\nA node.js package for Steven Levithan's excellent [dateFormat()][dateformat] function.\n\n[![Build Status](https://travis-ci.org/felixge/node-dateformat.svg)](https://travis-ci.org/felixge/node-dateformat)\n\n## Modifications\n\n* Removed the `Date.prototype.format` method. Sorry folks, but extending native prototypes is for suckers.\n* Added a `module.exports = dateFormat;` statement at the bottom\n* Added the placeholder `N` to get the ISO 8601 numeric representation of the day of the week\n\n## Installation\n\n```bash\n$ npm install dateformat\n$ dateformat --help\n```\n\n## Usage\n\nAs taken from Steven's post, modified to match the Modifications listed above:\n```js\nvar dateFormat = require('dateformat');\nvar now = new Date();\n\n// Basic usage\ndateFormat(now, \"dddd, mmmm dS, yyyy, h:MM:ss TT\");\n// Saturday, June 9th, 2007, 5:46:21 PM\n\n// You can use one of several named masks\ndateFormat(now, \"isoDateTime\");\n// 2007-06-09T17:46:21\n\n// ...Or add your own\ndateFormat.masks.hammerTime = 'HH:MM! \"Can\\'t touch this!\"';\ndateFormat(now, \"hammerTime\");\n// 17:46! Can't touch this!\n\n// When using the standalone dateFormat function,\n// you can also provide the date as a string\ndateFormat(\"Jun 9 2007\", \"fullDate\");\n// Saturday, June 9, 2007\n\n// Note that if you don't include the mask argument,\n// dateFormat.masks.default is used\ndateFormat(now);\n// Sat Jun 09 2007 17:46:21\n\n// And if you don't include the date argument,\n// the current date and time is used\ndateFormat();\n// Sat Jun 09 2007 17:46:22\n\n// You can also skip the date argument (as long as your mask doesn't\n// contain any numbers), in which case the current date/time is used\ndateFormat(\"longTime\");\n// 5:46:22 PM EST\n\n// And finally, you can convert local time to UTC time. Simply pass in\n// true as an additional argument (no argument skipping allowed in this case):\ndateFormat(now, \"longTime\", true);\n// 10:46:21 PM UTC\n\n// ...Or add the prefix \"UTC:\" or \"GMT:\" to your mask.\ndateFormat(now, \"UTC:h:MM:ss TT Z\");\n// 10:46:21 PM UTC\n\n// You can also get the ISO 8601 week of the year:\ndateFormat(now, \"W\");\n// 42\n\n// and also get the ISO 8601 numeric representation of the day of the week:\ndateFormat(now,\"N\");\n// 6\n```\n\n### Mask options\n\nMask | Description\n---- | -----------\n`d` | Day of the month as digits; no leading zero for single-digit days.\n`dd` | Day of the month as digits; leading zero for single-digit days.\n`ddd` | Day of the week as a three-letter abbreviation.\n`dddd` | Day of the week as its full name.\n`m` | Month as digits; no leading zero for single-digit months.\n`mm` | Month as digits; leading zero for single-digit months.\n`mmm` | Month as a three-letter abbreviation.\n`mmmm` | Month as its full name.\n`yy` | Year as last two digits; leading zero for years less than 10.\n`yyyy` | Year represented by four digits.\n`h` | Hours; no leading zero for single-digit hours (12-hour clock).\n`hh` | Hours; leading zero for single-digit hours (12-hour clock).\n`H` | Hours; no leading zero for single-digit hours (24-hour clock).\n`HH` | Hours; leading zero for single-digit hours (24-hour clock).\n`M` | Minutes; no leading zero for single-digit minutes.\n`MM` | Minutes; leading zero for single-digit minutes.\n`N` | ISO 8601 numeric representation of the day of the week.\n`o` | GMT/UTC timezone offset, e.g. -0500 or +0230.\n`s` | Seconds; no leading zero for single-digit seconds.\n`ss` | Seconds; leading zero for single-digit seconds.\n`S` | The date's ordinal suffix (st, nd, rd, or th). Works well with `d`.\n`l` |  Milliseconds; gives 3 digits.\n`L` | Milliseconds; gives 2 digits.\n`t`\t| Lowercase, single-character time marker string: a or p.\n`tt` | Lowercase, two-character time marker string: am or pm.\n`T` | Uppercase, single-character time marker string: A or P.\n`TT` | Uppercase, two-character time marker string: AM or PM.\n`W` | ISO 8601 week number of the year, e.g. 42\n`Z` | US timezone abbreviation, e.g. EST or MDT. With non-US timezones or in the\n`'...'`, `\"...\"` | Literal character sequence. Surrounding quotes are removed.\n`UTC:` |\tMust be the first four characters of the mask. Converts the date from local time to UTC/GMT/Zulu time before applying the mask. The \"UTC:\" prefix is removed.\n\n### Named Formats\n\nName | Mask | Example\n---- | ---- | -------\n`default` | `ddd mmm dd yyyy HH:MM:ss` | Sat Jun 09 2007 17:46:21\n`shortDate` | `m/d/yy` | 6/9/07\n`mediumDate` | `mmm d, yyyy` | Jun 9, 2007\n`longDate` | `mmmm d, yyyy` | June 9, 2007\n`fullDate` | `dddd, mmmm d, yyyy` | Saturday, June 9, 2007\n`shortTime` | `h:MM TT` | 5:46 PM\n`mediumTime` | `h:MM:ss TT` | 5:46:21 PM\n`longTime` | `h:MM:ss TT Z` | 5:46:21 PM EST\n`isoDate` | `yyyy-mm-dd` | 2007-06-09\n`isoTime` | `HH:MM:ss` | 17:46:21\n`isoDateTime` | `yyyy-mm-dd'T'HH:MM:ss` | 2007-06-09T17:46:21\n`isoUtcDateTime` | `UTC:yyyy-mm-dd'T'HH:MM:ss'Z'` | 2007-06-09T22:46:21Z\n## License\n\n(c) 2007-2009 Steven Levithan [stevenlevithan.com][stevenlevithan], MIT license.\n\n[dateformat]: http://blog.stevenlevithan.com/archives/date-time-format\n[stevenlevithan]: http://stevenlevithan.com/\n","repository":{"type":"git","url":"git+https://github.com/felixge/node-dateformat.git"},"users":{"fgribreau":true,"konklone":true,"simonvwade":true,"starak":true,"shen-weizhong":true,"bdream":true,"inhji":true,"kulakowka":true,"iamveen":true,"weijarz":true,"amirmehmood":true,"alexcoady":true,"itonyyo":true,"mrmartineau":true,"skarface":true,"smallhelm":true,"aslezak":true,"xiaokaike":true,"antouank":true,"honzajde":true,"wzbg":true,"japh":true,"pandao":true,"josejaguirre":true,"superpaintman":true,"nickeltobias":true,"davidnyhuis":true,"skullmasher":true,"tommyzzm":true,"tobiasnickel":true,"silva23":true,"elmorec":true,"lardconcepts":true,"evanyeung":true,"leobakerhytch":true,"chris-me":true,"thebespokepixel":true,"ghkddbguse":true,"thisiskun":true,"vasz":true,"valentinbrclz":true,"runjinz":true,"whotheheck":true,"fabrianibrahim":true,"meeshter":true,"jcowgar":true,"f124275809":true,"rbecheras":true,"sternelee":true,"nichoth":true,"knownasilya":true,"ivan.marquez":true,"amrn86":true,"ken27":true,"neo1":true,"axelrindle":true,"tdmalone":true,"henryhuang":true,"jian263994241":true,"sharpie":true,"dburdese":true,"raojs":true,"iuykza":true,"joaquin.briceno":true,"sajithm":true,"manxisuo":true,"olonam":true,"ognjen.jevremovic":true,"xueboren":true,"tsxuehu":true,"zanner":true,"fxkraus":true,"zeroknight":true,"ninozhang":true,"larrychen":true,"bengi":true,"xudaolong":true,"456wyc":true,"jiezhiyou":true,"bmccallion":true,"shuoshubao":true,"chrisanderss0n":true},"bugs":{"url":"https://github.com/felixge/node-dateformat/issues"},"license":"MIT","versions":{"0.9.0-1.2.3":{"name":"dateformat","description":"A commonjs port of Steven Levithan's dateFormat function.","maintainers":"Felix Geisendörfer <felix@debuggable.com>","homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"version":"0.9.0-1.2.3","main":"./lib/dateformat","_id":"dateformat@0.9.0-1.2.3","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"0.3.15","_nodeVersion":"v0.4.2","directories":{"lib":"./lib"},"files":[""],"_defaultsLoaded":true,"dist":{"shasum":"ae779067d225240d8bd5ca33718a2c4980bdd8be","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-0.9.0-1.2.3.tgz"}},"1.0.0-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":"Felix Geisendörfer <felix@debuggable.com>","homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"version":"1.0.0-1.2.3","main":"./lib/dateformat","_id":"dateformat@1.0.0-1.2.3","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"0.3.15","_nodeVersion":"v0.4.2","directories":{"lib":"./lib"},"files":[""],"_defaultsLoaded":true,"dist":{"shasum":"dec87d759f2cf83f581459b1bed3b631784991e7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.0-1.2.3.tgz"}},"1.0.1-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":"Felix Geisendörfer <felix@debuggable.com>","homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"version":"1.0.1-1.2.3","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"_id":"dateformat@1.0.1-1.2.3","_engineSupported":true,"_npmVersion":"1.0.1rc9","_nodeVersion":"v0.4.7-pre","_defaultsLoaded":true,"dist":{"shasum":"2e5d03039eca89f9d8797f99389de5fb0f4aa2fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.1-1.2.3.tgz"},"directories":{}},"1.0.2-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"version":"1.0.2-1.2.3","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"_npmJsonOpts":{"file":"/Users/felix/.npm/dateformat/1.0.2-1.2.3/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"dateformat@1.0.2-1.2.3","_engineSupported":true,"_npmVersion":"1.0.26","_nodeVersion":"v0.4.10-pre","_defaultsLoaded":true,"dist":{"shasum":"b0220c02de98617433b72851cf47de3df2cdbee9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.2-1.2.3.tgz"},"scripts":{},"directories":{}},"1.0.3-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.3-1.2.3","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"_npmUser":{"name":"ctavan","email":"dev@tavan.de"},"_id":"dateformat@1.0.3-1.2.3","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.12","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"ab11b3ce0274c4c6da7d8a716fb062610dab9f40","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.3-1.2.3.tgz"},"directories":{}},"1.0.4-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.4-1.2.3","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"_npmUser":{"name":"ctavan","email":"dev@tavan.de"},"_id":"dateformat@1.0.4-1.2.3","optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.12","_nodeVersion":"v0.6.14","_defaultsLoaded":true,"dist":{"shasum":"4c12b101bddbb8880c2356da6e454459a5eb8b75","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.4-1.2.3.tgz"},"directories":{}},"1.0.5-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.5-1.2.3","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"_id":"dateformat@1.0.5-1.2.3","dist":{"shasum":"f020b523df34cad3cd843f556f61f6d97c87b16e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.5-1.2.3.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"ctavan","email":"dev@tavan.de"},"directories":{}},"1.0.6-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.6-1.2.3","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"_id":"dateformat@1.0.6-1.2.3","dist":{"shasum":"6b3de9f974f698d8b2d3ff9094bbaac8d696c16b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.6-1.2.3.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"ctavan","email":"dev@tavan.de"},"directories":{}},"1.0.7-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.7-1.2.3","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"repository":{"type":"git","url":"https://github.com/felixge/node-dateformat.git"},"_id":"dateformat@1.0.7-1.2.3","dist":{"shasum":"ebb561bb7214ee57a8dc2687adab1d555de9419c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.7-1.2.3.tgz"},"_npmVersion":"1.2.0","_npmUser":{"name":"ctavan","email":"dev@tavan.de"},"directories":{}},"1.0.8-1.2.3":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.8-1.2.3","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"repository":{"type":"git","url":"https://github.com/felixge/node-dateformat.git"},"bugs":{"url":"https://github.com/felixge/node-dateformat/issues"},"_id":"dateformat@1.0.8-1.2.3","dist":{"shasum":"5d60c5d574dc778a7f98139156c6cfc9d851d1e7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.8-1.2.3.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ctavan","email":"dev@tavan.de"},"directories":{}},"1.0.8":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.8","main":"./lib/dateformat","dependencies":{},"devDependencies":{},"engines":{"node":"*"},"repository":{"type":"git","url":"https://github.com/felixge/node-dateformat.git"},"bugs":{"url":"https://github.com/felixge/node-dateformat/issues"},"_id":"dateformat@1.0.8","dist":{"shasum":"87799a3de21bffbf028bdd7ad044981327ac0a26","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.8.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"felixge","email":"felix@debuggable.com"},"directories":{}},"1.0.9":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.9","licenses":{"type":"MIT","url":"https://raw.githubusercontent.com/felixge/node-dateformat/master/LICENSE"},"main":"lib/dateformat","bin":{"dateformat":"bin/cli.js"},"dependencies":{"get-stdin":"*","meow":"*"},"devDependencies":{"for-own":"^0.1.2","mocha":"^2.0.1","should":"^4.0.4"},"engines":{"node":"*"},"scripts":{"test":"mocha test/test.js --require should "},"repository":{"type":"git","url":"https://github.com/felixge/node-dateformat.git"},"bugs":{"url":"https://github.com/felixge/node-dateformat/issues"},"_id":"dateformat@1.0.9","dist":{"shasum":"51cd7e33de43500c8cc0f7030af248d36c73ab15","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.9.tgz"},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"felixge","email":"felix@debuggable.com"},"directories":{}},"1.0.10":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.10","licenses":{"type":"MIT","url":"https://raw.githubusercontent.com/felixge/node-dateformat/master/LICENSE"},"main":"lib/dateformat","bin":{"dateformat":"bin/cli.js"},"dependencies":{"get-stdin":"*","meow":"*"},"devDependencies":{"for-own":"^0.1.2","mocha":"^2.0.1","should":"^4.0.4"},"engines":{"node":"*"},"scripts":{"test":"mocha test/test.js --require should "},"repository":{"type":"git","url":"https://github.com/felixge/node-dateformat.git"},"bugs":{"url":"https://github.com/felixge/node-dateformat/issues"},"_id":"dateformat@1.0.10","dist":{"shasum":"12a020a4694d68dcea307a762cbdcad54148783c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.10.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ctavan","email":"dev@tavan.de"},"directories":{}},"1.0.11":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.11","licenses":{"type":"MIT","url":"https://raw.githubusercontent.com/felixge/node-dateformat/master/LICENSE"},"main":"lib/dateformat","bin":{"dateformat":"bin/cli.js"},"dependencies":{"get-stdin":"*","meow":"*"},"devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"engines":{"node":"*"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"https://github.com/felixge/node-dateformat.git"},"bugs":{"url":"https://github.com/felixge/node-dateformat/issues"},"_id":"dateformat@1.0.11","dist":{"shasum":"f27cbee7a012bbfb82ea051562d3977f6093dbb1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.11.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"ctavan","email":"dev@tavan.de"},"directories":{}},"1.0.12":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"ctavan","email":"dev@tavan.de"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"}],"version":"1.0.12","license":"MIT","main":"lib/dateformat","bin":{"dateformat":"bin/cli.js"},"dependencies":{"get-stdin":"^4.0.1","meow":"^3.3.0"},"devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"engines":{"node":"*"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/felixge/node-dateformat.git"},"gitHead":"17364d40e61c06f6de228ab94f3660a27f357f01","bugs":{"url":"https://github.com/felixge/node-dateformat/issues"},"_id":"dateformat@1.0.12","_shasum":"9f124b67594c937ff706932e4a642cca8dbbfee9","_from":".","_npmVersion":"2.11.3","_nodeVersion":"0.12.7","_npmUser":{"name":"felixge","email":"felix@debuggable.com"},"dist":{"shasum":"9f124b67594c937ff706932e4a642cca8dbbfee9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-1.0.12.tgz"},"directories":{}},"2.0.0":{"name":"dateformat","description":"A node.js package for Steven Levithan's excellent dateFormat() function.","maintainers":[{"name":"ctavan","email":"dev@tavan.de"},{"name":"felixge","email":"felix@debuggable.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"homepage":"https://github.com/felixge/node-dateformat","author":{"name":"Steven Levithan"},"contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"version":"2.0.0","license":"MIT","main":"lib/dateformat","devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"engines":{"node":"*"},"scripts":{"test":"mocha"},"repository":{"type":"git","url":"git+https://github.com/felixge/node-dateformat.git"},"gitHead":"8802071cfc5e67095dec689ee2fa464b451e20d3","bugs":{"url":"https://github.com/felixge/node-dateformat/issues"},"_id":"dateformat@2.0.0","_shasum":"2743e3abb5c3fc2462e527dca445e04e9f4dee17","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"dist":{"shasum":"2743e3abb5c3fc2462e527dca445e04e9f4dee17","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/dateformat/-/dateformat-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dateformat-2.0.0.tgz_1480054524476_0.4571065616328269"},"directories":{}}},"name":"dateformat","contributors":[{"name":"Steven Levithan"},{"name":"Felix Geisendörfer","email":"felix@debuggable.com"},{"name":"Christoph Tavan","email":"dev@tavan.de"},{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"}],"time":{"modified":"2017-07-31T16:53:27.494Z","created":"2011-03-13T16:29:39.060Z","0.9.0-1.2.3":"2011-03-13T16:29:39.454Z","1.0.0-1.2.3":"2011-03-13T16:32:25.648Z","1.0.1-1.2.3":"2011-04-25T15:30:05.199Z","1.0.2-1.2.3":"2011-09-28T11:06:44.207Z","1.0.3-1.2.3":"2012-11-12T20:54:22.207Z","1.0.4-1.2.3":"2012-12-19T20:59:40.128Z","1.0.5-1.2.3":"2013-03-11T15:07:14.196Z","1.0.6-1.2.3":"2013-03-11T15:12:34.491Z","1.0.7-1.2.3":"2013-12-11T07:20:15.000Z","1.0.8-1.2.3":"2014-05-20T11:22:52.635Z","1.0.8":"2014-09-16T07:06:24.567Z","1.0.9":"2014-11-27T10:07:34.969Z","1.0.10":"2014-11-28T08:13:40.438Z","1.0.11":"2014-11-28T18:47:24.164Z","1.0.12":"2015-11-19T06:40:26.966Z","2.0.0":"2016-11-25T06:15:25.073Z"},"readmeFilename":"Readme.md","homepage":"https://github.com/felixge/node-dateformat"}