{"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"keywords":["file","filesize","size","readable","file system","bytes","diff"],"dist-tags":{"latest":"3.5.10"},"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"description":"JavaScript library to generate a human readable String describing the file size","readme":"# filesize.js\r\n\r\n[![build status](https://secure.travis-ci.org/avoidwork/filesize.js.svg)](http://travis-ci.org/avoidwork/filesize.js)  [![downloads](https://img.shields.io/npm/dt/filesize.svg)](https://www.npmjs.com/package/filesize)\r\n\r\nfilesize.js provides a simple way to get a human readable file size string from a number (float or integer) or string.\r\n\r\n## Optional settings\r\n\r\n`filesize()` accepts an optional descriptor Object as a second argument, so you can customize the output.\r\n\r\n### base\r\n_*(number)*_ Number base, default is `2`\r\n\r\n### bits\r\n_*(boolean)*_ Enables `bit` sizes, default is `false`\r\n\r\n### exponent\r\n_*(number)*_ Specifies the symbol via exponent, e.g. `2` is `MB` for base 2, default is `-1`\r\n\r\n### fullform\r\n_*(boolean)*_ Enables full form of unit of measure, default is `false`\r\n\r\n### fullforms\r\n_*(array)*_ Array of full form overrides, default is `[]`\r\n\r\n### output\r\n_*(string)*_ Output of function (`array`, `exponent`, `object`, or `string`), default is `string`\r\n\r\n### round\r\n_*(number)*_ Decimal place, default is `2`\r\n\r\n### spacer\r\n_*(string)*_ Character between the `result` and `suffix`, default is `\" \"`\r\n\r\n### standard\r\n_*(string)*_ Standard unit of measure, can be `iec` or `jedec`, default is `jedec`; can be overruled by `base`\r\n\r\n### symbols\r\n_*(object)*_ Dictionary of SI/JEDEC symbols to replace for localization, defaults to english if no match is found\r\n\r\n### suffixes (deprecated: use 'symbols')\r\n_*(object)*_ Dictionary of SI/JEDEC symbols to replace for localization, defaults to english if no match is found\r\n\r\n### unix\r\n_*(boolean)*_ Enables unix style human readable output, e.g `ls -lh`, default is `false`\r\n\r\n## Examples\r\n\r\n```javascript\r\nfilesize(500);                        // \"500 B\"\r\nfilesize(500, {bits: true});          // \"4 Kb\"\r\nfilesize(265318, {base: 10});         // \"265.32 kB\"\r\nfilesize(265318);                     // \"259.1 KB\"\r\nfilesize(265318, {round: 0});         // \"259 KB\"\r\nfilesize(265318, {output: \"array\"});  // [259.1, \"KB\"]\r\nfilesize(265318, {output: \"object\"}); // {value: 259.1, suffix: \"KB\", symbol: \"KB\"}\r\nfilesize(1, {symbols: {B: \"Б\"}});     // \"1 Б\"\r\nfilesize(1024);                       // \"1 KB\"\r\nfilesize(1024, {exponent: 0});        // \"1024 B\"\r\nfilesize(1024, {output: \"exponent\"}); // 1\r\nfilesize(265318, {standard: \"iec\"});  // \"259.1 KiB\"\r\nfilesize(265318, {standard: \"iec\", fullform: true}); // \"259.1 kibibytes\"\r\nfilesize(12, {fullform: true, fullforms: [\"байтов\"]});  // \"12 байтов\"\r\n```\r\n\r\n## Partial Application\r\n`filesize.partial()` takes the second parameter of `filesize()` and returns a new function with the configuration applied \r\nupon execution. This can be used to reduce `Object` creation if you call `filesize()` without caching the `descriptor` \r\nin lexical scope.\r\n\r\n```javascript\r\nconst size = filesize.partial({standard: \"iec\"});\r\n\r\nsize(265318); // \"259.1 KiB\"\r\n```\r\n\r\n## How can I load filesize.js?\r\nfilesize.js supports AMD loaders (require.js, curl.js, etc.), node.js & npm (```npm install filesize```), or using a script tag.\r\n\r\n## License\r\nCopyright (c) 2017 Jason Mulligan\r\nLicensed under the BSD-3 license.\r\n","repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"users":{"dukewan":true,"ash":true,"rdcl":true,"fleischer":true,"digitalextremist":true,"ngpixel":true,"ux_web":true,"princetoad":true,"alex-cory":true,"sadsenpai":true,"f124275809":true,"yuuan":true,"redstrike":true,"domjtalbot":true,"rajikaimal":true,"tcrowe":true,"yuch4n":true,"heineiuo":true,"chentel":true,"asaupup":true},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","versions":{"1.6.0":{"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com","url":"http://avoidwork.com/"},"name":"filesize","description":"JavaScript library to generate a human readable String describing the filesize","version":"1.6.0","homepage":"http://filesizejs.com","repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"main":"production/filesize.js","engines":{"node":"~0.6.11"},"dependencies":{},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"_id":"filesize@1.6.0","_engineSupported":true,"_npmVersion":"1.1.2","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"6faeda1ea1eef97385053a5d112d540408412eaf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.6.0.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.6.1":{"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com","url":"http://avoidwork.com/"},"name":"filesize","description":"JavaScript library to generate a human readable String describing the filesize","version":"1.6.1","homepage":"http://filesizejs.com","repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"main":"production/filesize.js","engines":{"node":"~0.6.11"},"dependencies":{},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"_id":"filesize@1.6.1","_engineSupported":true,"_npmVersion":"1.1.2","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"8a3dfaa56034fc9bf301d0edacc58446238d6f42","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.6.1.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.6.2":{"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com","url":"http://avoidwork.com/"},"name":"filesize","description":"JavaScript library to generate a human readable String describing the filesize","version":"1.6.2","homepage":"http://filesizejs.com","repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"main":"production/filesize.js","engines":{"node":"~0.6.11"},"dependencies":{},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"_id":"filesize@1.6.2","_engineSupported":true,"_npmVersion":"1.1.2","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"6d3e12b29ac5b2c96105d8f59117997eac2e062b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.6.2.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.6.3":{"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com","url":"http://avoidwork.com/"},"name":"filesize","description":"JavaScript library to generate a human readable String describing the filesize","version":"1.6.3","homepage":"http://filesizejs.com","repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"main":"production/filesize.js","engines":{"node":"~0.6.11"},"dependencies":{},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"_id":"filesize@1.6.3","_engineSupported":true,"_npmVersion":"1.1.2","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"9cbbf7f58e0918f1d92440f957c3ac9247f1b47d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.6.3.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.6.4":{"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com","url":"http://avoidwork.com/"},"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.6.4","homepage":"http://filesizejs.com","repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"main":"debug/filesize.js","engines":{"node":"~0.6.11"},"dependencies":{},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"_id":"filesize@1.6.4","_engineSupported":true,"_npmVersion":"1.1.2","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"1b34b65be8de5134807fdb2c41513538f715b516","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.6.4.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.6.5":{"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com","url":"http://avoidwork.com/"},"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.6.5","homepage":"http://filesizejs.com","repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"main":"debug/filesize.js","engines":{"node":"~0.6.11"},"dependencies":{},"devDependencies":{},"optionalDependencies":{},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"_id":"filesize@1.6.5","_engineSupported":true,"_npmVersion":"1.1.2","_nodeVersion":"v0.6.11","_defaultsLoaded":true,"dist":{"shasum":"c1bb3b2e9698d1a9e84840299206bc089d5f7b13","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.6.5.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.6.6":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.6.6","homepage":"https://github.com/avoidwork/filesize.js","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"http://opensource.org/licenses/BSD-3-Clause"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":[],"_id":"filesize@1.6.6","dist":{"shasum":"66763a94961b587f02e13a1920c3d03aebd75b43","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.6.6.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.6.7":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.6.7","homepage":"https://github.com/avoidwork/filesize.js","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"http://opensource.org/licenses/BSD-3-Clause"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":[],"_id":"filesize@1.6.7","dist":{"shasum":"0d0acf26851e2a7339ffc45ac87e3c2edff0e96e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.6.7.tgz"},"_npmVersion":"1.1.64","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.0","homepage":"https://github.com/avoidwork/filesize.js","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"http://opensource.org/licenses/BSD-3-Clause"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":[],"_id":"filesize@1.7.0","dist":{"shasum":"6955e9cdb23aca72d12a6c35a637e673aa5a08f9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.0.tgz"},"_npmVersion":"1.1.64","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.1":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.1","homepage":"https://github.com/avoidwork/filesize.js","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"http://opensource.org/licenses/BSD-3-Clause"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":[],"_id":"filesize@1.7.1","dist":{"shasum":"a3a4e89d01c7bfc8d059b48e0277d4515536761c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.1.tgz"},"_npmVersion":"1.1.64","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.2":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.2","homepage":"https://github.com/avoidwork/filesize.js","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"http://opensource.org/licenses/BSD-3-Clause"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":[],"_id":"filesize@1.7.2","dist":{"shasum":"0e67e186432d35add39cbe28fca0297d385bc06d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.2.tgz"},"_npmVersion":"1.1.64","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.3":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.3","homepage":"https://github.com/avoidwork/filesize.js","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"http://opensource.org/licenses/BSD-3-Clause"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.7.3","dist":{"shasum":"59674c6f79ae90da37dfcbd8ad6294f0e747dc8b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.3.tgz"},"_from":"filesize.js","_npmVersion":"1.2.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.4":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.4","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"http://opensource.org/licenses/BSD-3-Clause"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.7.4","dist":{"shasum":"43efdd0a6bfec25e14b0a2757b066b48f811fa9c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.4.tgz"},"_from":"filesize.js","_npmVersion":"1.2.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.5":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.5","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.7.5","dist":{"shasum":"c3a21557e137f3b8181d193f6d65bceb2bfbe990","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.5.tgz"},"_from":"filesize.js","_npmVersion":"1.2.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.6":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.6","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.7.6","dist":{"shasum":"6a22d5cccdc2cbd4bac1d04907fa9ebed22d8242","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.6.tgz"},"_from":"filesize.js","_npmVersion":"1.2.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.7":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.7","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.7.7","dist":{"shasum":"310581163913010e2664a4a2079a12f3cb070fcc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.7.tgz"},"_from":"filesize.js","_npmVersion":"1.2.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.8":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.8","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.7.8","dist":{"shasum":"decb4269f55aaf64c646e9a39b001b6f8e649cc3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.8.tgz"},"_from":"filesize.js","_npmVersion":"1.2.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.7.9":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.7.9","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.3.12"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.7.9","dist":{"shasum":"b0a87a236ba992c03ff68d264a092057e144c774","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.7.9.tgz"},"_from":"filesize.js","_npmVersion":"1.2.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.8.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.8.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-nodeunit":"~ 0.1.2","grunt-contrib-uglify":"~ 0.1.2"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.8.0","dist":{"shasum":"09faf54934a0bd9dc13ba13799e756646b504ede","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.8.0.tgz"},"_from":"filesize.js","_npmVersion":"1.2.11","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.9.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.9.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-nodeunit":"~ 0.1.2","grunt-contrib-uglify":"~ 0.1.2"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.9.0","dist":{"shasum":"9b0a553409fe0b43c646c61e06f2fe0af4f065e4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.9.0.tgz"},"_from":"filesize.js","_npmVersion":"1.2.11","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.9.1":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.9.1","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-nodeunit":"~ 0.1.2","grunt-contrib-uglify":"~ 0.1.2"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.9.1","dist":{"shasum":"734690797de4243e3717ed855c3e1384562dd674","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.9.1.tgz"},"_from":"filesize.js","_npmVersion":"1.2.11","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.9.2":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.9.2","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-nodeunit":"~ 0.1.2","grunt-contrib-uglify":"~ 0.1.2"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.9.2","dist":{"shasum":"52ba4903f7bfeb680a803225f62d038e64820db0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.9.2.tgz"},"_from":"filesize.js","_npmVersion":"1.2.18","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.9.3":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.9.3","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-nodeunit":"~ 0.1.2","grunt-contrib-uglify":"~ 0.1.2"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.9.3","dist":{"shasum":"51710588f400fd7491a2f5481fb3a7ef7232ec6c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.9.3.tgz"},"_from":"filesize.js","_npmVersion":"1.2.18","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.9.4":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.9.4","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.9.4","dist":{"shasum":"33ad8d942aca7a5b06109529b5ab958316fd345d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.9.4.tgz"},"_from":"filesize.js","_npmVersion":"1.2.23","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.9.5":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.9.5","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","filesystem"],"_id":"filesize@1.9.5","dist":{"shasum":"a80399479607ee5f27cfd512c47e3cb2bcdac4e2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.9.5.tgz"},"_from":"filesize.js","_npmVersion":"1.2.30","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.9.6":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.9.6","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","file system"],"_id":"filesize@1.9.6","dist":{"shasum":"c5120a8b9e246f41b886942ba2b3b2f10cc65385","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.9.6.tgz"},"_from":"filesize.js","_npmVersion":"1.2.32","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.9.7":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.9.7","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","file system"],"_id":"filesize@1.9.7","dist":{"shasum":"52c62ddc63ef308383724b862fc5217786f56997","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.9.7.tgz"},"_from":"filesize.js","_npmVersion":"1.2.32","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"1.10.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"1.10.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","file system"],"_id":"filesize@1.10.0","dist":{"shasum":"b22821f60dd9c4dff76a3d397ddb4d4948f8f423","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-1.10.0.tgz"},"_from":".","_npmVersion":"1.3.2","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"2.0.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"2.0.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","file system"],"_id":"filesize@2.0.0","dist":{"shasum":"4b60c9ee7cc8810f750d312b2d395692bb1a7077","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-2.0.0.tgz"},"_from":"filesize.js","_npmVersion":"1.3.11","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"2.0.1":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"2.0.1","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","file system"],"_id":"filesize@2.0.1","dist":{"shasum":"d9fa410e7becef098f5f3191b73b766cb91cf412","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-2.0.1.tgz"},"_from":"filesize.js","_npmVersion":"1.4.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"2.0.2":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"2.0.2","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","file system"],"_id":"filesize@2.0.2","dist":{"shasum":"9747a4c5122efb035e1e8f7e31854b9096832616","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-2.0.2.tgz"},"_from":"filesize.js","_npmVersion":"1.4.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"2.0.3":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"2.0.3","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","file system"],"_id":"filesize@2.0.3","dist":{"shasum":"8cdb248469d2f0481c3aa433e7d8bcab93626941","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-2.0.3.tgz"},"_from":"filesize.js","_npmVersion":"1.4.3","_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"2.0.4":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"2.0.4","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-exec":"~0.4","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"d3df0b047ae96a931b192b9decfaa4895190235b","_id":"filesize@2.0.4","_shasum":"7805941c60fcdfe63f46d7ea358c59ade11c1325","_from":"filesize.js","_npmVersion":"1.4.23","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"7805941c60fcdfe63f46d7ea358c59ade11c1325","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-2.0.4.tgz"},"directories":{}},"3.0.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.0.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2","grunt-contrib-uglify":"~0.6.0"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"a7fe91b78b3b97f08baf97ac52317be0ba2b247a","_id":"filesize@3.0.0","_shasum":"79f33de3b89e790b8277577b232d96eacf3d6f66","_from":"filesize.js","_npmVersion":"1.4.28","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"79f33de3b89e790b8277577b232d96eacf3d6f66","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.0.0.tgz"},"directories":{}},"3.0.1":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.0.1","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2","grunt-contrib-uglify":"~0.6.0"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"0af5ea1a69c97a46d12e24d27440b60f891ea87a","_id":"filesize@3.0.1","_shasum":"d4997133f2d3be6982d2232904ae2bff04b89a92","_from":"filesize.js","_npmVersion":"1.4.28","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"d4997133f2d3be6982d2232904ae2bff04b89a92","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.0.1.tgz"},"directories":{}},"3.0.2":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.0.2","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2","grunt-contrib-uglify":"~0.6.0"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"93ad0431f99f91f03019b071f5b2cd912c06e33b","_id":"filesize@3.0.2","_shasum":"f73fd4a020bc3927648f0dfb93032bc3f1426623","_from":"filesize.js","_npmVersion":"1.4.28","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"f73fd4a020bc3927648f0dfb93032bc3f1426623","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.0.2.tgz"},"directories":{}},"3.1.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.1.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-6to5":"^2.0.0","grunt-contrib-concat":"~0.1.3","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2","grunt-contrib-uglify":"~0.6.0"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"f214346fb577cf81801a75f60424ba64398e0ad1","_id":"filesize@3.1.0","_shasum":"f09ba6a9c20b3392d7986bd08e5fcb4500b67b7d","_from":"filesize.js","_npmVersion":"1.4.28","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"f09ba6a9c20b3392d7986bd08e5fcb4500b67b7d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.1.0.tgz"},"directories":{}},"3.1.1":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.1.1","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.5","grunt-cli":"~0.1.13","grunt-babel":"^4.0.0","grunt-sed":"~0.1.1","grunt-contrib-concat":"~0.5.0","grunt-contrib-nodeunit":"~0.4.1","grunt-contrib-watch":"~0.6.1","grunt-contrib-uglify":"~0.7.0"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"4fd437335cc6a9750f60362778f30e7f359e3c2a","_id":"filesize@3.1.1","_shasum":"3c54f2883b81546b2d17785354d30ed49e5eb6ca","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"3c54f2883b81546b2d17785354d30ed49e5eb6ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.1.1.tgz"},"directories":{}},"3.1.2":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.1.2","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"licenses":[{"type":"BSD-3","url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE"}],"main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.5","grunt-cli":"~0.1.13","grunt-babel":"^4.0.0","grunt-sed":"~0.1.1","grunt-contrib-concat":"~0.5.0","grunt-contrib-nodeunit":"~0.4.1","grunt-contrib-watch":"~0.6.1","grunt-contrib-uglify":"~0.7.0"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"a4448cdb63d1828c07ae3d2f8e1385d31f693135","_id":"filesize@3.1.2","_shasum":"8c1d047576086370999b23c32f217c4d51abf28a","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"8c1d047576086370999b23c32f217c4d51abf28a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.1.2.tgz"},"directories":{}},"3.1.3":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.1.3","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.5","grunt-cli":"~0.1.13","grunt-babel":"^4.0.0","grunt-sed":"~0.1.1","grunt-contrib-concat":"~0.5.0","grunt-contrib-nodeunit":"~0.4.1","grunt-contrib-watch":"~0.6.1","grunt-contrib-uglify":"~0.7.0"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"20b4ac454f9c6236b6611ddd1b9cbe97d0efbbd2","_id":"filesize@3.1.3","_shasum":"50464fa77c3ef4af6e2e910cbf9b6a3da343f73a","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"50464fa77c3ef4af6e2e910cbf9b6a3da343f73a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.1.3.tgz"},"directories":{}},"3.1.4":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.1.4","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"grunt":"~0.4.5","grunt-cli":"~0.1.13","grunt-babel":"^4.0.0","grunt-sed":"~0.1.1","grunt-contrib-concat":"~0.5.0","grunt-contrib-nodeunit":"~0.4.1","grunt-contrib-watch":"~0.6.1","grunt-contrib-uglify":"~0.7.0"},"keywords":["file","filesize","size","readable","file system"],"gitHead":"d60a6e280fd764b8ae7d64a064b949a234ddcff8","_id":"filesize@3.1.4","_shasum":"b9bf7799832177b009fb7912bb6692f936905f32","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"b9bf7799832177b009fb7912bb6692f936905f32","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.1.4.tgz"},"directories":{}},"3.1.5":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.1.5","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-eslint":"^4.1.4","babel-preset-es2015":"^6.1.2","grunt":"^0.4.5","grunt-babel":"^6.0.0","grunt-cli":"^0.1.13","grunt-contrib-concat":"^0.1.3","grunt-contrib-watch":"^0.2.0","grunt-eslint":"^17.3.1","grunt-contrib-nodeunit":"^0.4.1","grunt-contrib-uglify":"^0.9.1","grunt-sed":"^0.1.1"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"71cc5a5314a2efc60590254c532334b7771b7ad6","_id":"filesize@3.1.5","_shasum":"ea26f0b1313a1d02cac3ecaab8c54b2bbe193649","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"3.5.3","_nodeVersion":"5.1.1","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"ea26f0b1313a1d02cac3ecaab8c54b2bbe193649","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.1.5.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"3.1.6":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.1.6","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-eslint":"^4.1.4","babel-preset-es2015":"^6.1.2","grunt":"^0.4.5","grunt-babel":"^6.0.0","grunt-cli":"^0.1.13","grunt-contrib-concat":"^0.1.3","grunt-contrib-watch":"^0.2.0","grunt-eslint":"^17.3.1","grunt-contrib-nodeunit":"^0.4.1","grunt-contrib-uglify":"^0.9.1","grunt-sed":"^0.1.1"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"f7a059f43319b81283fe2e7ea7a47eda765c9b74","_id":"filesize@3.1.6","_shasum":"5884924efc81a644e3709aac403216183c3d798a","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"2.14.7","_nodeVersion":"4.2.3","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"5884924efc81a644e3709aac403216183c3d798a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.1.6.tgz"},"directories":{}},"3.2.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.2.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-eslint":"^4.1.4","babel-preset-es2015":"^6.1.2","grunt":"^0.4.5","grunt-babel":"^6.0.0","grunt-cli":"^0.1.13","grunt-contrib-concat":"^0.1.3","grunt-contrib-watch":"^0.2.0","grunt-eslint":"^17.3.1","grunt-contrib-nodeunit":"^0.4.1","grunt-contrib-uglify":"^0.9.1","grunt-sed":"^0.1.1"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"914d458a2721e52c800e764af6e89b0d73a55f7e","_id":"filesize@3.2.0","_shasum":"866c24f2ea8cc3f298ece56e4044c8d226e2a249","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"866c24f2ea8cc3f298ece56e4044c8d226e2a249","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.2.0.tgz"},"directories":{}},"3.2.1":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.2.1","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-eslint":"^4.1.4","babel-preset-es2015":"^6.1.2","grunt":"^0.4.5","grunt-babel":"^6.0.0","grunt-cli":"^0.1.13","grunt-contrib-concat":"^0.1.3","grunt-contrib-watch":"^0.2.0","grunt-eslint":"^17.3.1","grunt-contrib-nodeunit":"^0.4.1","grunt-contrib-uglify":"^0.9.1","grunt-sed":"^0.1.1"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"cc2ad7ae9684b91aa27b6067babeaf9642c658fe","_id":"filesize@3.2.1","_shasum":"a06f1c5497ed6358057c415e53403f764c1fb5e6","_from":"filesize","_resolved":"file:filesize","_npmVersion":"3.5.3","_nodeVersion":"5.5.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"a06f1c5497ed6358057c415e53403f764c1fb5e6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.2.1.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"directories":{}},"3.3.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.3.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-eslint":"^4.1.4","babel-preset-es2015":"^6.1.2","grunt":"^0.4.5","grunt-babel":"^6.0.0","grunt-cli":"^0.1.13","grunt-contrib-concat":"^0.1.3","grunt-contrib-watch":"^0.2.0","grunt-eslint":"^17.3.1","grunt-contrib-nodeunit":"^0.4.1","grunt-contrib-uglify":"^0.9.1","grunt-sed":"^0.1.1"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"4cef8ecf9c69ee386685176f05f7a96671d8111c","_id":"filesize@3.3.0","_shasum":"53149ea3460e3b2e024962a51648aa572cf98122","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"dist":{"shasum":"53149ea3460e3b2e024962a51648aa572cf98122","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/filesize-3.3.0.tgz_1461411827518_0.6209786960389465"},"directories":{}},"3.4.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.4.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"1ba7b0cf0ed083da3695c120016fced7ba3cdb97","_id":"filesize@3.4.0","_shasum":"9209c31721b601adc0e9fece181c0d9c5695d2ac","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"9209c31721b601adc0e9fece181c0d9c5695d2ac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.4.0.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.4.0.tgz_1484830473433_0.8620976186357439"},"directories":{}},"3.4.1":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.4.1","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"245aa6db2e43fb72eb5cb56c24f7423aff531d8d","_id":"filesize@3.4.1","_shasum":"8ea8935cb0eafde10dcb792eaf1caede6e94f127","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.1.2","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"8ea8935cb0eafde10dcb792eaf1caede6e94f127","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.4.1.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.4.1.tgz_1484880083039_0.324714164249599"},"directories":{}},"3.4.2":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.4.2","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"4d1e9ea21b79ca0af901fcc13a3609a44e2ebcc9","_id":"filesize@3.4.2","_shasum":"f0231ad53ec885423759873de9f124fe67219dd1","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.1.2","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"f0231ad53ec885423759873de9f124fe67219dd1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.4.2.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.4.2.tgz_1485016642672_0.6270120805129409"},"directories":{}},"3.4.3":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.4.3","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"7009d454bc235447228e39803efa2f416b89760a","_id":"filesize@3.4.3","_shasum":"8547c8dce97408fa4049cb366de0e31a256ddee1","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.1.2","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"8547c8dce97408fa4049cb366de0e31a256ddee1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.4.3.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.4.3.tgz_1485202159405_0.954010050278157"},"directories":{}},"3.5.0":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.0","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"7d8b65085d6e1436b34eebf6548702d136556d9a","_id":"filesize@3.5.0","_shasum":"b26d6e3e02233d4481ca5303bc1411dcb974e9d0","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.1.2","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"b26d6e3e02233d4481ca5303bc1411dcb974e9d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.0.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.5.0.tgz_1485301436092_0.20423144358210266"},"directories":{}},"3.5.1":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.1","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"1dee34f85781ccb63691570214e5bd8f1f835871","_id":"filesize@3.5.1","_shasum":"657bf886763996421fcdfe68e51d1d003c75f434","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.1.2","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"657bf886763996421fcdfe68e51d1d003c75f434","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.1.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.5.1.tgz_1485302292168_0.9717818738427013"},"directories":{}},"3.5.2":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.2","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"7bc227ec811ade1a7e2c58e01546893a2ee42b4c","_id":"filesize@3.5.2","_shasum":"ed78ea648fa47a58a8e9e09d50b3020c72f7424d","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.1.2","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"ed78ea648fa47a58a8e9e09d50b3020c72f7424d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.2.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/filesize-3.5.2.tgz_1485302928960_0.4611194508615881"},"directories":{}},"3.5.3":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.3","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"d957df3e3484b28470b008da45f1a34d54b85c0d","_id":"filesize@3.5.3","_shasum":"21bb31a5fe65eb4711793990211dafc2007ada2f","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.1.2","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"21bb31a5fe65eb4711793990211dafc2007ada2f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.3.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/filesize-3.5.3.tgz_1485303665144_0.22620296361856163"},"directories":{}},"3.5.4":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.4","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"7c75121420abb6a3c855b96cb7552cda7ae7e1f4","_id":"filesize@3.5.4","_shasum":"742fc7fb6aef4ee3878682600c22f840731e1fda","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"742fc7fb6aef4ee3878682600c22f840731e1fda","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.4.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/filesize-3.5.4.tgz_1485351961644_0.597131300251931"},"directories":{}},"3.5.5":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.5","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"422f427da4940984d2d267dd58a68fa517f0b9c6","_id":"filesize@3.5.5","_shasum":"3c2a5c14463919a218434721472b63cc30748992","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.3.0","_nodeVersion":"7.5.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"3c2a5c14463919a218434721472b63cc30748992","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.5.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.5.5.tgz_1487952411551_0.8131014292594045"},"directories":{}},"3.5.6":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.6","homepage":"http://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"77db5467b33a5ae44d1dec83bcbbbd58732cd815","_id":"filesize@3.5.6","_shasum":"5fd98f3eac94ec9516ef8ed5782fad84a01a0a1a","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.3.0","_nodeVersion":"7.5.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"5fd98f3eac94ec9516ef8ed5782fad84a01a0a1a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.6.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.5.6.tgz_1488845328179_0.2739389846101403"},"directories":{}},"3.5.7":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.7","homepage":"https://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","babili":"0.0.12","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"2edf1a3254e4792fad1f7f663987fa8e04d41348","_id":"filesize@3.5.7","_shasum":"28d7065628fc0b470e0980124788b5f416a9c841","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"28d7065628fc0b470e0980124788b5f416a9c841","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.7.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/filesize-3.5.7.tgz_1493486782888_0.038180332630872726"},"directories":{}},"3.5.8":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.8","homepage":"https://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"index","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","babili":"0.0.12","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"0e07bbae8ab619c071694ef9bf885c3c57be7521","_id":"filesize@3.5.8","_shasum":"5cd23aef46eeeaf812707f7098d245de513e4328","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"5cd23aef46eeeaf812707f7098d245de513e4328","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.8.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/filesize-3.5.8.tgz_1493487501528_0.5563171424437314"},"directories":{}},"3.5.9":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.9","homepage":"https://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","babili":"0.0.12","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~2.0.0","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"f928a6b297c0029ca946cd45d2c318991d469c33","_id":"filesize@3.5.9","_shasum":"9e3dd8a9b124f5b2f1fb2ee9cd13a86c707bb222","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"9e3dd8a9b124f5b2f1fb2ee9cd13a86c707bb222","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.9.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/filesize-3.5.9.tgz_1493559967222_0.24286751449108124"},"directories":{}},"3.5.10":{"name":"filesize","description":"JavaScript library to generate a human readable String describing the file size","version":"3.5.10","homepage":"https://filesizejs.com","author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","main":"lib/filesize","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"devDependencies":{"babel-preset-es2015":"~6.18.0","babili":"0.0.12","grunt":"~1.0.1","grunt-babel":"~6.0.0","grunt-cli":"~1.2.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-uglify":"~3.0.0","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~19.0.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"b93909e5ae236d091f162b4ea77bc2e9805eec3a","_id":"filesize@3.5.10","_shasum":"fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f","_from":"filesize.js","_resolved":"file:filesize.js","_npmVersion":"4.2.0","_nodeVersion":"7.9.0","_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"dist":{"shasum":"fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/filesize/-/filesize-3.5.10.tgz"},"maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/filesize-3.5.10.tgz_1495208374179_0.14096286986023188"},"directories":{}}},"name":"filesize","time":{"modified":"2017-06-06T15:04:29.612Z","created":"2012-05-08T18:45:10.479Z","1.6.0":"2012-05-08T18:45:10.962Z","1.6.1":"2012-05-08T18:58:40.605Z","1.6.2":"2012-05-08T19:06:50.178Z","1.6.3":"2012-05-08T19:24:05.698Z","1.6.4":"2012-06-06T12:21:26.599Z","1.6.5":"2012-06-26T12:19:11.382Z","1.6.6":"2012-08-15T22:37:45.973Z","1.6.7":"2012-11-02T22:25:41.970Z","1.7.0":"2012-11-02T23:56:23.696Z","1.7.1":"2012-11-03T00:15:54.509Z","1.7.2":"2012-11-03T00:31:50.474Z","1.7.3":"2013-02-02T19:29:56.860Z","1.7.4":"2013-02-02T20:11:19.666Z","1.7.5":"2013-02-02T20:22:41.623Z","1.7.6":"2013-02-05T16:25:37.073Z","1.7.7":"2013-02-05T20:37:26.873Z","1.7.8":"2013-02-05T21:16:00.463Z","1.7.9":"2013-02-05T21:29:04.106Z","1.8.0":"2013-03-03T19:15:57.252Z","1.9.0":"2013-04-07T12:31:35.528Z","1.9.1":"2013-04-07T20:43:25.548Z","1.9.2":"2013-04-11T20:07:24.995Z","1.9.3":"2013-04-14T15:58:45.507Z","1.9.4":"2013-06-13T21:43:42.730Z","1.9.5":"2013-06-18T21:32:18.344Z","1.9.6":"2013-07-05T13:51:53.886Z","1.9.7":"2013-07-08T18:32:44.738Z","1.10.0":"2013-07-19T10:43:40.921Z","2.0.0":"2013-10-12T12:58:57.589Z","2.0.1":"2014-02-25T00:39:04.902Z","2.0.2":"2014-03-01T02:55:15.735Z","2.0.3":"2014-03-01T03:18:37.124Z","2.0.4":"2014-10-02T10:42:00.877Z","3.0.0":"2015-01-04T14:03:46.044Z","3.0.1":"2015-01-12T12:29:29.564Z","3.0.2":"2015-01-29T11:39:32.283Z","3.1.0":"2015-02-04T11:50:33.033Z","3.1.1":"2015-02-24T11:45:22.766Z","3.1.2":"2015-02-28T00:38:30.493Z","3.1.3":"2015-07-27T23:40:43.560Z","3.1.4":"2015-11-13T11:57:49.491Z","3.1.5":"2015-12-22T15:00:15.494Z","3.1.6":"2016-01-19T12:24:58.067Z","3.2.0":"2016-01-22T12:32:19.913Z","3.2.1":"2016-01-30T16:38:12.960Z","3.3.0":"2016-04-23T11:43:49.350Z","3.4.0":"2017-01-19T12:54:35.275Z","3.4.1":"2017-01-20T02:41:24.815Z","3.4.2":"2017-01-21T16:37:24.435Z","3.4.3":"2017-01-23T20:09:21.428Z","3.5.0":"2017-01-24T23:43:58.025Z","3.5.1":"2017-01-24T23:58:13.936Z","3.5.2":"2017-01-25T00:08:49.191Z","3.5.3":"2017-01-25T00:21:05.382Z","3.5.4":"2017-01-25T13:46:01.884Z","3.5.5":"2017-02-24T16:06:53.497Z","3.5.6":"2017-03-07T00:08:50.148Z","3.5.7":"2017-04-29T17:26:23.176Z","3.5.8":"2017-04-29T17:38:23.435Z","3.5.9":"2017-04-30T13:46:07.520Z","3.5.10":"2017-05-19T15:39:34.341Z"},"readmeFilename":"README.md","homepage":"https://filesizejs.com"}