{"_id":"filesize","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"keywords":["file","filesize","size","readable","file system","bytes","diff"],"dist-tags":{"latest":"11.0.16"},"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"description":"Lightweight, zero-dependency JavaScript utility to convert bytes to human-readable strings with localization support","readme":"# filesize\n[![npm version](https://badge.fury.io/js/filesize.svg)](https://www.npmjs.com/package/filesize)\n[![Node.js Version](https://img.shields.io/node/v/filesize.svg)](https://nodejs.org/)\n[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)\n[![Build Status](https://github.com/avoidwork/filesize.js/actions/workflows/ci.yml/badge.svg)](https://github.com/avoidwork/filesize.js/actions)\n\nA lightweight, high-performance file size utility that converts bytes to human-readable strings. Zero dependencies. 100% test coverage.\n\n## Why filesize?\n\n- **Zero dependencies** - Pure JavaScript, no external packages\n- **100% test coverage** - Reliable, well-tested codebase\n- **TypeScript ready** - Full type definitions included\n- **Multiple standards** - SI, IEC, and JEDEC support\n- **Localization** - Intl API for international formatting\n- **BigInt support** - Handle extremely large file sizes\n- **Functional API** - Partial application for reusable formatters\n- **Browser & Node.js** - Works everywhere\n\n## Installation\n\n```bash\nnpm install filesize\n```\n\n## TypeScript\n\nFully typed with TypeScript definitions included:\n\n```typescript\nimport { filesize, partial } from 'filesize';\n\nconst result: string = filesize(1024);\nconst formatted: { value: number; symbol: string; exponent: number; unit: string } = filesize(1024, { output: 'object' });\n\nconst formatter: (arg: number | bigint) => string = partial({ standard: 'iec' });\n```\n\n## Usage\n\n```javascript\nimport {filesize, partial} from \"filesize\";\n\nfilesize(1024); // \"1.02 kB\"\nfilesize(265318); // \"265.32 kB\"\nfilesize(1024, {standard: \"iec\"}); // \"1 KiB\"\nfilesize(1024, {bits: true}); // \"8.19 kbit\"\n```\n\n### Partial Application\n\n```javascript\nimport {partial} from \"filesize\";\n\nconst formatBinary = partial({standard: \"iec\"});\nformatBinary(1024); // \"1 KiB\"\nformatBinary(1048576); // \"1 MiB\"\n```\n\n## Options\n\n| Option | Type | Default | Description |\n|--------|------|---------|-------------|\n| `bits` | boolean | `false` | Calculate bits instead of bytes |\n| `base` | number | `-1` | Number base (2 for binary, 10 for decimal, -1 for auto) |\n| `round` | number | `2` | Decimal places to round |\n| `locale` | string\\|boolean | `\"\"` | Locale for formatting, `true` for system locale |\n| `localeOptions` | Object | `{}` | Additional locale options |\n| `separator` | string | `\"\"` | Custom decimal separator |\n| `spacer` | string | `\" \"` | Value-unit separator |\n| `symbols` | Object | `{}` | Custom unit symbols |\n| `standard` | string | `\"\"` | Unit standard (`si`, `iec`, `jedec`) |\n| `output` | string | `\"string\"` | Output format (`string`, `array`, `object`, `exponent`) |\n| `fullform` | boolean | `false` | Use full unit names |\n| `fullforms` | Array | `[]` | Custom full unit names |\n| `exponent` | number | `-1` | Force specific exponent (-1 for auto) |\n| `roundingMethod` | string | `\"round\"` | Math method (`round`, `floor`, `ceil`) |\n| `precision` | number | `0` | Significant digits (0 for auto) |\n| `pad` | boolean | `false` | Pad decimal places |\n\n## Output Formats\n\n```javascript\n// String (default)\nfilesize(1536); // \"1.54 kB\"\n\n// Array\nfilesize(1536, {output: \"array\"}); // [1.54, \"kB\"]\n\n// Object\nfilesize(1536, {output: \"object\"});\n// {value: 1.54, symbol: \"kB\", exponent: 1, unit: \"kB\"}\n\n// Exponent\nfilesize(1536, {output: \"exponent\"}); // 1\n```\n\n## Standards\n\n```javascript\n// SI (default, base 10)\nfilesize(1000); // \"1 kB\"\n\n// IEC (binary, requires base: 2)\nfilesize(1024, {base: 2, standard: \"iec\"}); // \"1 KiB\"\n\n// JEDEC (binary calculation, traditional symbols)\nfilesize(1024, {standard: \"jedec\"}); // \"1 KB\"\n```\n\n## Examples\n\n```javascript\n// Bits\nfilesize(1024, {bits: true}); // \"8.19 kbit\"\nfilesize(1024, {bits: true, base: 2}); // \"8 Kibit\"\n\n// Full form\nfilesize(1024, {fullform: true}); // \"1.02 kilobytes\"\nfilesize(1024, {base: 2, fullform: true}); // \"1 kibibyte\"\n\n// Custom separator\nfilesize(265318, {separator: \",\"}); // \"265,32 kB\"\n\n// Padding\nfilesize(1536, {round: 3, pad: true}); // \"1.536 kB\"\n\n// Precision\nfilesize(1536, {precision: 3}); // \"1.54 kB\"\n\n// Locale\nfilesize(265318, {locale: \"de\"}); // \"265,32 kB\"\n\n// Custom symbols\nfilesize(1, {symbols: {B: \"Б\"}}); // \"1 Б\"\n\n// BigInt support\nfilesize(BigInt(1024)); // \"1.02 kB\"\n\n// Negative numbers\nfilesize(-1024); // \"-1.02 kB\"\n```\n\n## Error Handling\n\n```javascript\ntry {\n  filesize(\"invalid\");\n} catch (error) {\n  // TypeError: \"Invalid number\"\n}\n\ntry {\n  filesize(1024, {roundingMethod: \"invalid\"});\n} catch (error) {\n  // TypeError: \"Invalid rounding method\"\n}\n```\n\n## Testing\n\n```bash\nnpm test              # Run all tests (lint + node:test)\nnpm run test:watch    # Live test watching\n```\n\n**100% test coverage** with 149 tests:\n\n```\n--------------|---------|----------|---------|---------|-------------------\nFile          | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s \n--------------|---------|----------|---------|---------|-------------------\nAll files     |     100 |      100 |     100 |     100 |                   \n constants.js |     100 |      100 |     100 |     100 |                   \n filesize.js  |     100 |      100 |     100 |     100 |                   \n helpers.js   |     100 |      100 |     100 |     100 |                   \n--------------|---------|----------|---------|---------|-------------------\n```\n\n## Development\n\n```bash\nnpm install         # Install dependencies\nnpm run dev         # Development mode with live reload\nnpm run build       # Build distributions\nnpm run lint        # Check code style\nnpm run lint:fix    # Auto-fix linting issues\n```\n\n### Project Structure\n\n```\nfilesize.js/\n├── src/\n│   ├── filesize.js      # Main implementation (285 lines)\n│   ├── helpers.js       # Helper functions (215 lines)\n│   └── constants.js     # Constants (81 lines)\n├── tests/\n│   └── unit/\n├── dist/                # Built distributions\n└── types/               # TypeScript definitions\n```\n\n## Performance\n\n- **Basic conversions**: ~16-27M ops/sec\n- **With options**: ~5-13M ops/sec\n- **Locale formatting**: ~91K ops/sec (use sparingly)\n\n**Optimization tips:**\n1. Cache `partial()` formatters for reuse\n2. Avoid locale formatting in performance-critical code\n3. Use `object` output for fastest structured data access\n\n## Browser Usage\n\n```html\n<script src=\"https://cdn.jsdelivr.net/npm/filesize@11/dist/filesize.umd.min.js\"></script>\n<script>\n  filesize(1024); // \"1.02 kB\"\n</script>\n```\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guidelines](https://github.com/avoidwork/filesize.js/blob/master/CONTRIBUTING.md) for details.\n\n## Changelog\n\nSee [CHANGELOG.md](https://github.com/avoidwork/filesize.js/blob/master/CHANGELOG.md) for a history of changes.\n\n## License\n\nCopyright (c) 2026 Jason Mulligan  \nLicensed under the BSD-3 license.\n","repository":{"type":"git","url":"git://github.com/avoidwork/filesize.js.git"},"users":{"pftom":true,"digitalextremist":true,"shuoshubao":true,"chentel":true,"fleischer":true,"ux_web":true,"h0ward":true,"redstrike":true,"xuu":true,"heineiuo":true,"tcrowe":true,"ngpixel":true,"yuch4n":true,"asaupup":true,"keenwon":true,"yuuan":true,"tedyhy":true,"nuwaio":true,"sadsenpai":true,"rdcl":true,"dukewan":true,"alex-cory":true,"f124275809":true,"steel1990":true,"flumpus-dev":true,"ash":true,"felegz":true,"fabioper":true,"domjtalbot":true,"princetoad":true,"rajikaimal":true},"bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"license":"BSD-3-Clause","versions":{"4.1.1":{"name":"filesize","version":"4.1.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@4.1.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"03d7f25e7e2998e3098c5965137ded3a20220689","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-4.1.1.tgz","fileCount":5,"integrity":"sha512-wzYPdbKgAhpt7RH7A2eAK59sxEQQQfktupSDDNXzHRHn7FzZIlEHzORfvfVeSsl48rBqzXVlZML9b7h6EpP/9A==","signatures":[{"sig":"MEUCIB+j3uhOC8m/sMqTSSK7G4872mrhrwpEsic7HYVeDK6EAiEAwCLhYa+9Iw4dTqOLSepn7DiEp0sYLn/ukR5rv6W5GSc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15074,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZBTzCRA9TVsSAnZWagAAkZAP/jMUU8fmNh3iRn3vdT/c\nZklw7M6FkQMq4N3RSlCUD7ysiOsmSTHrvKZe7mjRSAAk6eac61XkQbvxqWPS\ndshLIAtoC4xD2PDHRr7yGXW2xTuKejwQy69+5BIqoXqtjgLldPrufO4nlAyr\ngNZcOgzOB/JSXBeD18WoRvB7iYY/Fn1IeRnmPc2PvCnbIIjB5WOa34Aa1EMY\nR2pQ1E2FqSJQDN+cI/o8BlChvAPStbsVlXQtdXUUr2YzafHjOF/wdsknzCCm\n98iDO5Tg/R1iRkuVbKJQ/q6sbUlUw31FuCM+kBiy1UsC/L0aN1Gixn6MYbrL\nC7vml2lK1wZIEXRBtbwyL05EcOEjqqlTO2bh1t72BFe1FZFj1lGIQ2QMfoRu\n+xh3EBJTDu6p7XcEbCzM2VYWJOBHyeTw36XqeAZetp7GljANcNydqTuO/c/r\nJCQvS5/hpVDv/ZetVnPsR4Tre1t0deHld58u2AGKjYE8QCucH9IRAWwlHG0+\nAd3DedahZOuu8DEWgGx4jxvseWNENbhHepksNDHXlBetE5/cvg6xdjNKrf6I\nJZntXwH9ltsifNalz9UrmL4pPRHyxNlVLOsUYdLc+m+ckMNBu698dpcfnVz/\ntqAkQWCRiMuyRZ6ObjFTbsAVNhGwehdg/FDYcrKBfVYoqfavwAS0Ho0iKu9t\n8IiK\r\n=JnX2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"3b71615b50e580a3c70a9419ad46b7d44ce63782","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.5.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.3","grunt-cli":"^1.3.2","babel-core":"^6.26.3","grunt-babel":"^7.0.0","babel-minify":"^0.5.0","grunt-eslint":"^21.0.0","babel-preset-env":"^1.7.0","grunt-contrib-watch":"^1.1.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^4.0.0","grunt-contrib-nodeunit":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_4.1.1_1550062835349_0.3515125251980309","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"filesize","version":"4.1.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@4.1.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"fcd570af1353cea97897be64f56183adb995994b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-4.1.2.tgz","fileCount":5,"integrity":"sha512-iSWteWtfNcrWQTkQw8ble2bnonSl7YJImsn9OZKpE2E4IHhXI78eASpDYUljXZZdYj36QsEKjOs/CsiDqmKMJw==","signatures":[{"sig":"MEYCIQDa5BK+ntD6HOrzr8KmRcV64TmJh2hC7bP814zIVt2pMQIhAM0Pbap3jQC81rZGjwwwAXY6ptqxRJ7h2Kk9+Gnx2gdU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZsPzCRA9TVsSAnZWagAAEqYP/1mybWFDduJATma8z7q/\nsAfb6LSqXIoo5hJj3o6fSqFdu0M+D1LkTMxY4nLO/vqXUpf847O4dUYHoRkA\nv5mKNWp0IvuePk+XPbGzUtUp4Km9UXd1vDa+QZaqhC0XhZ9NpKJAuY8cuN90\nSD3bW0tlVdpbBHlVgn2H5zqxBwciJEqexRfuolMdjafyxOVOrc7mTTKZjvnf\nF5AEx0Fpx8es70nIVCJLYXHPioeVirixYjDuGEn09TjqzgFOwdYty08adZLf\nkfM69m4cESPS7DCL5aR0jse35sjSeAS5S4ttTHRYUuj+8Ur06Lyx2QNX1BUr\n8gNTihbQf0Gh+Ovmo2Humw+WINnEuu7A1BEdp3I0bUgh/GN4sC1vFU39AMgZ\n/ZzBdfy0JO/7GXXbbg6NIiQL237gloLm8TbEVWGSs5vgXkAwObwgLhZ8hfh4\nyB+YWNB4d2BHpIuELL7fbK6xN2BGqXpi6u0TmbTteQTw07NWKVSjXAbLTbXy\nDy9DitdcbpbQ9RGvfSzmRKt8RYx3EgX5Kgd169nen3Wg8XPmjZXr0vauOV9j\n6tFZFq+6anga68E+2W2UV7jE8tckEWPIqtRY+dGkmgnb/YUMtO8heWjUe92Q\nFBYJQDq2zvk+rf0s4IjzVLaG94zxFHUa8XvQ+AGQBc2bHql+LRxHpW1drrhF\nczKE\r\n=O2BG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"dd8f7546dfe7d62977fdc184321e9413ab22a086","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.5.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"11.9.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.3","grunt-cli":"^1.3.2","babel-core":"^6.26.3","grunt-babel":"^7.0.0","babel-minify":"^0.5.0","grunt-eslint":"^21.0.0","babel-preset-env":"^1.7.0","grunt-contrib-watch":"^1.1.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^4.0.0","grunt-contrib-nodeunit":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_4.1.2_1550238707063_0.17504489474412743","host":"s3://npm-registry-packages"}},"8.0.2":{"name":"filesize","version":"8.0.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@8.0.2","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"59be16fa41c8d249e89ecaaf1422acf04220db98","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-8.0.2.tgz","fileCount":13,"integrity":"sha512-sm/y5NAhVbcJoqMdNdfqoR/Evi1sMpKDJvWu4fa0o5OHNvX7nSXXGsg/5Pcp5L8uuI/7Hbn82Kk2PTCJmCOemQ==","signatures":[{"sig":"MEUCIH2bPpTmoehBJbRQk45zjPg8APZqeXiFEB1FJj2l+rmqAiEArWMxkVATSRsV72D5viJwrUZB9JkoIGcszjHlC0kB8so=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPmHKCRA9TVsSAnZWagAAWMIP/RZZA/hYnVJuHg9x1Cu6\n74yl+jEBitrL1fODXiFdkCffA3egDqEr0g/T7h20mdSgZSjDz9mMof0pLS3H\nMbfTnj54wytKc4h21T96pIm5r47qoN956kk+H20ZCF4IvRdQl/I8YFpp+Wp3\nO1DBzohwmpdB4VxbyWGciJjD4NgmrZvOaHH+//xjmCOxTw4YqrpUjn0Dw4bZ\nxPcLYVx4/z2ZBPx/HUzU27j3YujcT4PwbbZwYz2HLxnzGDsxhGw2r8afYIVS\nXcYggOuEDCF/dxBcyqSItZJrkyeIWVGfeK3dL9FttZb1dpF7AY1IHgCP+Kgr\nmgTfb1pbZzE7uk7ohcJoKNMR30OaO0zrZ4jOVdNnOFMfA3HxggyE9sGZpsKm\nt8SB1aL7CeDSz42GsVoeQZ6+3TP6MyaIKKdwX7glVELz2rxyIo9BfL8TP3sw\nn8ppD5Yf/i0UeCS8LSDA3+fW7WL9c4zF7Ighw6dk7omSv9QGX1qh0EkdNMRX\n6cBP7Rd15Hd3Qjx0jrBTsDmB8HskpW3QhY2DiFbmXLjnjfE2NdTNDa4ekSFO\n4DVyp0Idpqv9+wx33xyoWxKJJgwb/s2m1hpeaS93YKpWzcGlF3LyO7DgPxDS\nNxFyaecHbcy56RSsLZJsk/+lAoOBOOSPqq5Z3v2H6AYPekAcO/uEZIEuNBUu\nIGhS\r\n=DK0A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"9a1fd51ba8847004cea51db1cab4cc8c63aa1129","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","types":"npx typescript src/filesize.js --declaration --allowJs --emitDeclarationOnly --outDir ./","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.20.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.7.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.32.0","rollup":"^2.56.3","nodeunit-x":"^0.14.0","@babel/core":"^7.15.5","auto-changelog":"^2.3.0","@babel/preset-env":"^7.15.6","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_8.0.2_1631478218741_0.8220725551170462","host":"s3://npm-registry-packages"}},"8.0.3":{"name":"filesize","version":"8.0.3","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@8.0.3","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"b53541cc42418ec716b41cd74831793964ff90ac","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-8.0.3.tgz","fileCount":13,"integrity":"sha512-UrhwVdUWmP0Jo9uLhVro8U36D4Yp3uT6pfXeNJHVRwyQrZjsqfnypOLthfnuB/bk1glUu7aIY947kyfoOfXuog==","signatures":[{"sig":"MEQCIBe+qrwL24Juwe0wb+k/vm59NgiXx5iF+Y/EBY98EvYmAiANzKewZogMrwg7sESYnb2jcrQPP9XM41oFUaHFeZTrbg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhP+mpCRA9TVsSAnZWagAALJIP/jMoaohWcQNE6eXqK6ul\nzEd6A1Vrohp8yD2nAwnD5qKmdJ4RJRdblqXmtPuJ5evDL1EFKGcQN9y3tajC\nnh4qxkcxYZHneMCqz5tKoZ8gi6yMyM+wdxYHBW0tt4a/ky5M3Xh4MHOCLB/l\nexhBfKVQFa6OAPiql9iliM5Qno017TdMWmOE1vlEacQXK9i4RADokCw0tBfa\nmwdpgA0QI1MGX1tzw8QFWyWHAwHUFuuiLYTngWTgRvIQwX+N2r7lpPTHq49b\nhtf8EWPbWm7umezK9WGY0nyUk4qmlYfTRIKUA1OcPtSamY2CSZIBO0jLdI0j\nFoBdg1l4uhwPvClu0cGwXvW/Bv1subaKmYddy9OQCxSxtuccqc+n7NkOfEXM\nU2Yt9YKMSNdsI9kPQpFiq8IHbsVGxIdjMS33GkKGLA9isZM2c0MME0bQRT9a\nY9t2ZX72GIdDE372J+GYprGIG989tITECQlMJqmY8VFf4Dr5XO979hhmzB9Y\nl3rwhNUEEierCi3XIWEPunMH7Hs2njVNWn2tMG/RNXlYhVU0P/VXBmdzcEOv\nFxC73oA86dWFJu1GFy//6lIYN1FBfidYgwDi3JnHy9/Ut4eDhEodnK/e7RrN\nd1e7V6VxPX0309o21kbZL4HzFcft/sYIiC0Tfk7kbX2xPQt/+8GGj8eG9UaD\nvvD8\r\n=hBRN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"afd78c28524d7a9e4830769385d2ade467991d90","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","types":"npx typescript src/filesize.js --declaration --allowJs --emitDeclarationOnly --outDir ./","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.20.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.7.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.32.0","rollup":"^2.56.3","nodeunit-x":"^0.14.0","@babel/core":"^7.15.5","auto-changelog":"^2.3.0","@babel/preset-env":"^7.15.6","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_8.0.3_1631578536763_0.8165784150475341","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"filesize","version":"8.0.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@8.0.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"532db71cb8a04df7d403da054a28de1b648534e0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-8.0.0.tgz","fileCount":13,"integrity":"sha512-sb690gQx3y/5KZIztgWAKM/r4Hf1V3R8mkAE0OhasMw2FDYduFTYCji8YN9BVpsGoMxrHPFvia1BMxwfLHX+fQ==","signatures":[{"sig":"MEQCIBKxvLeiN15WxHHCqQuQqVb8bA/P8Z1h/GvZ67nyP+5rAiAfuzPwnJzdKdsL2BhC+zvtMiWBU2qAOHcYiqVtsgUx3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhHTbECRA9TVsSAnZWagAA48EQAIRmoKuPWDuqNtB5nbRI\nY3WuCroeuamAnbkxu66h+yHyegHC0IVPAd4UKW7OQxMTuBW4Cmmh6wz+0lMT\nN/X/X496Kdl2lIjUHoeQQMXg43cNOchIAtUjDfQXISJbBEkeEXZNVHX0rSnM\n2rgZJAuBU8hMejTnzyR4a1gU1M7EhSBmTlQ469aK6YpFp2QkzH8QoRXvEf5k\nAsB1cvCu1JJco2RZl/1tXklQCl1RmwBfHS8xt2yFEA42+PF5qxfy+sWZtVFj\npxzS59xZ+pnXnZTDf9Du7S10pAom1XA/BfA/dH5OH9Wk3VRx/QFXOxlZ2VSL\nOqeh19bNahh/7MzzqLOsMBQ+Le6y16d7kOy03uzpPOqn/VIG+NkLuDA6iOSG\nXQE0ikQ/dc4t3gfr31T+SgHypijoTezyPtXhFf0ntRMZXzuYU+xrMacBMJEQ\nUdd5v+pUFG1OsjJu3pVAw062KTZcaKZB4FDqCPxNNzeMQLxfWsBrzWBHdrQq\nhoY9iK3R/UvdjajGT4SF6E46AKZ953lckGqUswjSutMffvhFZ5gNW+INtDBf\neDZLv7j+D++3hW1BxBOC0HLSwEB+WK8/4utY1cSRsUcrbucEl/sfQN4t6yXe\nABhbZCDCegtrFhQ9nCiOMSaPCtWUSNNEYnCgQv5O2MP8c6C0V+aXd+jCQAzf\nLYnt\r\n=atUb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"9633cdaf09ff371b3e2258380c5976c29834add4","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","types":"npx typescript src/filesize.js --declaration --allowJs --emitDeclarationOnly --outDir ./","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.20.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.7.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.30.0","rollup":"^2.53.1","nodeunit-x":"^0.14.0","@babel/core":"^7.14.6","auto-changelog":"^2.3.0","@babel/preset-env":"^7.14.7","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_8.0.0_1629304516489_0.43239011934119786","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"filesize","version":"8.0.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@8.0.1","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"8f943ae8f5a53f0453db5f4e913e220bf192b646","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-8.0.1.tgz","fileCount":13,"integrity":"sha512-SLuHPgUuVBWXXuh4mRY5HYbNcNSRtXKDvVfQipVp5csdXLynVZ1MpSW82x+hWfu9rjmFGNMiUhKzMUUMsMnA7Q==","signatures":[{"sig":"MEYCIQCbIYidsCGPyDGlJLswuK7JS3aoDyyT2zl36jsXcHbDVQIhANU5Ga0UxeYn0Bka7All6sLvNrjdD1Xp/K6Crm2mt5ot","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59713,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPly/CRA9TVsSAnZWagAAF3sP/37IENROOev7ER4EO+ty\nrt3i3z2Ux+Pz9rC9qw03ziFZbzNhqkvb1Et0LLpQDTQClK+AQWt20Y2rqaZE\nRe0K4nRjaZ5mS/HvZeJ5piPUgchQbW99WEIHWFt2l1mCRKNC+Yr2WkzuIQi4\n3t8LyaeCAfi5QpX+utU7Ig6AxJqwK+ALxsew3BdMXny05zVBDSFzfyvwoFR7\nXKX8ED4yDec5EdLC+L/xs9HOFGmkXEBQ95WwLpvIvYyfiO0coCUv+qZLcd8o\nEur3RvKKml3x+OD2je93MnIMxacTC3ws2rExLcslC+ga0uylexOxkXdPYPjS\nPogYEBlyDpGpPLelzi9GTE+G2HZrP7f/MOsfDA22hTCMIZG+aICnLh+ZTj2X\n/v0tFP5vn5W9hctluJVS3WfMN2VyfJ3T/4QD7zPuGqvSmzR0X71BdDcdpqW0\n4puZ/uGoIYOvFQ3DxKl29i5ciqlgY1Va5NHS7FWiMhCws4vXc9DXO4nliiFD\nchEEux+qe3kT5LH6Ffd1foetBspvc6w+EixtAMBUtL0vMYvY9Jf/kmWP9yNP\nCAxN+yAG17/JmtGhyZBPqh/sn/bsn8upYXPJXJw0ZhiR8t4uXUlKxQ7NT0AP\nbhEdK8eCzFalPTADKirjIIJLWSEehh1eC5C4GamvSFe5hTGfRuBLlWOm6it+\nAWJ7\r\n=YuQ4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"50247490d2cd4eec62cce70e395a354c8df704bb","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","types":"npx typescript src/filesize.js --declaration --allowJs --emitDeclarationOnly --outDir ./","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.20.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.7.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.30.0","rollup":"^2.53.1","nodeunit-x":"^0.14.0","@babel/core":"^7.14.6","auto-changelog":"^2.3.0","@babel/preset-env":"^7.14.7","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_8.0.1_1631476927265_0.08630228048455879","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"filesize","version":"3.3.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.3.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"53149ea3460e3b2e024962a51648aa572cf98122","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.3.0.tgz","integrity":"sha512-NvSgkZWHdeyYI2wSBWSRrj7SPUoTiotP3zcuGef4s5VDy2dO6XtFSImyFL6qVLpdmm0QQLQmxNWG7XU1B1Y6Xg==","signatures":[{"sig":"MEUCID4aQQTrOip5m313UdAo5TxgxcP129u5lZyESvj4MxsWAiEA1fsnIhqnVJmMhO3JAzxH43FyBJKAKPY7aUVb8ZvsgHY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"53149ea3460e3b2e024962a51648aa572cf98122","engines":{"node":">= 0.4.0"},"gitHead":"4cef8ecf9c69ee386685176f05f7a96671d8111c","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"3.3.12","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"grunt":"^0.4.5","grunt-cli":"^0.1.13","grunt-sed":"^0.1.1","grunt-babel":"^6.0.0","babel-eslint":"^4.1.4","grunt-eslint":"^17.3.1","babel-preset-es2015":"^6.1.2","grunt-contrib-watch":"^0.2.0","grunt-contrib-concat":"^0.1.3","grunt-contrib-uglify":"^0.9.1","grunt-contrib-nodeunit":"^0.4.1"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.3.0.tgz_1461411827518_0.6209786960389465","host":"packages-16-east.internal.npmjs.com"}},"6.4.0":{"name":"filesize","version":"6.4.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.4.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"914f50471dd66fdca3cefe628bd0cde4ef769bcd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.4.0.tgz","fileCount":10,"integrity":"sha512-mjFIpOHC4jbfcTfoh4rkWpI31mF7viw9ikj/JyLoKzqlwG/YsefKfvYlYhdYdg/9mtK2z1AzgN/0LvVQ3zdlSQ==","signatures":[{"sig":"MEYCIQCEuBKe4cjDdPQS3PD5Kw/eRdzSEJ8nZalB/fb7CpKYxQIhAL1PI0y9M/GPLaSv8mCNBdNKU1dMNbDf+QUr0qoOqm2i","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44051,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg27q0CRA9TVsSAnZWagAAu3gP/i9MMjR55VgWjRwfM6Fb\nBol/zhiKOW5VGTfNkgs+E76lP3L4gyYrnPOTsyz04Ir1+MV4CHc+Ex3K2YEA\nmVi9YPyCAg5DZXC7q7MhSPU9mWssbASyYjXszZgq+QjuG3euXPIbw0tAKFqR\nQaqVghJNCAGFi+3ZDRzJk56Q0sDguglymuHl9jW/NbkYzmHBQuCPOlt8KM8u\nIj5fLsNPEGvHjqXrNVr/9b2iDI8sjjMeNfWAUfQPPbta0pJvRCsxPCjs3N1W\nlnty3SnfAB2qLjG2EdX7N0Da/cY0kJksP3oPdWyqiAudQkkiRfPULfpy2PWh\nRMqboWGICKAWqkrjXo2eOrMPEY1GBbVBCgOaG/LGVTEL5mFR+0bipKofXolT\n4M2gCLYkWUAVBTJP65yLCty67Ld6YdTz7EwyHzAN+P9PBzg0TmiJBTWXEmui\nhIETzDevMKXIs60gqiiPJ88Qnxi4Hq29DnqOrZlPjOE82Hsm+XX5RoruDZDI\nl28qHN0vizEslr+XmeXe4IRZr5AEUPVgyacMYZvS8fn20J9/ivjJKQIuMU3u\n3klNutS7BEjZi+fd0+B7ksByWGn37iSvhCy0AvktnjVsU7taOCBDCqOCXId+\nJVex6TeEHSeofcAVfKx5LmbFT88PgGUk0x5rKMqLDgVp6Ha2ORdE9fXydM4s\nF+MB\r\n=RuYK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"713000eda0a067e38a89aa0b54db375656fb4121","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","types":"npx typescript src/filesize.js --declaration --allowJs --emitDeclarationOnly --outDir ./","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.15.1","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.3.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.29.0","rollup":"^2.52.3","nodeunit-x":"^0.14.0","@babel/core":"^7.14.6","auto-changelog":"^2.3.0","@babel/preset-env":"^7.14.7","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.4.0_1625012915435_0.4740220198723477","host":"s3://npm-registry-packages"}},"10.1.3":{"name":"filesize","version":"10.1.3","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.1.3","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"9400f2173d653d01b5ca7c4d0c7ce08d712561c8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.1.3.tgz","fileCount":6,"integrity":"sha512-tKkcI5C2NusO37lq7d9WMBgqCaNHmW9Rv72Fe6vOwmOUjylr+46jwC4u7BXaraF4jupzmesmYS4ISA9V3I08ZA==","signatures":[{"sig":"MEYCIQDV5QMlpJA4woX5vkw/qYAADq8MYNFKi3sgKAJCAwfsdQIhAPntEmff9J1LHCL8OpGyw2lddbtuuYgj+bnN+3rPQcYU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20173},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"5b2198ac0249bd10c9422561ab8e0450c79f2d51","scripts":{"fix":"eslint --fix *.js src/*.js test/*.js","lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"nyc mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","prepare":"husky install","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"10.7.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^17.0.0","husky":"^9.0.11","mocha":"^10.6.0","eslint":"^9.6.0","rollup":"^4.18.1","typescript":"^5.5.3","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.1.3_1720480041222_0.2654385240185322","host":"s3://npm-registry-packages"}},"10.1.2":{"name":"filesize","version":"10.1.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.1.2","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"33bb71c5c134102499f1bc36e6f2863137f6cb0c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.1.2.tgz","fileCount":12,"integrity":"sha512-Dx770ai81ohflojxhU+oG+Z2QGvKdYxgEr9OSA8UVrqhwNHjfH9A8f5NKfg83fEH8ZFA5N5llJo5T3PIoZ4CRA==","signatures":[{"sig":"MEQCIFBxvF2WHOeZ56nMpfHYlsxczrgOQxSsccooP7oGpyfHAiB6YJcFtHDu3xfzQvsCTNxcrgGv3gPnCZCliVlbcCHfXg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53037},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"e840b876572067a6e832e610331bcf146f2e7b5e","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"nyc mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","prepare":"husky install","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"10.5.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"21.7.3","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.1.2_1715459997075_0.38550410930809353","host":"s3://npm-registry-packages"}},"10.1.1":{"name":"filesize","version":"10.1.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.1.1","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"eb98ce885aa73741199748e70e5b7339cc22c5ff","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.1.1.tgz","fileCount":12,"integrity":"sha512-L0cdwZrKlwZQkMSFnCflJ6J2Y+5egO/p3vgRSDQGxQt++QbUZe5gMbRO6kg6gzwQDPvq2Fk9AmoxUNfZ5gdqaQ==","signatures":[{"sig":"MEUCIBeHvT/HJqAdXdwpvSgGRuz/hLbLOzY7RIDXPAgoZZUYAiEAxCNJURcBdG8OcmOq6Kjn6+iqg/MHl61Z8X1IEE+cTm4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53028},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"cf1dcb70a216c7321eb4a018293689c2c994a09e","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"nyc mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","prepare":"husky install","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.11.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.1.1_1711013666613_0.8814727964658788","host":"s3://npm-registry-packages"}},"10.1.0":{"name":"filesize","version":"10.1.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.1.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"846f5cd8d16e073c5d6767651a8264f6149183cd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.1.0.tgz","fileCount":12,"integrity":"sha512-GTLKYyBSDz3nPhlLVPjPWZCnhkd9TrrRArNcy8Z+J2cqScB7h2McAzR6NBX6nYOoWafql0roY8hrocxnZBv9CQ==","signatures":[{"sig":"MEQCICC0W49leCdULl7j+slvfAcMSQ3+HS0nMdH+f7ZIVBHBAiB3bO3v6xqDBPcTtdJ5O4dIY/+BPHwi+3Pn6xE+eF6AXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53173},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"b5d1ea907f34355795d8f59f86257ea18dd80f41","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"nyc mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","prepare":"husky install","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"9.8.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"20.5.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^15.1.0","husky":"^8.0.3","mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.1.0_1696336875001_0.0503136677007372","host":"s3://npm-registry-packages"}},"1.7.0":{"name":"filesize","version":"1.7.0","keywords":[],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://github.com/avoidwork/filesize.js","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"6955e9cdb23aca72d12a6c35a637e673aa5a08f9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.0.tgz","integrity":"sha512-D8ZG6cDwUQGc7Bick00SCGJHy7sGtyy311zrqirpWdlBUQsmI5OeKeMHqVXNBew/a8MBllk3A3A+V55mW7oFBA==","signatures":[{"sig":"MEQCIFfvBoldsnlvNxur8Ny5JJa1hZANyWQW5/AACg2TY6RvAiBmz8ItgoPXpuA4vQ7c+po5HTqvGo0aUy5cVXaOdh6mcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"http://opensource.org/licenses/BSD-3-Clause","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.64","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"6.0.0":{"name":"filesize","version":"6.0.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.0.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"c94523a913edd92773780c7f739bd97e9c03c95e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.0.0.tgz","fileCount":11,"integrity":"sha512-vkguNeO1gx21M3dC3YCL4XATYDhrPPNkzgtBStO0/YPQ1/ay/0js88cvSP2sSqXsZzDVpCVekHZ6tHafTo8pDg==","signatures":[{"sig":"MEQCIDCD7AbvZ7i4C7cgUaSHWYLHCkMyShMgTo+USO8wfr3fAiBe/AQSVuLgHf+0Ed3mchvhUXE9dx9qgO/ptuDCyKwnkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduj4qCRA9TVsSAnZWagAAQEAP/A5FJySAaA5YlWx57fPg\nsrdtthMjo6rRkOSWpb332rTGztZPHIVdE80vsqVK67SswVC0UusVuMBtVQOw\ngkl6BZejxHKDvjVKtJej+8DTUgugNA4WDGahGMICUCSSgTLSy11zPtLrTbgg\n7C0SrxV11+YBY1zB4q2jvdgxyercqf/RWDsfx+d2gbPuwWqPo1PcPDvCgUAe\n2Kh+NcLgZeHi3kvZLyDAw3q972IA8hEe8zASY1iHNDQ7qMqvVqyw1IOR+cMP\nwIxblv8iIEwNFhC08E9uEM4ulJB1Pq4Ceu0NSRMTLbs4PIxxa7eYtCdeZbTv\ni9U/FPuEwm5G0lB0x6ImRjeJYD/EhP62KghlbIsO8ho2S46nHjzIun5V4fGd\n5SmzwhpUKoAwidx7swLb0rn8qtrQfwmLrFMU7H/+o4FYslqxwGO0z+inhN0M\nWwzL7xmVXYXUYcig00FnS2fZ/bD4d6x+dRS+r82Lo2eEErFRolHwR5ArKZaV\ngC8euaNbn0/FC8QbEJCOWI9FIIJqu9Qxus82ejnhqGGUbVuMfyqziGLbKetn\nY8karSsJkBK/D14m2OawCWnG0BOzTO8J9WP9MjJ4LHkVi1uucR5ZpFNHdan2\nVseUgrZP6YSYZlpXvBX58BjrOm3zLoDcPdZQOzHOyhJ55WTmuQaviRKqAizP\n1i5p\r\n=jlQ2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"48b7e40aa0996eb863b6521b31b2141bd048b2fd","scripts":{"test":"grunt test","changelog":"git log --date=short --tags --format=\"[%cd] %h%d %s - %cn (%ce)\" > CHANGELOG"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.12.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"12.13.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.4","grunt-cli":"^1.3.2","babel-core":"^6.26.3","grunt-babel":"^8.0.0","babel-minify":"^0.5.1","grunt-eslint":"^22.0.0","babel-preset-env":"^1.7.0","grunt-contrib-watch":"^1.1.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^4.0.1","grunt-contrib-nodeunit":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.0.0_1572486697539_0.6422701660234884","host":"s3://npm-registry-packages"}},"1.7.1":{"name":"filesize","version":"1.7.1","keywords":[],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://github.com/avoidwork/filesize.js","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"a3a4e89d01c7bfc8d059b48e0277d4515536761c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.1.tgz","integrity":"sha512-wLE89i7JgHAKEb9qeRhwjvx9c4mBvkONcXTx3qCke0CnzUBGsTvIixEwUYJyfVU5Zi0/xthEITMyI+fVAFPV5w==","signatures":[{"sig":"MEYCIQCU4sIiuGxuRB51VpGL7Zi5rHCL5JWGKqL8zMaHlqOMXgIhAMqBtDj8FyhM2DnQ6SCGCACpcpJxb+G/Hkd7q+2hZcNC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"http://opensource.org/licenses/BSD-3-Clause","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.64","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"6.0.1":{"name":"filesize","version":"6.0.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.0.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f850b509909c7c86f7e450ea19006c31c2ed3d2f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.0.1.tgz","fileCount":11,"integrity":"sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg==","signatures":[{"sig":"MEUCIF9F3NJfAkAyWt0j7bqfOGfBTz4oZmK5Vktn/+a+timzAiEAm7yPU8a4o+cuKcqn73TAfemJ2m2UcDVqSUa1VHKYNHY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64780,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxfleCRA9TVsSAnZWagAAXhAP/3onWUO9hfEwfFn3/Tnu\ncGL2ivyfEBzDGXvmMpFCH5ExqCa8Z35og0LU+Sigl9bEWqP6CDKV4WCcuPay\n/NQTflRiNX8Ge7Olw1EfxJ9DuG4sRZrF4Nq1oRGb+EDa8eYNyUwklzJUAAIY\ncbMw/5+HCKckcQ0OHOJmbwvF3N2APGSUAAhXYZzVdhYON3X0UXcL2JgSqLan\nxA1CpkRpk3Hpzk8E49FbnpbCZvh029bCURmZ6mCMQh6J78AOcwq7XZUmH1E+\nv35F8EqIuYMAuEa5nxPpnBfyBq4KQP+y5PvxslVT3mTMByQgGAuGdwqqEp+0\n5SRbtiznmcogDMQQPsZZXN/xRqJHtW58s3+ordVzBqvC0OD8KcO82XPs9myv\n0YruXByuumRPEqXRwZ5yr3S07VbuI9bvocEeLTWxnz9kr0hegekj0eNYPnUu\n/SIfri8YRipRbj/FZGjGV/XAowicISifsQkmmF2Y9IsvrgoPiMpTfyJSJcOX\nIPm3GgDNnWZU47qNw4NAzVD35lUXuJVNK4zDHuRmYhT/Vbn3UwCuRsY/8A8H\nc6Ijuo3/WsgOLq425NIUFm1S/sP8iuUwlew75KW3Obpru13PjGj2GjveTD4K\ndqzFaSJUfP/DkCJNdAvJFwkok09dqGeUp5PpoJl0kOl0S6FeIeXuDzYa8KX7\njEjO\r\n=xHOr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"cb5d673331f5bbe75f88d499c9d9511ccb97980a","scripts":{"test":"grunt test","changelog":"git log --date=short --tags --format=\"[%cd] %h%d %s - %cn (%ce)\" > CHANGELOG"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.12.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"12.13.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.4","grunt-cli":"^1.3.2","babel-core":"^6.26.3","grunt-babel":"^8.0.0","babel-minify":"^0.5.1","grunt-eslint":"^22.0.0","babel-preset-env":"^1.7.0","grunt-contrib-watch":"^1.1.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^4.0.1","grunt-contrib-nodeunit":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.0.1_1573255517806_0.5629719809807257","host":"s3://npm-registry-packages"}},"1.7.2":{"name":"filesize","version":"1.7.2","keywords":[],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://github.com/avoidwork/filesize.js","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"0e67e186432d35add39cbe28fca0297d385bc06d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.2.tgz","integrity":"sha512-5itZRHj/7Jd4CwZ/qIXiBFBBTNnCUfujc/0fQydbnm8+lp+q4JMJqyQbQtvZqZnwVTM7d+vGPRAiep5HQlrSXg==","signatures":[{"sig":"MEUCIFXYpJjS/VKh0NIOBtutXnSXnF1jYw2K0zSYTOpOV14UAiEAquyGiPYS2X91LEZd0o1IeBTFMMWP9aD5cg5hwCz7bOE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"http://opensource.org/licenses/BSD-3-Clause","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.64","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"1.7.3":{"name":"filesize","version":"1.7.3","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.3","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://github.com/avoidwork/filesize.js","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"59674c6f79ae90da37dfcbd8ad6294f0e747dc8b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.3.tgz","integrity":"sha512-M6a2jf/09rTOFcTvktQmHXw3qG+L8NVdQe+uVOFH/tXs72yajHRegVT6HdL4okuKTyKTJbZh7xG1Cspzg7wzWg==","signatures":[{"sig":"MEUCICDCojSD2uIDyVLnP8cx2D9A70j0CHz4gf4EgEA7OnijAiEAqQYT8yrIWu3v627vkwSHLeEHZWS64xV1/NEVpdFlSv4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"http://opensource.org/licenses/BSD-3-Clause","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"10.1.6":{"name":"filesize","version":"10.1.6","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.1.6","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"31194da825ac58689c0bce3948f33ce83aabd361","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.1.6.tgz","fileCount":6,"integrity":"sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==","signatures":[{"sig":"MEYCIQCGdJCuHj4goYCklnz0e31Z4U3uPzjGKurtFCBsAtqrnQIhAIP8rVplABC6ePbMpiAEFFt2wtdT0FVE2DL0fdV15CzR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20231},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"b480b2992a3ac2acb18a030c7b3ce11fe91fb6e0","scripts":{"fix":"eslint --fix *.js src/*.js test/*.js","lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"nyc mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","prepare":"husky","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"10.8.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"22.7.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^17.0.0","husky":"^9.0.11","mocha":"^10.6.0","eslint":"^9.6.0","rollup":"^4.18.1","typescript":"^5.5.3","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.1.6_1725467350014_0.9660611184853691","host":"s3://npm-registry-packages"}},"10.1.5":{"name":"filesize","version":"10.1.5","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.1.5","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"30b55a41331ddc81817dfcc7e7c64bccfa59083e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.1.5.tgz","fileCount":6,"integrity":"sha512-jcw4nVu7/Tsf9H8Unni6N8qcUOF6fPq7riSahe1S/paGV8C2Zbjtm9zPULqUapQBVBBUU6HbcXzGPWqQ8MnRVA==","signatures":[{"sig":"MEQCIGKgR1+kXW4MdQiHy5aDxgThHNlzj6bqo2aHq5eOu+cTAiAZLhFK9xtwFgCdWoVfhYJpWfXEqXxW+xdPU+Lrfr7YSw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19514},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"0248be0a29033bb391f59899920b8e5cc5a53b2a","scripts":{"fix":"eslint --fix *.js src/*.js test/*.js","lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"nyc mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","prepare":"husky","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"10.8.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"22.6.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^17.0.0","husky":"^9.0.11","mocha":"^10.6.0","eslint":"^9.6.0","rollup":"^4.18.1","typescript":"^5.5.3","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.1.5_1725401571253_0.7270371246802625","host":"s3://npm-registry-packages"}},"10.1.4":{"name":"filesize","version":"10.1.4","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.1.4","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"184f256063a201f08b6e6b3cc47d21b60f5b8d89","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.1.4.tgz","fileCount":6,"integrity":"sha512-ryBwPIIeErmxgPnm6cbESAzXjuEFubs+yKYLBZvg3CaiNcmkJChoOGcBSrZ6IwkMwPABwPpVXE6IlNdGJJrvEg==","signatures":[{"sig":"MEUCIQCtVRwxFkOu2Ep1srEvW4JnudIhP6PW0wOacn+h3EBm+gIgNwBSthAFLTR+QmtE0bii3l2J7TvpAFPWJhYg/1w7+mA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20190},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"bb0fe7cc321270818a672023a1f978d734706b16","scripts":{"fix":"eslint --fix *.js src/*.js test/*.js","lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"nyc mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","prepare":"husky install","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"10.7.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^17.0.0","husky":"^9.0.11","mocha":"^10.6.0","eslint":"^9.6.0","rollup":"^4.18.1","typescript":"^5.5.3","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.1.4_1720485437520_0.2927679241267507","host":"s3://npm-registry-packages"}},"11.0.1":{"name":"filesize","version":"11.0.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.1","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"b3749a660c1ea5cb5f5a6286b181d28824f640c8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.1.tgz","fileCount":7,"integrity":"sha512-ua1SLPcFgqf1lICRVqTA5d8T6kqg2ZTIm0BImnUk4pZzfAlwhqO9zKv7GCE5FGl3zIbBZZSmq7yLikFNsi5eXw==","signatures":[{"sig":"MEQCIGmIdM7l1CC3bpgJi0loNygRW9zZfN359eHyN0tFi1zXAiAlf0/wEpTrp8EKYB9Pij4B60PdTSVeLl2obI2x3tapig==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":38574},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"d372bab063001cdcf465f5c16d5a38ce2211ac46","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"10.9.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"23.10.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.1_1752455619119_0.5684688725923635","host":"s3://npm-registry-packages-npm-production"}},"11.0.0":{"name":"filesize","version":"11.0.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"edda5940284f4cae28c03b9158d9402d045c0a2a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.0.tgz","fileCount":7,"integrity":"sha512-zirjFHy2G+wBsiU3HCRL088cHf2WA3F5R4FsJ+sy/nk7e+TGTFLNpJNrzRD5IcH5h3HqPUM9CCF5KvDV6zs0HQ==","signatures":[{"sig":"MEYCIQDXicaduGtpikGpFC0rltQ1i4F3gAKDFlyH86uiTsvpUgIhAMTaoh/n3U7cRMRsrdPsuqoj8ltoCg9AgGhK2q5Cb9s9","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":35438},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"9f85e3dea6d4d73146984c138c4b7bedc7b08063","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","changelog":"auto-changelog -p"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"10.9.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"23.10.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.0_1752238099628_0.027829259097753356","host":"s3://npm-registry-packages-npm-production"}},"11.0.3":{"name":"filesize","version":"11.0.3","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.3","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"3f9c981a3e3823589dc9782d8ab0812295ed99d0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.3.tgz","fileCount":7,"integrity":"sha512-vVDIwOFdzVvtRTt9cFuczkevYCkLhIdbuaXttwBgFhDMBcvtSgPXIHDAugo6DVgxcNxWZkumvE05DuCsSnVMkg==","signatures":[{"sig":"MEYCIQDMnMUxeuC8e9uwUu36Buu0VRL5RVWOFJ2piZy4i5j4CAIhAN7hSpfEj+UhyDuAFO0rj/DwiRR8BGqaShVGJY1lkP6f","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":38709},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"091c8e1862c2144a908beb0783baa99af7c5e885","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.3_1758278167548_0.5531517374790624","host":"s3://npm-registry-packages-npm-production"}},"11.0.2":{"name":"filesize","version":"11.0.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.2","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"b7771e3836812582ad74b8a10d6eb0dc58c1ceda","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.2.tgz","fileCount":7,"integrity":"sha512-s/iAeeWLk5BschUIpmdrF8RA8lhFZ/xDZgKw1Tan72oGws1/dFGB06nYEiyyssWUfjKNQTNRlrwMVjO9/hvXDw==","signatures":[{"sig":"MEUCIQD9LwwrH6fcZ1l240iep+BY7pfr629f9fy0Zky3FuCthwIgWVs62YS9sVPL7XenvWHlNYv+MHw3qwJeDzzmH7VFvfA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":38605},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"d9909d94113244c21f636ab6e049a56bf39be3e1","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"10.9.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"23.10.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.2_1752659515498_0.7638584062702491","host":"s3://npm-registry-packages-npm-production"}},"1.9.2":{"name":"filesize","version":"1.9.2","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.9.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"52ba4903f7bfeb680a803225f62d038e64820db0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.9.2.tgz","integrity":"sha512-AxPCb7ctchYo6+OE/EWDDi6dS5wg4qsKN6BUBSA7dgdG4UIqBBKAR6kOwiMiYCmcpkCtxzDI6XgIN/fW8Iabbw==","signatures":[{"sig":"MEUCIQDaOMxHXjmcqndDOV70V/g85b0ZzQRZ5blmSQLIa0nu7wIgSCzz4/ck9tYcBOAaJdm6r1HmB6A5DSpm5QuG8Blamy8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.18","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-uglify":"~ 0.1.2","grunt-contrib-nodeunit":"~ 0.1.2"}},"4.2.0":{"name":"filesize","version":"4.2.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@4.2.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"a8c989a179ca3a895cc32eab4abc64ebf6d34d44","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-4.2.0.tgz","fileCount":5,"integrity":"sha512-bdS2UP98MZzLyTZzhuSH5ctAWyDt81n5xMti9BSdmgPXjjENLDz5Bmbk2R7ATVw/HRysZzWA2JIPgcSAOimWpw==","signatures":[{"sig":"MEQCIA6r8CK/HX8VGqFVaunLrl6i8HjQAhmbK6FvAoMkr3LWAiAz/N/rZGU8kmgsqVnPSEfI6pdwi3xss/OG1NwCuwqh4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16150,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeUMICRA9TVsSAnZWagAAcWsP/jNF3p0BbTSYkuuGQDRf\ngKP7kKUwHxd9ba+9xvOac9WQTf8QevVSoUcSdnWF3vi0+TyYPNkuqp0B0F5A\nyP2LKMKe6gC8t4GEqHDCuH0WMSoWYp2FlvqOzALg5PWOm8070t3BdoYyv5e6\nZgzG4N8jpg7NmfWAlhNWRgVXFPHkerM2W+ulPjpXEgzKeHsvJoQSLO9OoXXJ\naXKG2Pro5tkDH2OIBvkwjbn2X3MWVF95h4TfOt7UJRf3EKwN844GfVoCfLZc\nMpKcciXBc7YRkzJL5r5FenGih80joj2T4az4+1F6Nn8Jni8vJawXqTTcgLhh\nQyow400EQRWuDZ8MOlZEJXH6m8Pk1I8IGWoKPsNR23QIloZCcKGFfQ4rlOEB\nIP7ZYQzsjdXu5tbxYdBn2EkmyXx1mI9ZR/FrkA/ZaR+gEkJl4tZNM00rq1h/\ne20a/JuZ2+LjjHhFhx3mpBwszlWECNr/Ko0+EaJ4joyw3y6/oXnYPXdVMmAY\nRaXjFjBGuQAJOBgMXy/tskACdSrKCSwFWS6WJ5Nh8OPBq5VFMdiUq+wJPv0L\nvDPiNndFYSBUPX0OYBe+ZhaK9jkT9mrp1bVjCtD3F2IleZrX+3ytpPUuc6Sd\nQ8fX2MoezP6rh0zHa8tftvpjCSJcOmagr/DNnYf+SgGXJ/MXB5aG6JkMYtlT\nGA88\r\n=dyiv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"ab80f877f0ff98fec7bd31becbc23540ff7956ab","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.10.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"12.9.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.4","grunt-cli":"^1.3.2","babel-core":"^6.26.3","grunt-babel":"^8.0.0","babel-minify":"^0.5.1","grunt-eslint":"^22.0.0","babel-preset-env":"^1.7.0","grunt-contrib-watch":"^1.1.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^4.0.1","grunt-contrib-nodeunit":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_4.2.0_1568228103700_0.7652688015857112","host":"s3://npm-registry-packages"}},"11.0.9":{"name":"filesize","version":"11.0.9","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.9","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"aa5d9dd53e73733187e084f3a91527922261af3e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.9.tgz","fileCount":7,"integrity":"sha512-g5y+mpUp1u/n3rqlLikRpR0T8jBK6eWhZ1B7Ymff68ptHuecjyNOLn5HvW/25s196cJMYpTWBXMZDoyTSqZJ3g==","signatures":[{"sig":"MEUCIAe2OTnJsmcWCzervndZEcIpIr3n6wC/Ntwhv01EvXp3AiEA+WfE2XD8nBKTRcpFVwfBApoKrus7qM5kv/gUk+berkU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":43772},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"6c2278373e9919a834909cf2b74bc9dbb3e742e8","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.9_1758329564094_0.27968831255904036","host":"s3://npm-registry-packages-npm-production"}},"1.9.3":{"name":"filesize","version":"1.9.3","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.9.3","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"51710588f400fd7491a2f5481fb3a7ef7232ec6c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.9.3.tgz","integrity":"sha512-IzR5NFYsUFahXWVMpFOgrOkHLPdUYqDZDmQ3AcIj7mpQ5Btn3cpzX2pDpQulX0PubvsYxJdqVPw3x0mCYyZX6Q==","signatures":[{"sig":"MEQCIB/th+Em+vmdIUxTpln9OjslLQejlAU9Bp8Gj2rOUHvQAiA+JEC4f+REkviSk8CfbmkLjZuHdP1wjF5XuDVIM1LO6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.18","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-uglify":"~ 0.1.2","grunt-contrib-nodeunit":"~ 0.1.2"}},"4.2.1":{"name":"filesize","version":"4.2.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@4.2.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"ab1cb2069db5d415911c1a13e144c0e743bc89bc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-4.2.1.tgz","fileCount":5,"integrity":"sha512-bP82Hi8VRZX/TUBKfE24iiUGsB/sfm2WUrwTQyAzQrhO3V9IhcBBNBXMyzLY5orACxRyYJ3d2HeRVX+eFv4lmA==","signatures":[{"sig":"MEYCIQDjXPGE0nvZrhqnSfFk45Y/65jjtAwdig/Niis8gFHc5QIhAKbx1GdqL3ZHO36wSAzty9HoazRIK/YmfQXUtoWVxot+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdi+sXCRA9TVsSAnZWagAAa/4P/iJJAKM04chl7eaxUBFp\nXatayBoPLUKBquxTB+/bITPlRZOY+5oghAcmwgStVOnVjdvOAenxfxI6k3I7\nVEA0PYzspoCjTappwi3y3LqaP7SvNQSG7isjE8sGrEyCLiQiOROKoCSuc3Ld\n4e7U3wJHs1rzMWwZF00ofxjjMFQ2kYCV0GBjinThr5zOpH4HzWFwGLd5/5lO\njsCaX4Un9LN92Hyyr488DhCwPa5GMNSQ6oVoFKqh3ax53syQBPnS446tTXYy\ndFz7KSalei9eOZxnaZ2rN6cAIKNZl77bb8+Nb6GcEE3szXYSAwSvZ2hec/sN\n2uBJUUBYUH6+fCxUcCzAsFwnjTi27EIiO8Qg+EdZvZwT9LJvAmEdJIV8fo48\nIX0VtZE3KVZnNj2U7XcQPm8Po8WLgceLbaSBpmG8OachoNToVdZOD1zL2zhW\n03MHb8z2ZdDOf9d4oCt8Nr88FsUXrEfVbwuDZvYlanFI28Ep4hKA+ABNRmcs\nAKjfsqrMV5QzmtzAJ3MQXGEMjLIBdAhJ83PL60QWnFwaaYM7deVcXXhMLxVU\nem1vyJ6cFQQdRthTR6UFXmRm6JYpKXkI0RgJB+S+gU2BfCETlP48Kj8IV3QM\nlrIrMoT5KUBv1m8g3Hm82DArkisfv4wS+VRPMMepENvLaJOmW7zIvjvTKX9y\nDsgl\r\n=R8+D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"b326ec52a86d6a6fd444cf04f3032dc580af3dd9","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.10.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"12.9.1","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.4","grunt-cli":"^1.3.2","babel-core":"^6.26.3","grunt-babel":"^8.0.0","babel-minify":"^0.5.1","grunt-eslint":"^22.0.0","babel-preset-env":"^1.7.0","grunt-contrib-watch":"^1.1.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^4.0.1","grunt-contrib-nodeunit":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_4.2.1_1569450775076_0.21304740023013435","host":"s3://npm-registry-packages"}},"11.0.8":{"name":"filesize","version":"11.0.8","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.8","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"558e33fa9ba736e07592b0e6b30094a5ac1e88e6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.8.tgz","fileCount":7,"integrity":"sha512-ou6CB6bjeQQLPDGkFIMCk4plrYtS9BLxLLj/qa8VzDFfWRl8c0nhWaPrK1hL6sSFW2Ep81QOAlCIAsIad77CYQ==","signatures":[{"sig":"MEQCICEzQ/MJjGUxOffdhcu6/3xDHPeZJLZZHh1lWm3+lPqGAiAz3ll6KT+5g1Qo9WISqWBb68xerFtV08Ndrz5bvnXvGA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":39227},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"ca9a17639511a4150f8f5b70dd8898611a13cfac","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.8_1758326991273_0.08043652659257972","host":"s3://npm-registry-packages-npm-production"}},"1.9.4":{"name":"filesize","version":"1.9.4","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.9.4","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"33ad8d942aca7a5b06109529b5ab958316fd345d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.9.4.tgz","integrity":"sha512-WbuuWeRYFaJfC4hy4kAZ3zwFzG6gfUvT0U9jxyrNwv9u267Hf96wbNrj/we6r2HBh4qEr/8q0FuElH+7wtaJMw==","signatures":[{"sig":"MEUCIAqLo6qsozg9qJYBI/L4zJovKTB2QyCYgn9wkXlnNRV1AiEAiKgCb/JH+rJ4J7UUcxfFmi+DRY6fOcaxd1gxIiCkBpk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.23","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"1.9.5":{"name":"filesize","version":"1.9.5","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.9.5","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"a80399479607ee5f27cfd512c47e3cb2bcdac4e2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.9.5.tgz","integrity":"sha512-lbSUa/snQO4wC12kRr3MvOiH0p5dH7dtCkTmOnPGvQI4yxY8DrEKCewEkH7BE7wJz4L5XWrQmfJyhGsK34Qw9Q==","signatures":[{"sig":"MEQCICsLcXHyLxXCefW3njLIbootUPHh+4MphncGYqZd1pQZAiAKm+Sn97CqBS7m5TN3dF2ARGQFY+7MMizVw9ygTKJTSw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.30","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"1.9.6":{"name":"filesize","version":"1.9.6","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.9.6","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"c5120a8b9e246f41b886942ba2b3b2f10cc65385","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.9.6.tgz","integrity":"sha512-NG/BNI3qpIad+Mj9qB3BKK2jBoaLSOO7fDMRGcTZBDGFfvNCmPGx0LUCoCtxcO97AYAgoKTVTzBVw/V4Oh4TvQ==","signatures":[{"sig":"MEUCIGGUD1c8hmITMUVrK+Pk9fs7SzBJhmkbV6BkLLoTfUm+AiEAhvFgpo16qjgRgDjLF9P38ppQyIqG75rZeWqp4gVEQKc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.32","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"11.0.5":{"name":"filesize","version":"11.0.5","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.5","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"72493a865222d9c5f18725bb57efd7c25486d6cd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.5.tgz","fileCount":7,"integrity":"sha512-i7mJkGQvfo/b03vSx/KlJj/fZz8+ycPzAKMF30kpMM2b+PwrCRc5Yi+vhS0qV9ECypnRzy20mjgOjm5j9Yb96g==","signatures":[{"sig":"MEUCIGG7S8tiTfLoQ97p+fIJHYO+STNEZCRfH26ZiL/eNdmOAiEAgGN2534GJyNrR+vCnZJuJdeNoacA9zvjOu7yHivqmUE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":38605},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"0197849deb3928b8e6e05e953cc49e86d92f37c4","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.5_1758280561043_0.3265995032418927","host":"s3://npm-registry-packages-npm-production"}},"1.9.7":{"name":"filesize","version":"1.9.7","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.9.7","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"52c62ddc63ef308383724b862fc5217786f56997","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.9.7.tgz","integrity":"sha512-S68cpz9qLh2RsZ0yChK8pCC+pOCHkft8HatNdiPDgm+HniqyzX2y1AFr33vQ8X587bkv8K8fP05YJbIdWW0GAw==","signatures":[{"sig":"MEUCIQD15fEfSbHs/XmBxa/VgdhX4QYkImxv0+sLgJv15Qrm9wIgN8DginBoitU3MOS/JuK1v3/Yr79//bRlrv3Xc8R6iNM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.32","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"11.0.4":{"name":"filesize","version":"11.0.4","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.4","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"5209b720f99a83823308e81ac5b8253cfb848f43","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.4.tgz","fileCount":7,"integrity":"sha512-S5htYQbnL/sEqcB6MKDwMTWYFjb5DnyjcJuFim508rWQN9ns9Gvbj7KSXWopmg2S5m/KfUTxA6neB0ppHRI9+g==","signatures":[{"sig":"MEUCIAEcGdfcgaeEOqqN7oufsJtXuLOAzSCrSuBhC9LiAaePAiEAhZCKT3jKTVDinoqZFLyd5vbxH7pzRoeq0eVPwI/6pv4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":39123},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"3916707b7c90a58545396611e997b383f163fcf8","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.4_1758279436069_0.448375591873994","host":"s3://npm-registry-packages-npm-production"}},"11.0.7":{"name":"filesize","version":"11.0.7","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.7","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"0603fced3d92716e800a084aeaa8f2a8e4569751","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.7.tgz","fileCount":7,"integrity":"sha512-HozRSaD6ZrUdUVdSI9kJPsI9TzDZb+OZNL0xOWlxkQGfOsjh5Fp1AAI7GObJutOpclSBycHBDEREzwYcXPo8Ew==","signatures":[{"sig":"MEUCICAC+SJYbD0OMySOoucKi+u9/J4OiWZU7NyCJCs2fTWEAiEA3nPms+nACYa/uAa0JfyHaDqIhd8RiSrouNb3lANOpX0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":39177},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"a382bfb5cc3c5c3bb4d06e1c8078fffa8f555fce","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.7_1758285363406_0.1557227749538881","host":"s3://npm-registry-packages-npm-production"}},"11.0.6":{"name":"filesize","version":"11.0.6","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.6","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"77406eb8dd614e39b6ef5f591532e09fea3d7404","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.6.tgz","fileCount":7,"integrity":"sha512-TNDUTZJ4RoW4x1/156q0IXujWh3d/xecB2R3eA5ZTmk6muW/Hq90r+yV2d1Jkj+1wwwQW6BLtO24id5GEADcbw==","signatures":[{"sig":"MEYCIQDKY0BrS35pXQsPzk92jshiJLB6z/S6OGXenRq4wQMutAIhAKBcEJO5p+VW+/FOmtEJO0y2EV8uzdgODJVo8tUdRSDz","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":39159},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"63abcfbff702b14594abecc8dfaf1cd2efc75103","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.6_1758284617567_0.5443538889336417","host":"s3://npm-registry-packages-npm-production"}},"3.0.0":{"name":"filesize","version":"3.0.0","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@3.0.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"79f33de3b89e790b8277577b232d96eacf3d6f66","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.0.0.tgz","integrity":"sha512-TEd2Z3AEqm1QqnNe/4NhCdklfbunK4GGrOWFJxIoaAylEpQ11hJwG3gJJPI8/ONBJHLFEi+tFtziQUbaxoRRyA==","signatures":[{"sig":"MEUCIQCXhYKVj/pC2dZ8NQ5QtcZcentJywShAuTV38Yo7jS4jQIgRSi+rQQqFpaTNp5siuaoGSiYaup+DqweA5iDdqWY4b0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"79f33de3b89e790b8277577b232d96eacf3d6f66","engines":{"node":">= 0.4.0"},"gitHead":"a7fe91b78b3b97f08baf97ac52317be0ba2b247a","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.4.28","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-uglify":"~0.6.0","grunt-contrib-nodeunit":"~0.1.2"}},"3.4.1":{"name":"filesize","version":"3.4.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.4.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"8ea8935cb0eafde10dcb792eaf1caede6e94f127","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.4.1.tgz","integrity":"sha512-psT2+gOBE64hz0RWJ62lvCN+V+5onbLcAURB/YatR8HFxV6USm6x7nR6a+7YBXewf+mhq9f2ALp/B2pdUCQZ7Q==","signatures":[{"sig":"MEUCIHy5aQOI1pkol1r2yMptkYyAXqX2e53QAUMafPu0PToGAiEAwtzh79NsVVc6LCxaHJBdtnd8P0zF+gsp470ttOfvv1g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"8ea8935cb0eafde10dcb792eaf1caede6e94f127","engines":{"node":">= 0.4.0"},"gitHead":"245aa6db2e43fb72eb5cb56c24f7423aff531d8d","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.4.1.tgz_1484880083039_0.324714164249599","host":"packages-18-east.internal.npmjs.com"}},"3.4.2":{"name":"filesize","version":"3.4.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.4.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f0231ad53ec885423759873de9f124fe67219dd1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.4.2.tgz","integrity":"sha512-YLJvldBTw+WfbMZqxPEHq+RV7FQMkZQqhX7LPanLXmefFZ0cwYLzMKZUu5GHvmaZWpn/mOCRkb5Vc0E7OOF64A==","signatures":[{"sig":"MEUCIQDfHOdRLtoBM/yJlcyjY778KIWVyNbQUGGcPf0QLD+IWAIgRITP3Wa1W2wYo7ZFf3tSwNyOr6lWE5z2SGB78SMvdBg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"f0231ad53ec885423759873de9f124fe67219dd1","engines":{"node":">= 0.4.0"},"gitHead":"4d1e9ea21b79ca0af901fcc13a3609a44e2ebcc9","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.4.2.tgz_1485016642672_0.6270120805129409","host":"packages-18-east.internal.npmjs.com"}},"3.4.3":{"name":"filesize","version":"3.4.3","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.4.3","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"8547c8dce97408fa4049cb366de0e31a256ddee1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.4.3.tgz","integrity":"sha512-pATHnOoxI+fNkyAmHLNCUG4oNLIRIfqJpYQtAp77izYaLeCcyBpxk634Qexs5tD3p8tKXUqGKFK2j7aPTTQlPA==","signatures":[{"sig":"MEUCIQDd/ikv2Sjfgheu/xDiUXfUTB7Z1d4/DK1pSJOWTqRbswIgNP7UKG2kUp2qXBXlzlqkVYMTzJW1iE9q16uS/lY4LaA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"8547c8dce97408fa4049cb366de0e31a256ddee1","engines":{"node":">= 0.4.0"},"gitHead":"7009d454bc235447228e39803efa2f416b89760a","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.4.3.tgz_1485202159405_0.954010050278157","host":"packages-18-east.internal.npmjs.com"}},"3.0.1":{"name":"filesize","version":"3.0.1","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@3.0.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"d4997133f2d3be6982d2232904ae2bff04b89a92","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.0.1.tgz","integrity":"sha512-xUoGBzCKXhcu1OK8B4+9HZQanYpvZgz0qB0fqkJ2tIpq685BURHvCNsWrWjoat6M+5EDhI9CGHXdIYDln2IAvQ==","signatures":[{"sig":"MEUCIFFuBQyJdmX2wWrg8Y9cTOCfQt6aSprq5D6+ccZJlgXiAiEA2IeD5v/tbgSQRD2wTiD7xyehuegc2oNjAOclDMOhdj8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"d4997133f2d3be6982d2232904ae2bff04b89a92","engines":{"node":">= 0.4.0"},"gitHead":"0af5ea1a69c97a46d12e24d27440b60f891ea87a","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.4.28","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-uglify":"~0.6.0","grunt-contrib-nodeunit":"~0.1.2"}},"3.0.2":{"name":"filesize","version":"3.0.2","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@3.0.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f73fd4a020bc3927648f0dfb93032bc3f1426623","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.0.2.tgz","integrity":"sha512-iVIyIFmY0sTnHATNARdVa4hz1WZDY3DhuWNYER7W0LGZgjPhdZFOA0XApJinH+eXcu8nNsNEFvYPt4u5NNbKcw==","signatures":[{"sig":"MEYCIQCzerhqrSkvMURtlromTgGf+oUtlyal0THJzNnG+V4FBQIhAPA77SPNtHuW3BkdFoRuI3b943Dxglxd3aFqddm2bch7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"f73fd4a020bc3927648f0dfb93032bc3f1426623","engines":{"node":">= 0.4.0"},"gitHead":"93ad0431f99f91f03019b071f5b2cd912c06e33b","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.4.28","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-uglify":"~0.6.0","grunt-contrib-nodeunit":"~0.1.2"}},"3.4.0":{"name":"filesize","version":"3.4.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.4.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"9209c31721b601adc0e9fece181c0d9c5695d2ac","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.4.0.tgz","integrity":"sha512-Qx1I1TyD7Dkmlrls5A6gPxCIWWtWDTilejbRxbSZvm+TC5yPxeLQPOFnseEsxm8xVPZTbJEol7nT6/786vpw0Q==","signatures":[{"sig":"MEYCIQCX58RvTeAJGDMSyn7uGnrEFO11Kxw3zNgnSG7Eh6w1TQIhALNYtmcCxyelEyKTHiWzngS8ReLaa3NKEPa8y1YegNi4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"9209c31721b601adc0e9fece181c0d9c5695d2ac","engines":{"node":">= 0.4.0"},"gitHead":"1ba7b0cf0ed083da3695c120016fced7ba3cdb97","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.0.5","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.4.0.tgz_1484830473433_0.8620976186357439","host":"packages-18-east.internal.npmjs.com"}},"3.5.8":{"name":"filesize","version":"3.5.8","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.8","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"5cd23aef46eeeaf812707f7098d245de513e4328","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.8.tgz","integrity":"sha512-ZqGzH77EnAPtGyFedNHwjLc9kwFSZ8VqqFoN4yUh5+xEUl+5N+7s3Ss++hFBSiFsX4vt22S+NupsJFV4GJJzEA==","signatures":[{"sig":"MEQCIFu6YYqiPkhG67sBp/xZUo6q69qKTMi5UTlHL2EJ3ezoAiBSpNpHJTyt/IP5Fp0lQQBh/1XSoFcVbL/lu0RUsy/gGA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index","_from":"filesize.js","_shasum":"5cd23aef46eeeaf812707f7098d245de513e4328","engines":{"node":">= 0.4.0"},"gitHead":"0e07bbae8ab619c071694ef9bf885c3c57be7521","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.2.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.9.0","devDependencies":{"grunt":"~1.0.1","babili":"0.0.12","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.8.tgz_1493487501528_0.5563171424437314","host":"packages-18-east.internal.npmjs.com"}},"3.5.9":{"name":"filesize","version":"3.5.9","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.9","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"9e3dd8a9b124f5b2f1fb2ee9cd13a86c707bb222","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.9.tgz","integrity":"sha512-KB8IKSFPJyoKSkE7D//uJpbCZ5aQTnTQ0PIXK8fZY8aGwcaB/NXmXC9/ESKHBoKbZsNoxBVEHXf3/PRbF1Rnsw==","signatures":[{"sig":"MEUCIQCpMTI5XnxVjGpZL4TFyz42MxRBB+swZGI51vwAWr/xOQIgfHhY8Kdzs/Zjb1L7uzs/YB6tj9mua1LJkUVrV3e40r0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"9e3dd8a9b124f5b2f1fb2ee9cd13a86c707bb222","engines":{"node":">= 0.4.0"},"gitHead":"f928a6b297c0029ca946cd45d2c318991d469c33","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.2.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.9.0","devDependencies":{"grunt":"~1.0.1","babili":"0.0.12","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.9.tgz_1493559967222_0.24286751449108124","host":"packages-12-west.internal.npmjs.com"}},"3.5.4":{"name":"filesize","version":"3.5.4","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.4","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"742fc7fb6aef4ee3878682600c22f840731e1fda","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.4.tgz","integrity":"sha512-1/iiKANKMwygJoNQbh6X5/baA1jS+UdZ5pupMNMNTMmjo+R+HwQm4KYZugiyrpOBHyxyp68uE1C++FMsaLLdBQ==","signatures":[{"sig":"MEYCIQC+AX99Iw3jmHyBf25QkTOg7JmCvcvkk9+bCr2q9RzTUQIhAI8i9/xskNSJHIIqyerSFRtWWShmf3dFcNglULXJCE/N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"742fc7fb6aef4ee3878682600c22f840731e1fda","engines":{"node":">= 0.4.0"},"gitHead":"7c75121420abb6a3c855b96cb7552cda7ae7e1f4","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.0.5","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.4.tgz_1485351961644_0.597131300251931","host":"packages-12-west.internal.npmjs.com"}},"3.5.5":{"name":"filesize","version":"3.5.5","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.5","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"3c2a5c14463919a218434721472b63cc30748992","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.5.tgz","integrity":"sha512-a8Fqujmjn58g5Ddgav6SoDvTYvLewOvS5YO1zjf1qlwtxZuiAv1RRjYTbG/D07BkGT1YCqb1MfmiHsI3IZr1WA==","signatures":[{"sig":"MEUCIDkIg8XO2X2kFgXuItdEYEj4FXO6DUj2SOyi+xFnBMXcAiEAzCRIKTcH4hKq0A557GDLuQjf//MRLXKV/9b760HutB0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"3c2a5c14463919a218434721472b63cc30748992","engines":{"node":">= 0.4.0"},"gitHead":"422f427da4940984d2d267dd58a68fa517f0b9c6","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.3.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.5.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.5.tgz_1487952411551_0.8131014292594045","host":"packages-18-east.internal.npmjs.com"}},"3.5.6":{"name":"filesize","version":"3.5.6","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.6","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"5fd98f3eac94ec9516ef8ed5782fad84a01a0a1a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.6.tgz","integrity":"sha512-YmC3iZCvQkSqNwDg5eHyqzidCA62LOLhPrjwMFNxvkzaSAwR/Fn+X6jj6MUXItTBfopTZa8hGh2l7JsTSwWvYw==","signatures":[{"sig":"MEYCIQDzug6IwJ10i0ZVckzj9Ew4m53No0AiDAVKl/QbGDlKkgIhAOrGR1J3s3vIx9xQZ2BTX8t4Fi/aA5rtctXVmSK/mTEb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"5fd98f3eac94ec9516ef8ed5782fad84a01a0a1a","engines":{"node":">= 0.4.0"},"gitHead":"77db5467b33a5ae44d1dec83bcbbbd58732cd815","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.3.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.5.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.6.tgz_1488845328179_0.2739389846101403","host":"packages-18-east.internal.npmjs.com"}},"3.5.7":{"name":"filesize","version":"3.5.7","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.7","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"28d7065628fc0b470e0980124788b5f416a9c841","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.7.tgz","integrity":"sha512-YYq8wLsnQv/YC9cPrmlrI8pog6Qei6OOK2ERy0i5qoKmuLiGhnepiKlPi55U16CcBQWunm9Hj79EMGUBHLtkDA==","signatures":[{"sig":"MEYCIQCl1cTySYiEsIkm7qAIpKmUOwGEGQ2nR97Y3uNPw+p0QAIhANEQn/oS/hBnUj1ZcT6GsH4iStvQJkW9gparN6aHRiw+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"28d7065628fc0b470e0980124788b5f416a9c841","engines":{"node":">= 0.4.0"},"gitHead":"2edf1a3254e4792fad1f7f663987fa8e04d41348","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.2.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.9.0","devDependencies":{"grunt":"~1.0.1","babili":"0.0.12","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.7.tgz_1493486782888_0.038180332630872726","host":"packages-12-west.internal.npmjs.com"}},"8.0.6":{"name":"filesize","version":"8.0.6","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@8.0.6","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"5f0c27aa1b507fa7d9f72c912a774ca6a44111b1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-8.0.6.tgz","fileCount":13,"integrity":"sha512-sHvRqTiwdmcuzqet7iVwsbwF6UrV3wIgDf2SHNdY1Hgl8PC45HZg/0xtdw6U2izIV4lccnrY9ftl6wZFNdjYMg==","signatures":[{"sig":"MEUCIBexbmkAJFhcrkJB1PEAPc54/RjRezEO4+R8dUWNdvOrAiEAonKpykWV7WksXGyuh1GRwCjAcNTPpXC6NIznjwpft1o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61909,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2rChCRA9TVsSAnZWagAAYvMP/01XRtPWl7NVfOHtVrdX\n8DHrZOLZAg5qJV801QJT7FM2gIjlt2Yywkb+Y3QbPPUwzlQ/1zqmR/80exs9\nQK1XfZraEOc9fXuhjdfm7Ai+ibVw+oa8UGU8o2NahIADPVVmXaBj9VnFGRez\nkc3v+gEq4q3ThaKiUDJygnPMwHZv6IolN4xLRKiJSikHPqeyi7eSG6+Aq94a\nP/dkhONNEKYnL69QKADVUSCj2/W2AjkDXlLqG+hQOD8UqdnyffllmzAE3PJA\n6kJyVa3TvSCE2E9uYHPvSCJ0NL5dC9Mfz6eYMUxPNym1hGB2y30rXm4xarHC\nwtOd58rsR4f1BsjcrMvDd765a1ooP+h3UuUWdVG47AZCs2N3K155sw452toI\nFkbLcbctKjuPNRoztBEJH01YYEpTgmfwG1Z2IeUHv21tFzUDflC0AnbyisYN\nOEPKgHFsmj4G9EiUkCrAu246BpgM6HNyh5isGoOHmd+8kmhaZkE/g2bKJWQ9\n2KL3ZF61T8SJW3JfWz3qltX/Xh6Z12fq9/HGQob8jwoGJdqT+ZPtC/CaTUWq\nZI7N7J2kDEuCYb8GakGRlJvQ2F8PtKKazpgaFDeiV1WpRBY6XHGKvd5Kykjr\niBIdwhREzwFjN3NZDO3jDBm0qUhkNezTobn7rPv+brKSS8OlzpOOGgyK65/S\ndM4Q\r\n=dJ0H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"b6628f8c22e19c3f012b0f2fd57cb1def8282d50","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.0.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.11.1","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.1.0","rollup":"^2.58.3","nodeunit-x":"^0.15.0","typescript":"^3.9.0","@babel/core":"^7.16.0","auto-changelog":"^2.3.0","@babel/preset-env":"^7.16.0","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_8.0.6_1635723974274_0.7261895761870205","host":"s3://npm-registry-packages"}},"8.0.7":{"name":"filesize","version":"8.0.7","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@8.0.7","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"695e70d80f4e47012c132d57a059e80c6b580bd8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-8.0.7.tgz","fileCount":13,"integrity":"sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==","signatures":[{"sig":"MEQCIQD9xplw78dVByasG5vEWuMBj3ywECvbXtR9QJE7/qN0SgIfdlB2wov7W4fgounFI7vAPd/NGGkC7TPV3tMaWQ7hZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62131,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6Bh2CRA9TVsSAnZWagAA0zoP/3L+aWoHL5VFP1jaLjoK\n6DiNOXY2ptzRkbKymPidjJi4o4DfShGl1fsMaIeIR9Q0FCGqu5gWsCQbhevD\nvXm7NEKCCw6GDVncFZYnxEepXqFlJMQUkhchHqOLhZzQ+y7wixIKA2sNTXI8\nJ/lG0dAlrbnCxqf26j46VL2CcqvkwE2Sbsf66unlYwVJy0WHHZdpzzk1VYzJ\nvmZq2cW/snbJTRiQPwW1GfEfBttlP2mPWHngjaHB5LAggI6zZsmObi5BG6tq\n+GJTgMgeWKUj2wWNVDgdudcqyI5cqdyVWfKCmyb/cCyHq/gd0iXRoXHBl75H\naUqN3Kp4KgHl4UpCOxFCSF/RhqUvAFn3gHBzG2ikWUvJ4jv5r1SeRRfB/o75\nsPLsQQtITxKqp/pSho+stK8kYFpjPc+6x4J66HNUQEWiTd0H+pOCzTjVEDR4\nbggCNgWVStKd7tnaPuK8BrZjXzM+tzzVOWmWshem2dtrX/mhPZ3aEDh5N68E\nREmiqUGZqkjBy3JlGCgxC+Lpg61lv2nGC34Up16TKSiudyMwWM53nFdJ8wim\naRuWgWCToQ8nvUnBAdHTeUqQGvjymi0Q8TLJMDAMt3Wa4dSa3QiXIuaA+ja4\nML9UR+Ndr7TamCvfg5IJ3PmrPl/iX7JEkH3n118raWvsaHS9RHJh3uMT9jY+\ni2ZD\r\n=kjNs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"8b5fb953d3cea510306a2d70a655d219fb7302c4","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.3.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"17.3.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.1.0","rollup":"^2.58.3","nodeunit-x":"^0.15.0","typescript":"^3.9.0","@babel/core":"^7.16.0","auto-changelog":"^2.3.0","@babel/preset-env":"^7.16.0","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_8.0.7_1642600566017_0.9066458680037492","host":"s3://npm-registry-packages"}},"8.0.4":{"name":"filesize","version":"8.0.4","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@8.0.4","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"868fe6c7cffc7a40606b3235af43f184fdcf2b68","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-8.0.4.tgz","fileCount":13,"integrity":"sha512-0qp/qg0dKIw8YBLzfxholOgwwFJr2vX0yXNL1Mf1bBR1fqlq1YhKQ4gFb8oVPJKHS2v0tqjcAgIZtDsSpfN0UA==","signatures":[{"sig":"MEUCICqKR662yg7FC8Lbfwi/FMNt04zXudLnbhFImN0mYNEQAiEA7KvS649WBrpZl/Knsi5qsJBokXaXnsc+VO86lK0lRtM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61159},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"ef24fdceca718c6633ade5a58ef921866de29059","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.0.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.11.1","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.32.0","rollup":"^2.56.3","nodeunit-x":"^0.14.0","typescript":"^3.9.0","@babel/core":"^7.15.5","auto-changelog":"^2.3.0","@babel/preset-env":"^7.15.6","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_8.0.4_1635337121709_0.018533861935359663","host":"s3://npm-registry-packages"}},"8.0.5":{"name":"filesize","version":"8.0.5","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@8.0.5","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"3b8ffa1bd5e6b0e187530280ab4c06b941a7226a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-8.0.5.tgz","fileCount":13,"integrity":"sha512-nW6kfJQIL+FY63PWbyxyRKDSFqm3aomjcMfydPzlOn7HiLnY9jPnbRuawroqGGQHEceDxUQEaF0RYy94irvsEw==","signatures":[{"sig":"MEUCIFH1+oZB3XFlYTG/Jf1bY4s6bcuc3At3XsmXOtUWE5tUAiEAnct1TvQEvtIJ2onnDS7WYT1LAkW/+2ej6SXp+Da5WjQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61160},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"bec8e12776761ee7a20be7ebbd39dfe87b96de19","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.0.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.11.1","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.32.0","rollup":"^2.56.3","nodeunit-x":"^0.14.0","typescript":"^3.9.0","@babel/core":"^7.15.5","auto-changelog":"^2.3.0","@babel/preset-env":"^7.15.6","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_8.0.5_1635337279765_0.7966146822519484","host":"s3://npm-registry-packages"}},"6.3.0":{"name":"filesize","version":"6.3.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.3.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"dff53cfb3f104c9e422f346d53be8dbcc971bf11","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.3.0.tgz","fileCount":11,"integrity":"sha512-ytx0ruGpDHKWVoiui6+BY/QMNngtDQ/pJaFwfBpQif0J63+E8DLdFyqS3NkKQn7vIruUEpoGD9JUJSg7Kp+I0g==","signatures":[{"sig":"MEUCIQDEyMroydDdLd7Q0gPbR9KQVlV45vH17N4EVVH0gNdWPgIgZLElQlVgoWpkek8qlqYvXzU4UnRZx4ZTsGlNxEYwlss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80414,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggA8oCRA9TVsSAnZWagAA4qoP/35PoiQOvwDz/YW253Td\n5kSzuRqTKR4LFHZYtI4scjaC7dR4xkr54mqPlz4wYqckdb5fN9qW72rfGJU7\nRWCAyQ1bh6QMPMPy3OHNanPM9W9BijNsp2FOhIx8QGizH/fX2Bv2Wvd4WWdz\n6aZ/as95Umb9y6g2IcRQj02QccNIRLaSooa1+FepfUg08eZz0rXrwJJiaBLi\nL9zkFqLaxRKlCI5HO3NDNa5XJZZnuErdJ/nXnIQ8GYMcVw+i3K1Mi6QnYigy\nSTdYLflEEakTIPeNTrxNmCJmavbad2TaNMuTA+QQX+Atq4zNcMjcg2JPSXA5\nr8BRIOBfTkdlXarrsVa91FxYxLQVMrFEluu3Vm4ZT7O4Tfi7p7QXYu6xDIE4\nP6niCKUTotcfUR8b+da18sw2Li3ZxdnQhYBM0VBjvPt41ziqTpCUIFC58m/U\nCgR1k3c2yMekWL+safeLRYhLCYa9acUrdV8tCG1gC2YA1HZ1VdKODUYpHEqq\nJ1Zt+5SNdJj5Sz8RU0LYwvNxjaYU87LVgtJHFKYxYfxnG1g/2rKTYwHq1GfV\ne7kUW5UqzKiIJ6h9WJDHQV4t8ZneU8iFdVRMGs5PjPH0bRhsuyOCLmxKztPm\neQO+eWjmZ5Cwg68FYZjrrpvSrJql66r6tDMnaxKeHSi/mCDWQVcVTdwjnTcQ\n9q9E\r\n=WMys\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"0f4cf403b09825e66bfe5b3391044228967f6fbb","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","types":"npx typescript src/filesize.js --declaration --allowJs --emitDeclarationOnly --outDir ./","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.7.6","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"15.14.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.24.0","rollup":"^2.45.2","nodeunit-x":"^0.14.0","@babel/core":"^7.13.15","auto-changelog":"^2.2.1","@babel/preset-env":"^7.13.15","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.3.0_1619005223964_0.1727290802371555","host":"s3://npm-registry-packages"}},"1.8.0":{"name":"filesize","version":"1.8.0","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.8.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"09faf54934a0bd9dc13ba13799e756646b504ede","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.8.0.tgz","integrity":"sha512-FsMIaH/35kpl4OUwzYxxh+RZT/2TUoamQ+EqxLdjqcfC755bvo0FjUiWke0foyYOeT6VcQZprCCu4Rj5ces0sQ==","signatures":[{"sig":"MEYCIQCIZ4YWc4TIOC7ciLdCqXYDsZAaWcPELMn4v1UV+j7/pwIhAP1nclZrfuDfqs405mc90feH6gmTG64jHOitqtw7FtQ7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.8.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.11","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-uglify":"~ 0.1.2","grunt-contrib-nodeunit":"~ 0.1.2"}},"1.10.0":{"name":"filesize","version":"1.10.0","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.10.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"b22821f60dd9c4dff76a3d397ddb4d4948f8f423","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.10.0.tgz","integrity":"sha512-3klUcxfFm40tTVZrvVuiX7GLoJJWfjbmywDNlT6RUu+bFyzU9IwIYFmZ9RBEKysg7qCiVf88qxN5vzBagN4STQ==","signatures":[{"sig":"MEYCIQDyB+g+HfpicRMZDL/YsgvgUh5aYlkkUsCzkiKXsHVXsQIhAMNjbVDzR9eRA97BmjAjKo85BiH5lXUkBvCD8Z3qck7T","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":".","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.3.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"9.0.0":{"name":"filesize","version":"9.0.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"4be41a09a3e5e4a22a7e9ff4a93f6c8abb7264cf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.0.tgz","fileCount":13,"integrity":"sha512-Is0jgR3gdoTVnbTOHZUYineME5w02oUtxJ9T7FI22sp0zAtUyjjy7RSGzwsTSw4Rm0U+VB+rfsL/xkXEJLwpgQ==","signatures":[{"sig":"MEUCIEK/jxpiE9/xtj9AxJkvF8E7sPtviE0K5tVclLcLandLAiEAzntpgFA8xJIBeNxd66aJM9t0IDChruY3qu5X9jm/+HQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57414,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJij3e6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp/mQ/+OoKxLCtGfvwSymkJ/rwSf/Ag/zaUM22oQA3qS4rS0uoBLrLk\r\nij36f8PLtQ92nJ3Y7YwFMFR8jS7CFMFgYNke2tPjwiib55/MMphLhFcQS1Hq\r\nl+AWQZu9ge9bdFY7vH6/JfK0PUQYiP3urCkILBfpGHtYCx+gDhESIIs1/sDg\r\nifR0FT9XNrHP8vp8aEHTKU8dlnM9hYB3eCMbANmAGu5SWJnesEdguCNSkxxi\r\n6xFrfrWRIO9vp0H5OcCf2lcMyVOJmLiWaN+aXQ5NMrxG1OGTJxw3WaBiH43S\r\n4qcWhsRSH8cx72aSt2VIflter/Dd/QRKj1EQjIj5MXPmVrSogrhjabBb1q39\r\nwvUcllP2gyczNjeYZrC4P8YMM44xuExoMSNZ0qIRnNmarZCeXenVKcJNzmgQ\r\ntP7Pi9U+Sh0WMkuOwcOJHGpqfbnYofBfxvejs/qOjG5JViK0puyAvNiMjqBR\r\nUVXKOXR8fOH2pgYYhqJch+ZQoJsOXd6ADwXPBp650SjRuVKDX2La9cjERvQq\r\nHRLzrbMHLqFMr+5egBNr1LpMek3jg+MGWobzgV1ro+AgKVSWLgU2poNL6JY5\r\n5EDv4pJhVaAsxb2ChbQRh3SgfhA9CbI2VQLn4mfudodbNmY3urTYHMRmxzul\r\ndRNxXMwqXiUXPbbYmKqiTogmHI2i8wzWyMs=\r\n=F0NB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"1223f8de46107cdbd97f10e64ab7ef468eb98252","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.9.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.16.0","rollup":"^2.74.1","nodeunit-x":"^0.15.0","typescript":"^4.7.2","@babel/core":"^7.18.2","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.0_1653569465851_0.5832517092542007","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"filesize","version":"9.0.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.1","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"eaf252bdda67912639153ef8554058ecd88ccb52","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.1.tgz","fileCount":13,"integrity":"sha512-4OpF3eYI7S0O+memD6RetheN3qZYR2gGapwYauB2T2F+Da2uBml8jLcukv/7lJeL7ByC+2nzaHZfUR/bGT/HVQ==","signatures":[{"sig":"MEUCIQDII2F2HwunEenNJ+nPGQqmFFhodlbr6gsWg0PlMgw7/QIgKyjHZf8lELF8uYDlfcZtJgzPWAYBOtWMHT3KfMDXWo4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55446,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJil/9BACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp0XA/+IztnzwC9PYe3lMa0ExdIK0DpHsOf/nSbW8wr6s/nb9/XrT0b\r\n13TCm1Fc1SwXYSAoKOdHjDEOHPWbwBYjNaXhJQbmjMmO2CYTt5f4TaKf8Z/V\r\nM40SrPAA2csSwLuEiP+UVgLvRJv/TvfTPnOtswWguNKSkwQuLxiTaTD0UMyf\r\nR8RgFuOGMMNNOyJbU6lWW35QG7P7Zvhm+8S662CfgVOwhD0PNWwuUs5J8bkf\r\nmWOhKlZRPhmd7ZYHlOvtr+tcJgN7aATZKhP8co4xjFEXRqLAMjAOjOPh3Q0+\r\n2u73XOT11AdgLg5KMdvvRavrqfmRcaWNpOTvcPmt1epuizye1lPiBj/7JAJr\r\noOd5SI5qin2DHTJFyrW8pMReBObctV29u8WGBx7os/Ra5S3QxnTaePCqEi+N\r\nBG1UJo5w6NPB46cffUA9Fp/sqnkc9DZYQgWjPCeg67jXfNeptxs3dLQHM2F8\r\neYX4XPyb/RO6qI8yOBjUsE11SqQ+6/3EsMDTAOkqg+j73Lnrh0RONazm1B0f\r\nVbRDpESfWApgfHQVNVQ6RY1p+YHhC0cWp8k3Jeq0Xb+7SutoB75OWOTHsr7w\r\n//yRlI/3iFdPc80LlDQ2RQN2IEmIiO8gatUwQFNV0ny7hpzIV7Mnd01Dwqm6\r\n34bgh9UjFmzQyfdTOJ6mzHeNkhbc2lucvR4=\r\n=HGZB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"04542c660aec846d15647749182b71863950fcf6","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.9.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.16.0","rollup":"^2.75.5","nodeunit-x":"^0.15.0","typescript":"^4.7.2","@babel/core":"^7.18.2","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.1_1654128449542_0.7546276987229057","host":"s3://npm-registry-packages"}},"9.0.2":{"name":"filesize","version":"9.0.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.2","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"920cab21d45b3be9828b6a2d3970ac83d4e1d10e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.2.tgz","fileCount":13,"integrity":"sha512-54L30Kx9BMxvF+AdOPve5OOQa4jbwbCn8c22XUV9SNnL6RhidUj/NEeRa7orQHILBPZ9ImBXj+RWsWn99weK+g==","signatures":[{"sig":"MEUCIQCwGCWu3q2BO9OJQoW7ld8GAOxpMaKTRoEOJTgkv3O8FQIgS4S+gHhdZ4rix1/TzYCDjOlLRpwe7LIXjzV9fvtmUnQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipIaWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrS6g//Q281CxZGcQ77i2HFuf7TDKdMjExDyoxp8V8TXtH2YuPEGo+7\r\nJa4d/7JyJkdvX3rpLx/j9H4Xq9FR5dVZWAaADFuRteMUdpkcyv+Vbi7ftD+Q\r\nN/6HsI9+E9vH3mRZFJTIfssiQdvWdLKFB0mlmySno4llsnbZeNE/XzcOCwII\r\nBx3uzJvchZnYe2Gkmh9GuJBImAx00lIMXzvMW2BOCCergDm2qjOlDlFJGSzL\r\n36BWDZ+jtb9BZytBEGxTa9ohBQMV39rsJqnF53zhFw8ByzKQbKEvjy85Hcvf\r\nHSjxPTP97iHNVnQTUGJw4uOCLEjaRYg0tXnOWPRd6PxsZIpUf2nc5XEbg0iJ\r\nXE1ZJ9iJ+Ic4xgLt0Bcoj/2958x2b+0glkKwXyrlL0blGWVOkby7ikQzyk6e\r\nM4/QYTwQHRSrcgi9KIkmfzZSx71/Z2gipSp1BXkW3lw1/2Z4C2Yx6m5qtihH\r\nfAw5KR4s3vEHciYP++bLad4kZ/Tc6J7mMrScKDBB1wqq3lfxTeSjKERG0bNY\r\nYrqm6h4YGlueFsI2QOlszi9ADaCQfyds0qu1faEG8FIFwNMa4YkHsMmBmUky\r\nEur+h9/9a0B8Bn7YVe3f8t93nilemR5s6w5Ix8YBglW9ORwJgxwYdws3zvc8\r\ncaE7+MN4gIfSjsTDO5z6ZkcQuFkn0sLwIgc=\r\n=a7gv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"3ff8295ceac74a1c17c1ab26045694cf1b1af47c","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.9.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.16.0","rollup":"^2.75.5","nodeunit-x":"^0.15.0","typescript":"^4.7.2","@babel/core":"^7.18.2","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.2_1654949526528_0.8600255821587139","host":"s3://npm-registry-packages"}},"1.6.5":{"name":"filesize","version":"1.6.5","author":{"url":"http://avoidwork.com/","name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.6.5","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","dist":{"shasum":"c1bb3b2e9698d1a9e84840299206bc089d5f7b13","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.6.5.tgz","integrity":"sha512-BFMerjK0LEYVfSK6aUxzB7qbZgSpj3YOIeuASWiIhobL+yCszummkTbFx+FqG2MeDjnOHwK3OFIhB40WQ9IkMA==","signatures":[{"sig":"MEUCIQCR0/NeiDEHsiXShPYZO10rrzQfxnF5WQMg7zPNZTPgiwIgTioq9gBSZWyfoSH6gld7uNDK3ZqwaByw4y+SyM06AxY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"debug/filesize.js","engines":{"node":"~0.6.11"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"v0.6.11","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"1.6.6":{"name":"filesize","version":"1.6.6","keywords":[],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.6.6","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://github.com/avoidwork/filesize.js","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"66763a94961b587f02e13a1920c3d03aebd75b43","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.6.6.tgz","integrity":"sha512-B2D8yN7ZafaPcZnlghKO1ubPBzGS7OZcAtlnjO0qNbu+3idgHRUSKDffMaEfuNyBTids5G9FsGjLmF2ToAKxDA==","signatures":[{"sig":"MEUCIE8Xd/i0qu9X/IwklRyk8u+V2+I3QOy81X6hduWw+ZBXAiEA+YLfEqSv2DzMWfBrFKQUH9wrUQLI/vHa+nYuQTKniCM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"licenses":[{"url":"http://opensource.org/licenses/BSD-3-Clause","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"1.6.7":{"name":"filesize","version":"1.6.7","keywords":[],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.6.7","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://github.com/avoidwork/filesize.js","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"0d0acf26851e2a7339ffc45ac87e3c2edff0e96e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.6.7.tgz","integrity":"sha512-A/ANn+qBa3WmjgxHmyKfQbQ+AFwVoKrWwCGrNVjWJJMZclBrvhZ+85/xLxcTjn/G70PjbDKpVDewCHn+ShMyTA==","signatures":[{"sig":"MEUCIQCNvQizb6klxrTpDO8et4vcJ47PQ2yv92hGSNG2LeVl3gIge5VdaTukzCHOrLKGyfme+clbe/JituH+fw+nzjHWIMU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"http://opensource.org/licenses/BSD-3-Clause","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.64","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"10.0.10":{"name":"filesize","version":"10.0.10","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.10","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"c3951df7824d6a1e8b4ebb6a70d401efb1937a3e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.10.tgz","fileCount":12,"integrity":"sha512-GL4vrcUO737QvegdGRNQRzGiAogjWVOrijPmMqCMptehsgIzOesNyl0rw216PQ01BA21fMvfmd9SFgxckFuQgQ==","signatures":[{"sig":"MEQCIDaujL0Pp839lxTME/vH42hLTGDzZCe8akNy7SmpK09WAiBXpaINX5kA/3Sd5zUxDa+kZGkQr6rs3VlSKd9LEzkvNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51243},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"e64e44a5868acabe8e16a10cf28f5156f2ffddb7","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.11.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.10_1691665250901_0.7562976707350904","host":"s3://npm-registry-packages"}},"10.0.11":{"name":"filesize","version":"10.0.11","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.11","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"2c6203817b0327fb391268c363cbe2d784bf01fc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.11.tgz","fileCount":12,"integrity":"sha512-gbHLdV7L2tTbJ8tUXjtfngakN6k+F6EQhxMxK5yfhwvy0XuyyXfFwG54130otkTZxU16pFRnPpPVn0gxxQ8HTQ==","signatures":[{"sig":"MEQCIAfLYZ978vdoNkTEUaS5kRgTYBB2roxtp/z2qStzu/iwAiBcHQvTJf5rVw4cLHBIcWxC1tcs2YIc8qUzP5r3T5WHbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51287},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"dea30ba5d1f3a03796a949bb61552e358ad2a1d4","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.11.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.11_1691666015247_0.48765878721907985","host":"s3://npm-registry-packages"}},"10.0.12":{"name":"filesize","version":"10.0.12","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.12","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"6eef217c08e9633cdbf438d9124e8f5f524ffa05","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.12.tgz","fileCount":12,"integrity":"sha512-6RS9gDchbn+qWmtV2uSjo5vmKizgfCQeb5jKmqx8HyzA3MoLqqyQxN+QcjkGBJt7FjJ9qFce67Auyya5rRRbpw==","signatures":[{"sig":"MEQCIHNn+8zQLu1Z7ImV8OJr6YXaCuxa4A1U1KK2WEZgt16SAiBV35vHn7I2AP5gsB10vTR+iDwBy8XrLHxgL+fjGny7mQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52198},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"901be1f0159a7575ae6e22d39615b1206a5d6e19","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"9.8.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"20.5.1","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.12_1691840798051_0.05364513041223118","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"filesize","version":"3.1.4","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.1.4","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"b9bf7799832177b009fb7912bb6692f936905f32","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.1.4.tgz","integrity":"sha512-lKSNJ7w2HscPQPWxqHGGnxfKg3xDVnvfMrlKwpEkI8iFVhOg8cUHvgh/upaDRtdcS2hGgkAXbmyaw5D/+KKfvw==","signatures":[{"sig":"MEQCIBnTDC00hY2s7IqN7mty/9fubfogkUCxZqYTbgs0w0kBAiBGK3BE76C4dDLO2FMO69/ycLuZHFue6vvMFeVIHymeKA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"b9bf7799832177b009fb7912bb6692f936905f32","engines":{"node":">= 0.4.0"},"gitHead":"d60a6e280fd764b8ae7d64a064b949a234ddcff8","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"2.14.7","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"grunt":"~0.4.5","grunt-cli":"~0.1.13","grunt-sed":"~0.1.1","grunt-babel":"^4.0.0","grunt-contrib-watch":"~0.6.1","grunt-contrib-concat":"~0.5.0","grunt-contrib-uglify":"~0.7.0","grunt-contrib-nodeunit":"~0.4.1"}},"3.5.0":{"name":"filesize","version":"3.5.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"b26d6e3e02233d4481ca5303bc1411dcb974e9d0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.0.tgz","integrity":"sha512-nTW55xwUrhH+h+TosoKuPNbVX+4gh/JW2w0tJOCSK2GQHqB4P+oieNxpSFCuORvpT4HQ7OQ9RaVdTTc6hn8Dnw==","signatures":[{"sig":"MEUCIQDqUWqibBS5bDiGtKyKtC2Ig1mrGBQ1xljZN0wlBO19WQIgJdJK8VqQO1sBhWoW9b5GOjLvLzYEF7gS71oXDh8uMYI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"b26d6e3e02233d4481ca5303bc1411dcb974e9d0","engines":{"node":">= 0.4.0"},"gitHead":"7d8b65085d6e1436b34eebf6548702d136556d9a","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.0.tgz_1485301436092_0.20423144358210266","host":"packages-18-east.internal.npmjs.com"}},"3.1.5":{"name":"filesize","version":"3.1.5","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.1.5","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"ea26f0b1313a1d02cac3ecaab8c54b2bbe193649","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.1.5.tgz","integrity":"sha512-9QjzhCg53pUQi7yUFuy3Iw3Ijv2JgMcO+xPGVI1Ero4jV+YKpjtTxXuelJlZSnCDqBLi0TCauEIw8KbXY60m7g==","signatures":[{"sig":"MEQCIFxbs0vDZ39SUd/a6XG3DSkaTEQC4mvhIeGr7HFsgxm7AiBiIv//vhosQR2Wcfa8oD5iGXTQSsP0BtiQGn95xGPXPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"ea26f0b1313a1d02cac3ecaab8c54b2bbe193649","engines":{"node":">= 0.4.0"},"gitHead":"71cc5a5314a2efc60590254c532334b7771b7ad6","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"3.5.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"5.1.1","devDependencies":{"grunt":"^0.4.5","grunt-cli":"^0.1.13","grunt-sed":"^0.1.1","grunt-babel":"^6.0.0","babel-eslint":"^4.1.4","grunt-eslint":"^17.3.1","babel-preset-es2015":"^6.1.2","grunt-contrib-watch":"^0.2.0","grunt-contrib-concat":"^0.1.3","grunt-contrib-uglify":"^0.9.1","grunt-contrib-nodeunit":"^0.4.1"}},"3.5.1":{"name":"filesize","version":"3.5.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"657bf886763996421fcdfe68e51d1d003c75f434","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.1.tgz","integrity":"sha512-iID9SC2okXpg4Dhs4XJiqOrxjklmZC+ryQ9U9lqW7am7/IE0KXhU12m+wv8kw/8czZbiKTAcYjv0o2TjuYHhOg==","signatures":[{"sig":"MEYCIQCkEyn5NRDsHWiRxn4RDgIhyl+ctkgv7gXfp5TG1Ca47AIhALLkglvyJLjHWDDgH1jL8xwe90zj0odVfGe6R9pblrYq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"657bf886763996421fcdfe68e51d1d003c75f434","engines":{"node":">= 0.4.0"},"gitHead":"1dee34f85781ccb63691570214e5bd8f1f835871","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.1.tgz_1485302292168_0.9717818738427013","host":"packages-18-east.internal.npmjs.com"}},"3.1.6":{"name":"filesize","version":"3.1.6","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.1.6","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"5884924efc81a644e3709aac403216183c3d798a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.1.6.tgz","integrity":"sha512-oI+vBYtHX12CRYLZSJJ6/JWPXsD2uu4dAr4pQJXQdp0Hc5HxBOcHV5IYYY15P+ylwbw9+rn5B00ug+SEmhVCRA==","signatures":[{"sig":"MEQCIGdOw6hr+7i2sRAPZXvu8DTJakocD+AlzoUsufwCazXVAiAR/bBj0OhW4gsUjS5Bpm0X0VUdq1wMCe6t8BURWbUbUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"5884924efc81a644e3709aac403216183c3d798a","engines":{"node":">= 0.4.0"},"gitHead":"f7a059f43319b81283fe2e7ea7a47eda765c9b74","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"2.14.7","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"4.2.3","devDependencies":{"grunt":"^0.4.5","grunt-cli":"^0.1.13","grunt-sed":"^0.1.1","grunt-babel":"^6.0.0","babel-eslint":"^4.1.4","grunt-eslint":"^17.3.1","babel-preset-es2015":"^6.1.2","grunt-contrib-watch":"^0.2.0","grunt-contrib-concat":"^0.1.3","grunt-contrib-uglify":"^0.9.1","grunt-contrib-nodeunit":"^0.4.1"}},"3.5.2":{"name":"filesize","version":"3.5.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"ed78ea648fa47a58a8e9e09d50b3020c72f7424d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.2.tgz","integrity":"sha512-ElL/Me2J6PMoQfAdP00AZWBhDDFPwrEyia8tbKjvgKti+AgZU4+lFX/y1mHV4C22iICwDz0A86v33us9IuL+Lw==","signatures":[{"sig":"MEUCIFOg66EPr6xgC+I4yj4O7kmAgQ7fNcc2RIF/R/Y/wX9LAiEAzWyvzbOlqWSo4AST5Hbxx1+esG/PYcwqTXkBaoibgpM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"ed78ea648fa47a58a8e9e09d50b3020c72f7424d","engines":{"node":">= 0.4.0"},"gitHead":"7bc227ec811ade1a7e2c58e01546893a2ee42b4c","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.2.tgz_1485302928960_0.4611194508615881","host":"packages-12-west.internal.npmjs.com"}},"3.5.3":{"name":"filesize","version":"3.5.3","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.3","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"21bb31a5fe65eb4711793990211dafc2007ada2f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.3.tgz","integrity":"sha512-8OjDtkFIpGe1TE7IuPiWtw20KQb0JyyWrdaKQZV/sv+ffjmZ7uA7Shx/uTsr8WdDX6qEcwxxo5VXGehr07G7yQ==","signatures":[{"sig":"MEQCIH9CpaxgtrJq0GfL4ZSALN3YWxQe677TR7beL4uIjjClAiBuC9Ceqa+RQtyceRUsq849myTnX/89tin8P3A2xob6ug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"21bb31a5fe65eb4711793990211dafc2007ada2f","engines":{"node":">= 0.4.0"},"gitHead":"d957df3e3484b28470b008da45f1a34d54b85c0d","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.4.0","devDependencies":{"grunt":"~1.0.1","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~2.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.3.tgz_1485303665144_0.22620296361856163","host":"packages-12-west.internal.npmjs.com"}},"3.1.0":{"name":"filesize","version":"3.1.0","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@3.1.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f09ba6a9c20b3392d7986bd08e5fcb4500b67b7d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.1.0.tgz","integrity":"sha512-sC0iv4VVj7YBPj246uX8WvRCVkPD10X2XXBmUyNuejGOa602O1n40YsW6da7523uqTtwXaAAGq51se5SNTKO3g==","signatures":[{"sig":"MEUCIBxm1Iobh/8D6jZzgYKxDB31EhzOD74FLaGyQ4wmr9rVAiEAvugyeebPR4oRsGuTw6rt3hZNQFSbIFiWn08k83q/Rug=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"f09ba6a9c20b3392d7986bd08e5fcb4500b67b7d","engines":{"node":">= 0.4.0"},"gitHead":"f214346fb577cf81801a75f60424ba64398e0ad1","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.4.28","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-6to5":"^2.0.0","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-uglify":"~0.6.0","grunt-contrib-nodeunit":"~0.1.2"}},"3.1.1":{"name":"filesize","version":"3.1.1","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@3.1.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"3c54f2883b81546b2d17785354d30ed49e5eb6ca","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.1.1.tgz","integrity":"sha512-vttz0Aqd9X/R3L+GGy25bC73RFCM1VrBjW9RFrmG6uWtOyMAqiaLZ+nkRk+jgFFvFDPa9Ids3SLV9WM7GKo3ew==","signatures":[{"sig":"MEUCIQDWl4fDXdTMnMgNxOvONvGQIpR4my4v4U2skE690Zz3HQIgDddjvmSiP+mHhIXY9g/v4ebRuCC9tJqL4XYiegNtqrY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"3c54f2883b81546b2d17785354d30ed49e5eb6ca","engines":{"node":">= 0.4.0"},"gitHead":"4fd437335cc6a9750f60362778f30e7f359e3c2a","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"2.5.1","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"0.12.0","devDependencies":{"grunt":"~0.4.5","grunt-cli":"~0.1.13","grunt-sed":"~0.1.1","grunt-babel":"^4.0.0","grunt-contrib-watch":"~0.6.1","grunt-contrib-concat":"~0.5.0","grunt-contrib-uglify":"~0.7.0","grunt-contrib-nodeunit":"~0.4.1"}},"3.1.2":{"name":"filesize","version":"3.1.2","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@3.1.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"8c1d047576086370999b23c32f217c4d51abf28a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.1.2.tgz","integrity":"sha512-jFPvqcAFABOzM/ZfXtC95r1RpYKPrOGS+OCrhdgKZmMmQ2pvjT+MxihQytyy0a8ukZ7OcwZFfZtUsCnkhUzVmQ==","signatures":[{"sig":"MEQCIEa+N5FAchXsvKzFpKUAKz2fyl8mEEplcEOlCGZsUXQJAiAGzkHQkt7zXtzlghhpURQS68qrCo2b82GmcUyxfaQ83A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"8c1d047576086370999b23c32f217c4d51abf28a","engines":{"node":">= 0.4.0"},"gitHead":"a4448cdb63d1828c07ae3d2f8e1385d31f693135","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"2.5.1","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"0.12.0","devDependencies":{"grunt":"~0.4.5","grunt-cli":"~0.1.13","grunt-sed":"~0.1.1","grunt-babel":"^4.0.0","grunt-contrib-watch":"~0.6.1","grunt-contrib-concat":"~0.5.0","grunt-contrib-uglify":"~0.7.0","grunt-contrib-nodeunit":"~0.4.1"}},"3.1.3":{"name":"filesize","version":"3.1.3","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.1.3","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"50464fa77c3ef4af6e2e910cbf9b6a3da343f73a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.1.3.tgz","integrity":"sha512-4PZLrLSXZSWDwdIbt/b/sXyNlowpCaqERWm++F11VSRl335NjyjhhDqSXVA6H7OPhpdAEKRwmBZPrk0xoYb6jQ==","signatures":[{"sig":"MEYCIQCePVJc+tBKlVYrKqsKymB+1EVP89Ni1qnm1Xfn1V02bgIhAKhCMez31wIsEn7vzuLwkXAHEcvNTBnqTrw/eUFk7rEU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"50464fa77c3ef4af6e2e910cbf9b6a3da343f73a","engines":{"node":">= 0.4.0"},"gitHead":"20b4ac454f9c6236b6611ddd1b9cbe97d0efbbd2","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"2.10.1","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"0.12.4","devDependencies":{"grunt":"~0.4.5","grunt-cli":"~0.1.13","grunt-sed":"~0.1.1","grunt-babel":"^4.0.0","grunt-contrib-watch":"~0.6.1","grunt-contrib-concat":"~0.5.0","grunt-contrib-uglify":"~0.7.0","grunt-contrib-nodeunit":"~0.4.1"}},"7.0.0":{"name":"filesize","version":"7.0.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@7.0.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"9d4b3ce384ec7731a9e68c64ee29fb4934ad657d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-7.0.0.tgz","fileCount":13,"integrity":"sha512-Wsstw+O1lZ9gVmOI1thyeQvODsaoId2qw14lCqIzUhoHKXX7T2hVpB7BR6SvgodMBgWccrx/y2eyV8L7tDmY6A==","signatures":[{"sig":"MEUCIQDOif5WOMVEy23joJUVIAkaoaJ3X/iXXsXaDdMSQ1eG7QIgfkNRx8XHk7ugWElD8BF5StEh3mE0cwxsVVnqOr1SbR8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60048,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6uX5CRA9TVsSAnZWagAA22kP/jcazaY5ZdbwBihdKybC\nd8CYLUeao2gyolh/nx0gqZ37q13gZvZgkCEck3JKi7VSgVt+0NHlqi87J15w\nNFrHmzNsfaYGGaP+kLueebqJUYM5s1Ilo97e7ocQmqaoCY3nD8U/WCFPMGRj\nqKk32VuLT6HCht/Dsf6ijlpPSAlcc7imTMiNEM9LvHXNXPM9C4LLAc2oBA9j\ngRDonq9DJZ8DkpCbEbzuG1hFh5u5lN4yqY0IKrhugPIkjYOoJ0iZAp+RJ7oO\nKkAZWHFJ/2ha862dOAzNbCgOuICshLaKEceSzNorDtNHfpCKrbzS5adgCHzV\naov477ZlQPaHWY5TSAoUlkX6M/v30e6rDG7/QwfDki9u4qNIbGMA304uXyXo\nuDlaa1E8ixKOIkdMQo+U0o6Ecq97JvnpgKR6NHZqlAt/FK1JZ7RaDITFqjX5\nCs2mxj6xr2BTbM0kT53mlSbRtimeBOmPTX+xTgArFZ3RIolFGzvxARSHte4Q\nemV7S4UM7y4n61EXmTd2x8Z2miyYqYuP1Q6DRZqoo23z+WTEUaPX8n+1aXr4\nX3do6v3La1m97L3XE+dkdAD+NrnHsxFZtp/YvGBDT+4y90W4VnSuJYfVoGY1\nTkqYGb2Qb/UIxfPzd/vfGuvRew+PFVFZxamOP34xXdtjPm5q15B9Um0aW68u\nlIW7\r\n=cCb/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"f89b1025ae9eb33025032c58592410c49488cb77","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","types":"npx typescript src/filesize.js --declaration --allowJs --emitDeclarationOnly --outDir ./","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.13.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.30.0","rollup":"^2.53.1","nodeunit-x":"^0.14.0","@babel/core":"^7.14.6","auto-changelog":"^2.3.0","@babel/preset-env":"^7.14.7","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_7.0.0_1626007032523_0.978513298993279","host":"s3://npm-registry-packages"}},"6.2.2":{"name":"filesize","version":"6.2.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.2.2","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"6f94af6661606d7bc55e9a125e944fb52dbf0be7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.2.2.tgz","fileCount":11,"integrity":"sha512-yMYcRU6K9yNRSYZWfrXOuNiQQx0aJiXJsJYAR2R2andmIFo5IJrfqoXw+2h1W8zLRxy612LwwY1sH0zuxUsz0g==","signatures":[{"sig":"MEYCIQCBAEztIxzW52WjknqDMm3Uxx3wzgbLnT9gjsj9G6njVwIhAIpJd+MMkRO8vGnmmx6B6BQd/UgQxjI+5ooZqE3Ec4Yx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":76157,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdjhUCRA9TVsSAnZWagAAaw8P/2tGKehK++jD5ydprh7q\nmuyGNAgWsPW4QWWu5E9IgJsz1BNxX1XgpvI1Q7XHhOMOpoknsSX4BKWzbMnP\nWbzDTLAlU+HukcCP0yY1TRVTwZem+nk/f5LsVpF9RgU96RFTxpWDC8YHBaZg\nu8tK6wRloKBL6hft1EM4PjAGwPkNwjRcsBDnO5jhY9Dkw2WopDoGa0X7p18U\nXngMYr6QDNvXhuTYfGtzrOetW/Ph84byIsrun00td2ySJn6/80tv4Vl3LoEj\nyDvPXTvYoDpD6iW45Dmcq9G0Uq3Wn9lrAhQcIfH6nA0E6dPDT9+jHpnAbpaK\n6EztZpjbbc9K0I6nwIvjnoBQvCsJFKKkytB1UCLTjA/cBhHkU035H3/SHAe/\nScePjBK/nML9U3JFuhenWtbD+vXln+bbXjhYMjRfyfTBW1EUTxu9jiLtWZUt\n67T04yBEMgLygOHszm4hXE2VNWpSXm+738RH/nvjUa+aGxhBPSa/IyLirkDu\nMNxj1mZ7rKtZ9siwgoyxVdBHGNNJJ/evyN/gbEivKYID0t/2ZMAUplnURECE\nasX7cy1n3UUnVDDvvaq5/mciPpPqFOw2IaFndUwruYZc/+7DpPUq1joaYHQT\nyXodXeFiXm3EPfIBXMcIxQC3gi8AR4tAMUTM9zfa3BD5NlN+VI/FCBXl9exz\nuOyQ\r\n=GEor\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"493e7594cf8f8e22d548f5f2acc5fe117a55be7f","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.7.6","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"15.14.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^1.32.1","nodeunit-x":"^0.13.0","@babel/core":"^7.12.9","auto-changelog":"^1.16.2","@babel/preset-env":"^7.12.7","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^5.3.1"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.2.2_1618360404332_0.3021424625990434","host":"s3://npm-registry-packages"}},"6.2.3":{"name":"filesize","version":"6.2.3","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.2.3","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"e9ef4b7f602d94a589db0c7e5f0ef612c37507f2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.2.3.tgz","fileCount":11,"integrity":"sha512-ZGjQi2J6z41KOK0LExIycfP7a8ZdEaoQ18LXGf5w55A4fPDj/OWMgGbhRcS43H0raAH7tEFvDycBfP7Qe+CfXg==","signatures":[{"sig":"MEYCIQDrugyI8ZC/b/moeHi908DO/vMUk0JHzzRnOWKSs5sCKQIhAImhkeTKKrhf52sO5NLeONlu7L1GAGuUT0vKEvKy0hUT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":76341,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgePa5CRA9TVsSAnZWagAA8O0QAJy5doXu972MbDztOVRm\n4+JqVpDauo4SV50aBGwoyPnJZJKkNRG5XddNV1iiWCDzQEAMU6OQjNpWYrRq\ne3w7bXITexLNblIGBwcQtKzFKLUMIsZKCNv0QI9i0IBs2YGO4J17s1fkS6y+\nAioQcrreStTWJqjc5QP4EU1baA+SdEDIxywx+RVM9GJtgE0pk1gj7F9kpXGJ\nMs9Ybe6i8mBK+VCwLTyttt5/SwUsOb2yBZUGhxDsIrqJKWoEa0Z2AIOwRlgn\niffHUAKUv3rpe8EpkrfmR99G0SPUCoW0sCRMrpZD8hWjmFklk93nEU8m7Ht6\nM5fWV4KRPIU7UpwuS9k0zTxrKXyyvxDjbnVm/K4F+lbaxKyy4FSHMy0SpWop\nuopj/0UjMAe2pAESKrl6BsXRvKCwY2+QjyqTu+AyYPYScMr0X9ZCqpcgo40o\n5CMl52VF2Qh46O2MfpQgNHTbtS3R1viX4NIzRReGDpWx7UXbPU02ngXE5Qd7\np5y6NWjl2D6xzByXmb77MF2ZW0uNINHqqqcp/c24jUBuIDluIAVKUKFEayVm\nyAaDVZiGJrKwumaeI3IQKMiKtGPfjD6LVFHqmJ80BobuB/qib9XeiFwuOKxT\nMc5XFzqylBYRjl5IVmoG6Hkr5sEy30SNgmXgsVvWZyUz5eUXPufwF+obRUPs\nFDt2\r\n=myMB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"f6667c83e27ddc122d39e0004a9968102ae7c735","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.7.6","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"15.14.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.24.0","rollup":"^2.45.2","nodeunit-x":"^0.14.0","@babel/core":"^7.13.15","auto-changelog":"^2.2.1","@babel/preset-env":"^7.13.15","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.2.3_1618540216918_0.6235732074471254","host":"s3://npm-registry-packages"}},"6.2.0":{"name":"filesize","version":"6.2.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.2.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f1493595ebd285fb63face5830336d0e6e5c56b2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.2.0.tgz","fileCount":11,"integrity":"sha512-yFLelrKhNIHl/G99PktUjAJZR1jccerYJGrRrhJVNNNL8jLHEnrl5/9p0jcp/QzQ+iwOr9H0UjPJusfTtpbdtQ==","signatures":[{"sig":"MEYCIQC0DwZuSWZ4kM7nyD4hiBhLfR6JuZmANtsre8N68tWwyAIhANUC0gRTHsxmEhNg41A22aY/QiN0tKriUrtYPqy2GXqk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":72164,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdX8gCRA9TVsSAnZWagAAplkP/2W6ALqM9H+4fZRv6cXW\n/4q/Isq2qHQH4opb3Id53AeraY6wRCxkD8yIZ/+Ophc6t7u2dVu9B5TjLzSD\n16Phuph3Vy/zaqrOUZMl2fCQ872w7rNds6cRqqdBzlI2Qq5ltHkg0bejF6Oa\nF0p+IIkMVj5bvXZihdf4KvnpcaXj6TFS3uncClve7MVMbXt6YTWkcX5wV4oR\nxF7nj8AtguVw+3S8LHzQ8CoRY/n4jH31hBmMk+jBZJkMlvA+MufiEjrWVMfg\nR/I6s3wHGoqJKORASsz5V/Uz0mOVAVjKESpSyrVcDS1O9y2fK0vspVnGeFa/\nqup0NXXN39PNa3+SZteIk4orOvRWYIuk0LlW4kHSGy2pZ0KwJ/Hyqsl+MxNN\nAodp82FFyoJUuYSIACoc4TXPkVHNNaEShtjpEIxQmt8qcZufeZuT857tHHdL\nACDLgi/WwalHAcyrzJaByj3QltVWFitqJyjk0+t8Y9F3U9MonhDCO9ASXWSU\nWKL3++pva+MfldWvq/6RxmtfXTxL2VojjtUJ6G7vVRe34m5lGxqZ4Hfb3sWF\nu2U6LmCi6nYP2acmiJe/lyrqvJmNOpJgjMcYlKok4oPxqpUBEt/Hj1e3Ojsm\n6LqdmvPWXHxRSi6EFe4Z58IRuILHWcrQbR6UgNIPAqYjgjYIr/ThK77JKUBw\nU3sS\r\n=Zgbv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"e6ba9f53ae07dad29df51103ec6227256af15032","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.7.6","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"15.14.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^1.32.1","nodeunit-x":"^0.13.0","@babel/core":"^7.12.9","auto-changelog":"^1.16.2","@babel/preset-env":"^7.12.7","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^5.3.1"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.2.0_1618312992235_0.7235914889886199","host":"s3://npm-registry-packages"}},"6.2.1":{"name":"filesize","version":"6.2.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.2.1","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"e14ee29440d24bc82bca41f4a740d4e0397e79ac","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.2.1.tgz","fileCount":11,"integrity":"sha512-neMilKeMJQ0zUWuxAciRVhtncuxF/Gkhig4+8FrL4g7ppqN7JEGRb1uZFjVid7OJk7CE3ulZuO7V+nB2WDJW+A==","signatures":[{"sig":"MEUCIBAA4JeefEfC22IG+UYdJQCj9ctvL8cyXyKtDfvXbTO1AiEA6hWb53IBLex8YLs2VqiAnakoIuJXTOTVDj1/VzhkguE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75559,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdZKrCRA9TVsSAnZWagAAYHwP/R/CxKmE6UBRuJ9Yx7PA\nshNYgnRFyqqJLlpWoH1Gmf5dDtTm7rZeQZ31X3EzfZ1d18Skpzo+D86BFXr5\nBw9Z1RqIZz81cejMZLzSAevRKUCKHFszbC5AgA582aN73dq+J6ysqm3ykvgq\nP61MjFv4UFgCNTqptGiH4BYOteGuCiPBM1a4MWYI7kUNFUecbEa+P2TXtNOz\nu/MqO4ZIHFPoxDd9xdCIr3OBX9vRyMyeVTPqunAdK5priU7Ne8j2JR7cF9vy\nSlju8JemROsV5Ogm61y5UjqbHFKO65h416yxpOFPsL6E2c8CYUeZuB81CB99\naS2nlldf527veentml074GMZeoXCIHC0uz+0Q0UTLZNH6WtE81BCPoX8ub7T\nRwJzn7arf7lxOxHHJx+Rk4EEhWI9GwJ1bjiYO/0e6ZLvcrdHnpPexPGJlj95\nmC/qL2cu/lqn2PHG05hmPfwAzIWEJK7XvyUmYxZgELYfkiGyJX7x6a+c6n9J\no0CgPtmaNHyY3SOzomKxTJzk6g1MlvJriLFmVraap/C28VPPDwrVdx2ocep+\nN6AXL1HRFmW+pnd7/SwyQ4wrgr2r/B1JksDuw26OWzUD1RvCgAzJla2yDCkY\ny/ZiLwp5q723/sWK5cAGCU+FcVPE7K3f9dSjrCcTfnEYiYhvpkgOAxtTZBbq\nKvmN\r\n=Ki+L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"179025e027f310f6cf144421f170b5d71bb1c9ad","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.7.6","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"15.14.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^6.8.0","rollup":"^1.32.1","nodeunit-x":"^0.13.0","@babel/core":"^7.12.9","auto-changelog":"^1.16.2","@babel/preset-env":"^7.12.7","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^5.3.1"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.2.1_1618317994965_0.40999118742806173","host":"s3://npm-registry-packages"}},"1.9.0":{"name":"filesize","version":"1.9.0","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.9.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"9b0a553409fe0b43c646c61e06f2fe0af4f065e4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.9.0.tgz","integrity":"sha512-7RTrC7pRmTYKTPg8dGArJt2313euA6penqRCA11vvRdvK8AdnAtB1WvQE2Vm0jri8hIODWLOIAwESARHwWN5cA==","signatures":[{"sig":"MEYCIQChOSjOqWGr+VYKxu2QKvzE+azcoYHHORq80PBnaDoa6gIhANFBePXGDvXOHV0StkZr/AIR1o5v4EGud+Aa1oTLL6HX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.11","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-uglify":"~ 0.1.2","grunt-contrib-nodeunit":"~ 0.1.2"}},"1.9.1":{"name":"filesize","version":"1.9.1","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.9.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"734690797de4243e3717ed855c3e1384562dd674","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.9.1.tgz","integrity":"sha512-JC//LQ1dSkofkfEdcPvG8+fR5O/MiQoL7tv7aR7QcdTCpF1KMF3/cX4hvb0koZEdAtdIVQFoFMGDAMh8/vw5Cg==","signatures":[{"sig":"MEYCIQD2ZbDYtMOtNEIiuIKE+JgSkgKU2/jXY6oL7FZdfA5IqQIhAL5hc1mdfzwYwo3QOUyTlCb5IHkekfIIWHCDFqi03wez","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.11","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.0","grunt-cli":"~ 0.1.6","grunt-contrib-concat":"~ 0.1.3","grunt-contrib-uglify":"~ 0.1.2","grunt-contrib-nodeunit":"~ 0.1.2"}},"5.0.0":{"name":"filesize","version":"5.0.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@5.0.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"acf19f37396eb20d3128bd3ee09f926be2c6eb17","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-5.0.0.tgz","fileCount":8,"integrity":"sha512-AcAcgAQSLPQrywmZRrmLxeoa2bvAf7km2y0ihJH2zqYicBlaJk2SjymRSt1CVhNf80jtqJ4vEbuTlaem+U/XQQ==","signatures":[{"sig":"MEUCICFHJ+PJUnkTFPJ2xp4KNYn3mdG0tCAesl/h0LEaX5h2AiEAipOrUncNW/TtK3LcgH50L+rFuDEG9pU1L8wjts/QUz4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdkrBiCRA9TVsSAnZWagAAAb4P/2e3kOVNu2Cq/NAb/ug3\nGA9qArhBNDjWBUIYECpQ84tn+gdzE1dudtEt3/YJ+Zcy9rp5RxXyIsvZa/yu\n9eIp+koXfeYJ7fdLJK4hr57N1TQtp8JDSShEBnniZ5u5sQTCThrMGW6BT0Cr\nMZlzJ0ERkDHCsj2fF5VaS5lUIIYA7Lf6LbVniX5gfCIci3dd7viGFqaVvymd\n0T8BP0ZNKr+OHtcyWBYuHAAhUnOo0uznZLAJjTK+tshVFAS4vxug5peN2ZBk\nqI9N0vyU6arjF4JUGbErzfTNsJmF3cfnGABgw2vPVkcsF/RW/eQf6Io+bvV9\npfsXeRAwyMyPa8Y55Fa2ukjXd7/rN/HTv2iDr3+q5fXjjHgxEXk35IrUHmSt\nOQsFLVTw85ApgfWGTUl3hAExrcb5mVsHPmhTNAE6sUN+ziBLL25w2Gn/0xOw\nGm+qGUcG/snhIefDi/pVfSD2aQ19PIK0eGJKxHwCac/dey1kx8VQ9FdoX4j1\nKPa8rcnDOzQ2In2vxdlrW7dnJ7kgBWdRXKgrIUePCyf/lLgfBTNJtLaNGWum\naxt+FOjopKINvclD7Di5B6gRo8A1RyXqrgU7fFTSWgftA24/mUOEelWOYsQX\nVMqUjOGgz023nHQ9fw8g0H4LaGqi+juLgxt4LVj0EBMmnOlqMc4NkTd12wCF\nYKFs\r\n=7ene\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.cjs.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","source":"src/filesize.js","browser":"lib/filesize.js","engines":{"node":">= 0.4.0"},"gitHead":"2e3d1bb20751e3d25057bb6ef91f66a737057380","scripts":{"test":"nodeunit test/filesize_test.js","build":"tslib build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.11.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"12.11.0","_hasShrinkwrap":false,"devDependencies":{"nodeunit":"^0.11.3","tslib-cli":"^5.0.22"},"_npmOperationalInternal":{"tmp":"tmp/filesize_5.0.0_1569894497994_0.7679768087726566","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"filesize","version":"5.0.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@5.0.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"aa8cba3fe38c8131e4523e4356b5788cb7c9a946","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-5.0.1.tgz","fileCount":7,"integrity":"sha512-YUuUp6LkHz+13F0wiqrYsChnhN8hre8fz/C4vEHMP08VuqV7SyHBnzVDxkHSDaOlRIuC7iCDiMFfo1ZTRb0rTA==","signatures":[{"sig":"MEUCIAfErFBdguZeQEae1KPGW0rFOoqTfCofbPNMGg4xjlViAiEAkKR3H/kFcu/kvhZ14QxujaubauuDwJpb42wvvjNaV3g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18578,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdksHsCRA9TVsSAnZWagAA9XkP/ilFM23JiNfN+MfLCLnH\n8skL612XN50rOnFVjPhUWGWdtQTDQ3dcHMWin5cneZuNgLe4NntEjeBz9tc7\nOMG4H1lp8U6sUUn7xJqVhJwvk4y2kLXrnROaggJWAK92MjwNAl5kA77eU809\nw7yZC713AfCGlR2fpwfQlxUvV6lQaJIjB19N2kA+GKclzp1cqqiwbeTjgI4i\nHYSZhcp0/4/pTm98xQzd7QvDeH6KCqfPHJa3fw5YZsjGFlXQztAlhX82Zt9H\nXBilSGDEJANfRLLd2jtbbUo+E0d3pf1qbgWncnctE4OsjUW8OQoGuu7xVEPA\nF7oYMQElvzbl9aAHwr7wr1HaxhhzfK3X/roRBZuorXWNfXQKwerM6fjbqBkV\num3OlODFhqPPZDOrP3yP+8Tq87NOaTtYNIdXDtJhARIhfX9NtAaHl+eRACBw\npom+quwB+bzl/1pdklXuhEp0v7XdeRhWd9lH4Py2Xs42fm/yyBFjn5AuHHVD\nHcwcjEhAfei+uiSR+O/o9tugG6rtvWH8QTI+Mh+xP73jbhK+Bb/242JFhCHv\nSEWWXSK7BzBGZCfWdRYTmKEw7qtrOOYqdkb1x17Hb4uTlOJq3pYhfd0nO1kW\n9ehDjKvACMagQ3dtHvCz7bcIKk+myAkJnmapryFz0ZAeTyxhIbnRerKdk594\n6FRO\r\n=si5U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.cjs.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","source":"src/filesize.js","browser":"lib/filesize.js","engines":{"node":">= 0.4.0"},"gitHead":"3b09002acb50a8e78b243f5540bf0158ec373b20","scripts":{"test":"nodeunit test/filesize_test.js","build":"tslib build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.11.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"12.11.0","_hasShrinkwrap":false,"devDependencies":{"nodeunit":"^0.11.3","tslib-cli":"^5.0.22"},"_npmOperationalInternal":{"tmp":"tmp/filesize_5.0.1_1569898987264_0.3386470167117903","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"filesize","version":"5.0.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@5.0.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"b284b81b04dffcba2602c3dae11749f303629a02","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-5.0.2.tgz","fileCount":8,"integrity":"sha512-EU7BtXbva4fOuNzfIb2HbKs2wGqL45Tt+XwSAXLg4LUu2cmmdeUQIa2ZfGKYcjMIo1qldeXy8FADXU9oY090qw==","signatures":[{"sig":"MEUCIQD3a/XOwAjxAiMybEXtWnxWdzigUzww1DreRwQgpkjFnAIgbF5Z1Ba+KUbkxpjWCK+tSjb3PoBQhiHEpwseNi95LGc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdm0viCRA9TVsSAnZWagAAWLAP/1P+lvzthp9x2oorMRIO\nk7wM0/o+WTQ7IExzhllofHUEFDXWgG7ykR8qF+5FDvEI4IsDHCNrIR4w4h9j\nRhFYV9EutRL0Jd1WiTjYJdZ8yudELYZ0RA+wWmtTh85XRfWQ3J70PzODb5UY\n+JOq/kNGu0QPq0md+GkVwYevLSQDtPOSGqUV6uTePc+hQpUjRqzMEEtljNuJ\nTy5/DNy3fEoGhBu1EH6QpntfhY7QRGhNnWWzQPYsDwsFeYAdp/GmocWPSzEk\nL8kBX4b1GzznuA+rTm0PrvwJgPjz4zJMErZa16+FSaTtZTyFBsOuwtJtlym6\n75uygIXEpipqbkqkh2JtzpTamhbacf0AHLAv7cLa19b39Q9PNzYKkl/+AlMb\nr3G/4l0T2mM9O2FAPQDfbjbDKM5i/1K3JPiIls+Z2SbeKrRsoZ2KOk6y9Imn\nt3YR7rgnINtjVm8gyjadovGI2uIODUXC+M/nOGzJoLLMclKquNHBvsmMurtR\nUZ+JwpOYM1gPL47zWRMidPpJ896AUcA1ZbWBWxFfDFtT6FGR0RDqVbC9KLHF\nM0tPnOKK9FxCRS8QRrjh1gMV9OMC5GdH0fgvgWPo4tnCUQRcvLYeFnO8z3II\nqVDQPY2CyIFpcWzotm/8kAVTor03wgLiCspPmRd18lP3+OhGK5mETtTk/NGF\nf8rJ\r\n=ZW61\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.cjs.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","source":"src/filesize.js","browser":"lib/filesize.js","engines":{"node":">= 0.4.0"},"gitHead":"72968fa5fbcf87654b9bb6606870f1518c5f24e9","scripts":{"test":"nodeunit test/filesize_test.js","build":"tslib build","changelog":"git log --oneline --no-merges --decorate=short > CHANGELOG"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.11.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"12.11.0","_hasShrinkwrap":false,"devDependencies":{"nodeunit":"^0.11.3","tslib-cli":"^5.0.22"},"_npmOperationalInternal":{"tmp":"tmp/filesize_5.0.2_1570458593945_0.018545275007719964","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"filesize","version":"5.0.3","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@5.0.3","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"2fa284185e9d2e8edbec2915b4dadce4043aac31","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-5.0.3.tgz","fileCount":8,"integrity":"sha512-RM123v6KPqgZJmVCh4rLvCo8tLKr4sgD92DeZ+AuoUE8teGZJHKs1cTORwETcpIJSlGsz2WYdwKDQUXby5hNqQ==","signatures":[{"sig":"MEYCIQDQmWkZ0gzZMsMDDOeXpWPyq4bKZm0tTmuhp/4V+kX0BQIhAOViXCBGBCbky/hmcYfypV1p+VNCsKmiZi9MQKJKOkyw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38519,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnRm1CRA9TVsSAnZWagAAuzwP/j/DB0Jvd/Zkinf9djdQ\nvDTJnijLedgNwIlzED3VoHHm919QMceXPAc1X4m5ZjG6epBvjSxzdI2ak6g/\ntO3sV+LACTftWQUnXDCAYeKOyYfI+3R+8WReReWf0+jTerD8UV5ie9Nwn9i3\nyJxVl8oOXpvq62gF44k/8s3Ksju5drfxjntLBgFZGBEjnNC9zMJrG4ylhdd1\nqYNs1iETs2eOUKsxtcG+AVaPe9LvIKYAB30NlivN3T3/4ApJ5uSQ5FXHC5pb\neUP8NbeQN657pOOrGB4h6nAhEZeYQitZlu1PrqJJq9Sboz14au+lCS3TGKfI\ncCStha6o6LckZFONBebLKsR75gH2q7kk+418pJlLk4b9XO9K9YXFr10bY4j3\n6j//GGTZ7X2Ia2D2tpU2ZhWVhuTg7yPyCpWj3Bb5B+q9PxSmd4SdO211+vv+\nLxq8NvJzt1NlMiiTsjAdpT0Pzmj3f4Suz7icJK5qJjNQM1c9wDhjmRPInuZd\nJ1noDcfkqr7hEww2EJGoPhAupU1aiiD0/4vebUGQOcBQKe4ZaYP7QGCzVAvu\n23dlDvFeHxU+LbMVaUMc33GuXtAyFLVKw1fMiabuapvI9E3QptI8Mr/h72+S\n0/eSDeFKYVNnrIM+G0oaLHRMdx0nMoFdERCb2lw4Bn5uzHNYEX6kxiaoyTE+\nzExI\r\n=y1Lr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.cjs.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","source":"src/filesize.js","browser":"lib/filesize.js","engines":{"node":">= 0.4.0"},"gitHead":"5b88732fa45242413fc96dc14afdde8938251d54","scripts":{"test":"nodeunit test/filesize_test.js","build":"tslib build","changelog":"git log --no-merges --date=short --tags --format=\"[%cd] %h%d %s - %cn (%ce)\" > CHANGELOG"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.11.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"12.11.1","_hasShrinkwrap":false,"devDependencies":{"nodeunit":"^0.11.3","tslib-cli":"^5.0.22"},"_npmOperationalInternal":{"tmp":"tmp/filesize_5.0.3_1570576820613_0.5018918178660274","host":"s3://npm-registry-packages"}},"1.7.4":{"name":"filesize","version":"1.7.4","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.4","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"43efdd0a6bfec25e14b0a2757b066b48f811fa9c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.4.tgz","integrity":"sha512-fyR+gBdboUhYzsIc0sfYr1isR/X+mKDywecTMPFrKjIm4chnitjkmRK287E8k/tfXf7JGe+RAr0WpSkUp9UQ+g==","signatures":[{"sig":"MEUCIQC1Pff9We4wOWLCR2GOILIfZuvtppmHpsY+rWRtSoyH2wIgW/nbJJ3DD/LuwsqWWyTkFGvX56FKNkcPpY0j2pcfpWA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"http://opensource.org/licenses/BSD-3-Clause","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"1.7.5":{"name":"filesize","version":"1.7.5","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.5","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"c3a21557e137f3b8181d193f6d65bceb2bfbe990","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.5.tgz","integrity":"sha512-rl4k6+8lFtI5LbgVmFlj7fHgyZeZu41BDsPkBkCFcvAOVXPNACCg5b2oKnTW126x8afcpwG8yD5Rv80Yl64LHg==","signatures":[{"sig":"MEUCIHpCkYiAh7/8GKn5bVEUzqsfGsBMJs12EMxCOPhrh/NNAiEA7Rj2h1LhQbDAA+8wJ0rH0CLDPEDKPChJuDi6D1S3e+Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"1.7.6":{"name":"filesize","version":"1.7.6","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.6","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"6a22d5cccdc2cbd4bac1d04907fa9ebed22d8242","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.6.tgz","integrity":"sha512-4ou2Pc0C0cp/ldRHwgRtn8+dijKyHpmrG6R2C6DcCNSM7HOZSYIVwQt7i7lzaYDCn6e6ot53cODgKjmFAUNkNw==","signatures":[{"sig":"MEUCIQC0oegjXMEDb7GhYKYvAzOfFAg59R06XkhAZ5Zx8mafqQIgWQbMwUOjN8dc0TpzdfDmOl7ee+vV0TUXpK8faRXRdos=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"4.0.0":{"name":"filesize","version":"4.0.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@4.0.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"edd45b16247c815ac3bc7265c34cf3dab6b41234","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-4.0.0.tgz","fileCount":5,"integrity":"sha512-IGrOTisl83FmbpiL5KCpfF7+6CRcmndNaWxwYWcnSqXtoNUhVO+1l8rKK4GVE7A8f4fEDkSocS9X6+eXHkEhGA==","signatures":[{"sig":"MEUCIQC99Z98tKh9FWNwRsDMNTaOkstpzR18US3ZPqZ6DhY/RQIgQeM2EuKh0FOAyAxlta9ttKf/KJYJJoxa7b8IAwYWAFI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14614,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOimOCRA9TVsSAnZWagAABX4QAJcF7pL2zOtMmqjychea\nGU96GDB3/E3YfxQumvH7By8dq9aOvpQrbJdkjf4IwJ9kaTPof1MUNeuAZ+yO\nilWT1e49lNkQHkAxpV/jtWqkr4hdkhore5PbFcjbjWxmXqKMNoWGQbamIqw+\nI4tB/GIdNquVJNgtH5JiXzUCzj1uT9S36Fiw6X9fRqJ6Re828AX8tCGhzQ+o\nzhhxovMovRCOvIMhU+G68xSoZ+EbKQiVUE+vGS6Fb3OGMxyWiMWx+JBKDibx\n2FvZoznE8lDI647yhB0AloRMV0VuIYrKpO21XXxymJOBXLzawcuydgfShYMe\neN2ObYNiGPi8DLBk8+5zkqXZXv67hm+1W6VKRT0fCki0HAP55TJ3LpqjETel\nVu0+hBk9/hLHFvjG/hLExtA5IioEg6RnFTXgcHEW66fCdCqoyFn8wkofog3J\n1V9ma4Y4MKkPXuwWjeqZXoA8hY7jiIqalnqHjXu/EF71FmMY3+IrLyitgo5d\nemYxsx9Ep+QYrD4gL5HagkCaAkMLE1Hjwg9voa5G5UXs3fzq8E0nzkF9G6rV\nRsuDaGLsHtUcGuxD7eRFmohGR81Xj+ghP/dip8rIBfLLuZiKNAVbRpbn/cF7\nIc8RziXGmEeq8LDgZ+opFoKYkw15FOACjzDqdht3hHTullJ/N9JMh5wPEB+J\n2z1A\r\n=WtQi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"81e5499ba4d4e80c39d2d10d9fa88be1a410f1eb","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.5.0-next.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"11.6.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.3","grunt-cli":"^1.3.2","babel-core":"^6.26.3","grunt-babel":"^7.0.0","babel-minify":"^0.5.0","grunt-eslint":"^21.0.0","babel-preset-env":"^1.7.0","grunt-contrib-watch":"^1.1.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^4.0.0","grunt-contrib-nodeunit":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_4.0.0_1547315597671_0.4776206433717245","host":"s3://npm-registry-packages"}},"1.7.7":{"name":"filesize","version":"1.7.7","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.7","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"310581163913010e2664a4a2079a12f3cb070fcc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.7.tgz","integrity":"sha512-OjQbgkS5agWQDDjJHdGHBxZwuOLSt2EJIwPHY45DJfxA2gxvFwpMaLhLyFmwCY9hxAUyLsZnlUw+MUQrxH3qQw==","signatures":[{"sig":"MEYCIQDH3IKQ4dammdXPCfDV0665H2CRCTmuxRXP3lXuSiY5ewIhAJumk6Qh3+Ll7E9J/HWVc5qDudgjRWjD3T/jtV06Os5T","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"1.7.8":{"name":"filesize","version":"1.7.8","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.8","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"decb4269f55aaf64c646e9a39b001b6f8e649cc3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.8.tgz","integrity":"sha512-FQQd6EHZ79jpFSCyA77PnkrIhUtNbe2fbzxGL0nfy1+wFzX404fH7YCaWCYSq+aVsAk8MVIbrsjhsD+11TzmvQ==","signatures":[{"sig":"MEYCIQCZFcbI+rzSvtm4Y3xkv+0WKuK02gRcIjKGasHV53x14AIhAPYJhngUD4A1M75hACxEXrbsUWaGZ2Vs+cQvN2f0oivf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"6.2.6":{"name":"filesize","version":"6.2.6","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.2.6","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"ab3b18aea4eb8db0f7fadba6d0b5ec5ec020305a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.2.6.tgz","fileCount":11,"integrity":"sha512-329LZkP3cIi17Eha17gaMEtgl1IJJG/zmv5NIjk6BECybiO+88D970mp2ke7U96DT0h3NT2wimXo/XrdL+7qbQ==","signatures":[{"sig":"MEUCIQCO7PBs+xKShDZb8iwbwHYojiYBETIL4ZMDzIbqMzFXwgIgCBeZnlKhsrThHtEvxkP5eP5IQVquoHl+n7DlMvTTVqw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77818,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgfhTJCRA9TVsSAnZWagAABOQP+gIXzSRzorol4RV+dAGj\nZSKZJ20+8MvrqZY8b2Ki4CS7zyI/4tb9uZRlzoeh2/gV38cjXya7cwFrk9qz\nC/agRhj2ShzWR+qgmPkEDvUAtRFSgHyXdF/p/wSym1wsqV+PR8DbHPoOrES4\nBc3eJ8/OazisvfKX886s30cNmGPrDsKJM2PM1uYXd0mgJhcdnxaKTv5BbK47\nDxp2m4lOUwmeEZQDqdC9awTzFmNJXy9ds2X26D38vmQiDwhLem8XvOLwTwyQ\nev2qWZOi/A7p8kxFCP7LtT15OYmMCVWgA6dPVpNQ5l55zYTnqS+P9pEPADzC\nBkhrulCHhpYFBOL+hhsWCqLpb/a+giKVqMphKcRMJLV1KXwoFCyclcovdEvZ\nKZuLBN+yc/BHWfmST6S8/d8eBPIXNGxM3QEaeZ7OuOy8av+eDI4yY2tPyRP3\nx9WWjimvCsxtkjO1MO4lhMCA1g60p9KQ/eujZ30ZNMttvlvt3H8om5EKewhL\nh5H1j6XMKIPaCgXHCdUzmNUxuflqvGit+0L+0CfbUn+MSCT+3SA5pEj6wVsn\nJ4ma3QOf6u7c6VjgWazMci8Bdms1joCAJ7mLCRDR80KL5N8x5WlFOjRkF+KR\nYEKCYqH23fnzBQ0njcxEXg8rox99iimn1acXjWU8kivrcET2uyyu4lw4pjXM\n6Y8u\r\n=FXOC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"72c5736d5b8d9a9d27b5bcc83fef0bdc4732d86f","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","types":"npx typescript src/filesize.js --declaration --allowJs --emitDeclarationOnly --outDir ./","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.7.6","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"15.14.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.24.0","rollup":"^2.45.2","nodeunit-x":"^0.14.0","@babel/core":"^7.13.15","auto-changelog":"^2.2.1","@babel/preset-env":"^7.13.15","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.2.6_1618875592837_0.1790500772828556","host":"s3://npm-registry-packages"}},"1.7.9":{"name":"filesize","version":"1.7.9","keywords":["file","filesize","size","readable","filesystem"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.7.9","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"b0a87a236ba992c03ff68d264a092057e144c774","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.7.9.tgz","integrity":"sha512-mjYJ3B0CoHqF7iZMq+0GsqYeLFW6+ffqI6FMY7QbfbYmrNByKtTVbYm9Aj7EdbJWThMM/Sjd+tkBfT+svfrALg==","signatures":[{"sig":"MEUCIQCnC1ok2nfgPwgs3sQifbOMOEozxqVF1vDF73drdeLD2AIgZPes0mvFAEaXnft3CujKOi9hcyhM0O6rrWaygojqwN8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.6.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.2.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.3.12"}},"6.2.4":{"name":"filesize","version":"6.2.4","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.2.4","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"3de38e8e28a3d1f05d6ad66c565e8d890308db5b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.2.4.tgz","fileCount":11,"integrity":"sha512-C0LIr5f7YS8BZxeVy/GBHP7irCCLrEz4+ZmZF5DzIhYLD5K4gCdB/1PqEMd++7z0amS1+YZ5IAIL3/NBBgWaIA==","signatures":[{"sig":"MEQCIAo1RApcde/FeJCr2kpUSyvO+36lUZaXPqJ2xcoR0fQSAiAuriF6jhLaSxHImXRwiB8FWvrwaZKUk6DoAepCd3W+Ng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgePpVCRA9TVsSAnZWagAA3XIP/0ZXYLi/r3JYpkxRqbOo\noqHdtcBsuK8zHdZsTlVTt7N7VRpZgMj+6+oE7w78DBcqTO/Yp9F7TzrauG+U\nqpSobfPrv4Z8qop+CZQbxAiE/NW6II65Uo8692OMFhFSk5vBLQqxj1dZkqqO\n1BtYZ2g6f/iI11PG0BZOVEmlf9ZzK9RLJtlmbEdMakx2VrOyir6GxpuYcMas\n6V30YROVq8AXFr5q2s7nqqL495QqFFji7m4JdgyxlqAmT9g1QySQMFsVgj0t\nYsvsHwk13DsidwygXu6AgIkL+QRARHXxCPubiIsQMgvLH+H2XuBwwMTFgfwq\nbLMuVZHn0Ml9ZR0rahcVYxZXBHr46GDhs7An8yfy9jJcdco4AQgvULRXl577\nsqjNC+f/RDQ0eIVi6TG601ScoxG1e7HvL4fXusy/csRxSHlXQRypMSXKM4yV\n+A+KJL1ieZnu59CVqX/vvCcbsRw8qsqgMajYREd6GKReFLHB1ol7moNYVWJe\ndkdWGLEanuCbEnjqOeX6rz2Rto1rkgJwvSivnljZ8XgqyUiWZtGB+ITdjryF\nCb0rhzhFxaf7oIyEJAgRxUZoSycUBUPHkOn1ofa597SMFtaZPWYu1yJ2vkBm\nwkQ/VnJ8CcRiNHfia0InqlkNTgK3vvH29JRbXyIx8n6EgKT3mzRYHkhtHTHu\n2/J0\r\n=I/sD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"ae2c8f9ffb90074ba4308662ba4786fe7d9062d5","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.7.6","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"15.14.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.24.0","rollup":"^2.45.2","nodeunit-x":"^0.14.0","@babel/core":"^7.13.15","auto-changelog":"^2.2.1","@babel/preset-env":"^7.13.15","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.2.4_1618541141165_0.12080838145330186","host":"s3://npm-registry-packages"}},"6.2.5":{"name":"filesize","version":"6.2.5","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.2.5","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"ee4de0e71ba03f1d6814a40085249343ccfc7ac3","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.2.5.tgz","fileCount":11,"integrity":"sha512-JkM1y2+IpnEwp3pbXOUXR+9ytuZE07ZnWb/OR0H/WOSkjWASpmXgC0ZBIs4/SAYq9wHqExeQxcYNoJKf6s0RCg==","signatures":[{"sig":"MEUCIQDoAs9TKr9Q3QZtsyTNyj4wnj8k94oq8CfemC9jNqLGrQIgAuseG9+VUk7m0fJZ6ALD+xZVC7cc/1tm0hbVbjnffME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgePuZCRA9TVsSAnZWagAAAOkQAIwi67FOb2+J+iiJysq0\nV84o3n9iNCa1KzEoAH2lW+6eekxK9f8fywnY+Y1inYHrNu308Pw1Qcpmb9Ll\n/28DNkDLIBlEvtNilbAse2ZRM/bvTxIWVos1nOW0JKw2CU22yU9QYJg4OrIg\nWB9Bi/LXJMFpiU2sbA2NkIuJmAvDTHdlxlJZc1oxIIByxVX+VAzw1QpbkEML\nlRIrna2/4etVBPyLAaxBux2RgNIJaHZ+PrLS+RsJn6G/qAmDyfqjLZKVFkMp\ntDW0eGyq3TpWkIi/8mxedSna+Frewd1bncCPsBOzZ0f1P/rThYUQXZLSkRD1\nytWCACuiEA8U6Ea/9EeDu5vBEpgPGQdFiAgSwLUWerCgKIlYWZOG8b2SX5TE\nlGDtQ0eFk/lCcACOgIfAUN7362hlhz8Awg9mV9/xiEhaRFFylThrSAzpvpfu\nQ4j94fhLxuHhDi1y7VLKHi1fI/UlGqsmZF6SYk1D/PA7igB1hWAbJhkL0hWb\n31fXVGwSfQjoFBud1c/PcSKq1zF7GXs2sGC1ePobe9iWVaW1DY9mv+nI0cjq\n3yyOcF8DcojWpSuw2v73OUBeapax20IuQ34yvrGhFZ8JT6YbnCKw6QKxnrws\nShgaXYIHcO0/LS6mbxAiEb1fDqYdEoiWW2WnzTdwcfg0v02zGpYck4VMFyOI\n7bJN\r\n=ZdqB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"75c2445a5ff60bab62ca403ea5b85cd4200eade9","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:unit":"nodeunit test/*.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"7.7.6","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"15.14.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^7.24.0","rollup":"^2.45.2","nodeunit-x":"^0.14.0","@babel/core":"^7.13.15","auto-changelog":"^2.2.1","@babel/preset-env":"^7.13.15","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.2.5_1618541465344_0.9971347787982012","host":"s3://npm-registry-packages"}},"9.0.10":{"name":"filesize","version":"9.0.10","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.10","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"13c85b73e436c46decdebd28226b1a357a293918","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.10.tgz","fileCount":13,"integrity":"sha512-pyqPNz5/xl31KBnGuf23SdY19TwSOdxX8LmKp4sXhtN/AboIgyqnqoFZY8CNywh6BP4CZEThAKXaNbRW9/oPjQ==","signatures":[{"sig":"MEUCIQCKiytABQBW+s/Ul4fzlazYtA05EjgeLYmhTRaUsfsN7AIgTkjhgbeys+cIM1OES7SbJugg2L1Mw2uSAcMts1CpiFs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63197,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiujwBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqxMg//WJnAQvYOO7jkQx1MkU8gDrNzRPovodOWBcmNABKgW2qJ6fge\r\n1DuUJC4nSnvpKl/WyWS84pSabnl0GphTJYwq/5G5ef1j4clt27BctmluA7uv\r\nqgVjSOwn++sMPPVjdbAevCsijb+KFN6yOqonP5KV+CDQ1pCKb2kv0HUHsXQh\r\nlyDlcweIkn8trqwqVH7Q/X3vaamSALlrC43m/IZxHCCbdtwbePTdsTyQR9X2\r\naZOL1zj9AajxT7cWdo+LDDKVkOfx+FLsORm3m1X0QF6maB0uCM2+GJCal5pE\r\nr25ykqpyFr92PNWXcOmX5r59eByWiiCNtADDDmaDUv0aXV9ddspmzbZzn52r\r\nQ/gBCliEKzhgqzVo8fLKLH8bt5yj6I6437/eE62L6jhKG3oPQHO3CfwAUbES\r\nMLcSJgI17t4pQeJtX8v8h7tAE2XhhuSOyDyDS+brTsP7r51iKrklI/83E9Wp\r\nG4ajwXiCO7nlE1b9tGbqsiwA1jl/no1FkDZFut4oFCJQnEYeYJCxK+fglHi4\r\nM81sSJS5CpggsT9dEMozorbqwWFbUanO2EmtPh15QVs2bNtnmWnu7g/YomI2\r\ndaxsJkV0aF52oHiFYvmb/MHA6LaVOBxRR+3KBYdVCO4Bt0WJ7GIMNKyvlfUl\r\nZ4dJxKbk8FpDdrLZz0yiHnpTkOlWCBLLVPc=\r\n=p0jy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"f924463ebda9421c20314756de6651e4553dbdc7","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.9.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.17.0","rollup":"^2.75.6","nodeunit-x":"^0.15.0","typescript":"^4.7.3","@babel/core":"^7.18.5","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.10_1656372225266_0.6011402989345831","host":"s3://npm-registry-packages"}},"9.0.11":{"name":"filesize","version":"9.0.11","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.11","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"4ac3a42c084232dd9b2a1da0107f32d42fcfa5e4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.11.tgz","fileCount":13,"integrity":"sha512-gTAiTtI0STpKa5xesyTA9hA3LX4ga8sm2nWRcffEa1L/5vQwb4mj2MdzMkoHoGv4QzfDshQZuYscQSf8c4TKOA==","signatures":[{"sig":"MEYCIQCs2pW0sXDxvs7M7LlwzPwOHGFa3FpXWBWgKvNlD7aHQQIhAN/s6WPhZMh1zKEbRQ203QJixmM20ivqnWnFcW1r6v4+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63203,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiukBEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp91Q//VjbzvjEEM/7+pNcZr/mUbVyqIisEvHLRFkdsuhmWMGCFI2Fi\r\nr54GpZy5/8E0KLTNGm0ZJHe/49amLxTc/kr1550Z9SW+IYKdPsA9e1Y0P4YK\r\nB5uk53VV67h8FjPHIFPbMUrqrSm3QwaqMYPipEu7qUi/W6VzyEA9+ICSz0ve\r\nYidHWYaGIcG9EmS5ehz6E40cLosYmf/4zn27aLO4+fI9H67TlJx9cYu8zw35\r\n+HfuALK26Q8IXOEb7BANeY19AO8JF1TKuV8tM8ioQMEj+VBxvS05XiupXL1r\r\nT1CO1IDF7jTzodWTYegkMHwzqhxQOzvxXTk7UD7RNLfvgvOPl1J0UM8q2rz4\r\npUWYjChN4Oo8bF7DRx4DkLcFLEq2WXJvFLZLUqr7/WuDrZUSEh5T0X18W+AS\r\nSSLkrXepx061ZazP9geOzeWgvGIOkOLjZkEAL415BGFlT4dj0WKRhGzOPlit\r\nAzhtS+0lsOerBNlR2qpFcsU5jn2loqIe2Ik2VYdwICOxSQqd8mVXXyfWvIQY\r\nDmPwm6KtBioOhG8O9G35hpsDPpV5vDnqVPU0XLgDv5GrHXBmYYuPMOk7Hggl\r\n1zveMgKzsq6UrknOMoTtUdq7TmlkHx6TTQWaLFGOXiJWZ0QgAkm5xIvrIEpS\r\nsxwjMbR8r3oklQHMP5s9JKHpRr9vkDjzQug=\r\n=Turg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"893d3123759a1552d6387eae6d0a09f442f14d3f","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.9.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.17.0","rollup":"^2.75.6","nodeunit-x":"^0.15.0","typescript":"^4.7.3","@babel/core":"^7.18.5","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.11_1656373316367_0.8016124925734747","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"filesize","version":"3.6.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.6.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"22d079615624bb6fd3c04026120628a41b3f4efa","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.6.0.tgz","integrity":"sha512-g5OWtoZWcPI56js1DFhIEqyG9tnu/7sG3foHwgS9KGYFMfsYguI3E+PRVCmtmE96VajQIEMRU2OhN+ME589Gdw==","signatures":[{"sig":"MEQCIHbwFdWmKQ7DPhwVNmcL5SGs/TxJiy/+s5jKM3trgQb5AiBFKV706U6AYNEzqSvO+Wg0z2SNIw3QxFn55G1JMqS9XQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"8603992e80600ce738095a47003dbd2d1fcd8bac","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"5.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"9.5.0","devDependencies":{"grunt":"^1.0.1","grunt-cli":"^1.2.0","babel-core":"^6.26.0","grunt-babel":"^7.0.0","babel-minify":"^0.3.0","grunt-eslint":"^20.1.0","babel-preset-env":"^1.6.1","grunt-contrib-watch":"^1.0.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^3.3.0","grunt-contrib-nodeunit":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.6.0.tgz_1517700468313_0.8561308477073908","host":"s3://npm-registry-packages"}},"3.6.1":{"name":"filesize","version":"3.6.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.6.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"090bb3ee01b6f801a8a8be99d31710b3422bb317","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.6.1.tgz","fileCount":5,"integrity":"sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==","signatures":[{"sig":"MEYCIQCn1yBAtn72/hIKh36ZMXkCH3wFquWOYklzhD16vIrhNQIhAKz7Y9eRN52WOgeiT2ExM3ccG8VOaVGfMQEbUqMBsjlk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14820},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"fb9bd3e7e2964d056f6f3beee574053b2dbeb297","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"5.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"9.9.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.1","grunt-cli":"^1.2.0","babel-core":"^6.26.0","grunt-babel":"^7.0.0","babel-minify":"^0.3.0","grunt-eslint":"^20.1.0","babel-preset-env":"^1.6.1","grunt-contrib-watch":"^1.0.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^3.3.0","grunt-contrib-nodeunit":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_3.6.1_1521890844375_0.0636560312620329","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"filesize","version":"3.2.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.2.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"866c24f2ea8cc3f298ece56e4044c8d226e2a249","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.2.0.tgz","integrity":"sha512-DnBDsEpfsFUj2qNX8I6hUCgj659FpkzHt8an50c2lrT0kVP0jROT3YqKxMAhGMJGHBKfzSxyjz9WlgJJNuBrRA==","signatures":[{"sig":"MEQCIEJlK29PHhbZ+7AZLNy21wKJNfBaQswYjV8+YKyWrMD7AiB0Iv2S3SRuIBBQcMb7DIvLPEgJiDe6X28CjdVCRHomNA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"866c24f2ea8cc3f298ece56e4044c8d226e2a249","engines":{"node":">= 0.4.0"},"gitHead":"914d458a2721e52c800e764af6e89b0d73a55f7e","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"3.3.12","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"grunt":"^0.4.5","grunt-cli":"^0.1.13","grunt-sed":"^0.1.1","grunt-babel":"^6.0.0","babel-eslint":"^4.1.4","grunt-eslint":"^17.3.1","babel-preset-es2015":"^6.1.2","grunt-contrib-watch":"^0.2.0","grunt-contrib-concat":"^0.1.3","grunt-contrib-uglify":"^0.9.1","grunt-contrib-nodeunit":"^0.4.1"}},"3.2.1":{"name":"filesize","version":"3.2.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.2.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"a06f1c5497ed6358057c415e53403f764c1fb5e6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.2.1.tgz","integrity":"sha512-FyJq/GMB7/CzkPexW1sES+q9KfmnD76SY8+IPIPQGA5S8l0uytggA2wPk8PW1zwIKst+UCFL2vooet2wK04CMA==","signatures":[{"sig":"MEYCIQCsD5x6j/nILe13hMLxqN0gSDeLQzCPP5aC8SWSYny8rAIhAJPiaAvA/S2Q/+sJkWP5RvUahF1abTb9d2EPBMsAcrJz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize","_shasum":"a06f1c5497ed6358057c415e53403f764c1fb5e6","engines":{"node":">= 0.4.0"},"gitHead":"cc2ad7ae9684b91aa27b6067babeaf9642c658fe","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"3.5.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"grunt":"^0.4.5","grunt-cli":"^0.1.13","grunt-sed":"^0.1.1","grunt-babel":"^6.0.0","babel-eslint":"^4.1.4","grunt-eslint":"^17.3.1","babel-preset-es2015":"^6.1.2","grunt-contrib-watch":"^0.2.0","grunt-contrib-concat":"^0.1.3","grunt-contrib-uglify":"^0.9.1","grunt-contrib-nodeunit":"^0.4.1"}},"2.0.0":{"name":"filesize","version":"2.0.0","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@2.0.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"4b60c9ee7cc8810f750d312b2d395692bb1a7077","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-2.0.0.tgz","integrity":"sha512-+E3IKFzzL9s3uul6/h9BzUdRXTVpgCFKSWFeLFaAaOFGUOEepBIxnpzYwQ42KlQrdVf8dd1hEl+i6pWYy7NIIQ==","signatures":[{"sig":"MEYCIQDDZ7YOO+yhxkOoOH2G/BdxiJiTFOukCnOZLAePyZq1XAIhAM1G3Oaup1nkTw5shzmAf+Wmfkq4ckC8wYJDjSDLif1M","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.3.11","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"11.0.12":{"name":"filesize","version":"11.0.12","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.12","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"ad3bf23a1ae308795bcc1a8cfd34e7e74989e677","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.12.tgz","fileCount":6,"integrity":"sha512-XchpNzovzRV6yjb5EZoMQgX5ryAkfq5mue/iRdjZJFUAYrEfH8zznGyQeSLHA6GUtdFUqkn/NBabUf3Poby8kw==","signatures":[{"sig":"MEYCIQChzTGnFJq1GLCQbAyoPl/gJ4fBouU5sDD5ihPw63/X4QIhAOvxoexnas2Q+LNifmm3fZOvinpvI8C4C98N+DJO33T2","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":50772},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.8.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"88edbb0e027ebe012da541657a0413834ac9445f","scripts":{"dev":"npm run build:watch","fix":"npm run lint:fix","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepack":"npm run build","prepare":"husky","lint:fix":"eslint --fix *.js src/*.js tests/**/*.js","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","test:watch":"npm run mocha -- --watch","build:watch":"rollup --config --watch","analyze:size":"echo 'Bundle size analysis:' && du -h dist/* && echo 'Gzipped sizes:' && gzip -c dist/filesize.min.js | wc -c | awk '{print $1\" bytes (gzipped)\"}' && gzip -c dist/filesize.umd.min.js | wc -c | awk '{print $1\" bytes (umd gzipped)\"}'","benchmark:gc":"node --expose-gc benchmarks/index.js","build:analyze":"npm run rollup && npm run analyze:size","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"^9.36.0","rollup":"^4.52.0","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.12_1758461339751_0.3988594662795557","host":"s3://npm-registry-packages-npm-production"}},"2.0.1":{"name":"filesize","version":"2.0.1","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@2.0.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"d9fa410e7becef098f5f3191b73b766cb91cf412","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-2.0.1.tgz","integrity":"sha512-REuKUIvn61F1NNtUlqQd2dPFIPrYPKQTO2SxGU5/eEb4aX+sg4XvJ4U3oh8GfX72gbyudpQwq17RFpetaCmZuw==","signatures":[{"sig":"MEQCIF1r0sK8laprtng/3nFVjjq0tdmL1IhTRw4hZXHe4m02AiAsOql9Kw81117ICJsjqL/AGGGtV0tO11I7gKTEA4T0Sg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.4.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"11.0.11":{"name":"filesize","version":"11.0.11","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.11","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"579fbb3cd10cf50f46bf53b43d95d33b95b592b7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.11.tgz","fileCount":6,"integrity":"sha512-/4zJ91bSspy7xq+p2GBFRGFkU4qicHYAwUrtWNwk5f+nKWWAYJvLY8yeOgsGvcPTB1K6byt/u3x/PeaRhKPW+A==","signatures":[{"sig":"MEUCIDZ6cg2ryrL7gfnAvCfkB0OHFvwUHLQGnb3g6rKR+FDWAiEAm+lyug6p1zNmN+13GzvBmaEuLkNUWgNCEQNZ52ssruw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":50751},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.8.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"df0978af725626117c6f7bd86c53daec17a99540","scripts":{"dev":"npm run build:watch","fix":"npm run lint:fix","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepack":"npm run build","prepare":"husky","lint:fix":"eslint --fix *.js src/*.js tests/**/*.js","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","test:watch":"npm run mocha -- --watch","build:watch":"rollup --config --watch","analyze:size":"echo 'Bundle size analysis:' && du -h dist/* && echo 'Gzipped sizes:' && gzip -c dist/filesize.min.js | wc -c | awk '{print $1\" bytes (gzipped)\"}' && gzip -c dist/filesize.umd.min.js | wc -c | awk '{print $1\" bytes (umd gzipped)\"}'","benchmark:gc":"node --expose-gc benchmarks/index.js","build:analyze":"npm run rollup && npm run analyze:size","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"^9.36.0","rollup":"^4.52.0","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.11_1758461002717_0.4158209642563824","host":"s3://npm-registry-packages-npm-production"}},"11.0.14":{"name":"filesize","version":"11.0.14","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.14","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"0c5672cb785e5eaf8cbceb795b93681db1c8fde5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.14.tgz","fileCount":6,"integrity":"sha512-2+pBV36IghE/lC78KmHqq4GGzSwqxisNb6YH17W6owdAFoXChND4WZ/51CUYXKyaEiJOhNKKsZSwZ8HbejrKTA==","signatures":[{"sig":"MEUCIQDKqhKQk67m88S3NvcURTbgX4/AQTKMOwVp9tl9/IJ4swIgDs7zZbyMLKq186mt8NWrmOEwX49bU1FIM3xHRE8se1E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":43975},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.8.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"0a79afd4d19f6594a15accda06e8d845683b2095","scripts":{"dev":"npm run build:watch","fix":"npx oxlint --fix *.js benchmarks src tests && npx oxfmt *.js benchmarks src tests/unit --write","lint":"npx oxlint *.js benchmarks src tests && npx oxfmt *.js benchmarks src tests/unit --check","test":"npm run lint && node --test --experimental-test-coverage tests/**/*.js","build":"npm run rollup","rollup":"rollup --config","prepack":"npm run build","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","test:watch":"node --test --watch tests/**/*.js","build:watch":"rollup --config --watch","analyze:size":"echo 'Bundle size analysis:' && du -h dist/* && echo 'Gzipped sizes:' && gzip -c dist/filesize.min.js | wc -c | awk '{print $1\" bytes (gzipped)\"}' && gzip -c dist/filesize.umd.min.js | wc -c | awk '{print $1\" bytes (umd gzipped)\"}'","benchmark:gc":"node --expose-gc benchmarks/index.js","build:analyze":"npm run rollup && npm run analyze:size","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.11.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"25.8.1","_hasShrinkwrap":false,"devDependencies":{"husky":"^9.1.7","oxfmt":"^0.42.0","oxlint":"^1.57.0","rollup":"^4.52.0","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.14_1774443906098_0.4202427143201326","host":"s3://npm-registry-packages-npm-production"}},"11.0.13":{"name":"filesize","version":"11.0.13","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.13","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"8e61c5c4e8d7463c71d573c4f8051fb1ba4ff883","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.13.tgz","fileCount":6,"integrity":"sha512-mYJ/qXKvREuO0uH8LTQJ6v7GsUvVOguqxg2VTwQUkyTPXXRRWPdjuUPVqdBrJQhvci48OHlNGRnux+Slr2Rnvw==","signatures":[{"sig":"MEUCIQCT0ClPqvEp0suUEKt1T21U88TcFjq5y0mvMl5bwfritAIgUiJ1szhP60Z1DmMbfyRPefj2l4DoOYQz3KTTxgPj678=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":50766},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.8.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"c4ef98d8754985106f62243a1772fa6b7ad56e3c","scripts":{"dev":"npm run build:watch","fix":"npm run lint:fix","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepack":"npm run build","prepare":"husky","lint:fix":"eslint --fix *.js src/*.js tests/**/*.js","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","test:watch":"npm run mocha -- --watch","build:watch":"rollup --config --watch","analyze:size":"echo 'Bundle size analysis:' && du -h dist/* && echo 'Gzipped sizes:' && gzip -c dist/filesize.min.js | wc -c | awk '{print $1\" bytes (gzipped)\"}' && gzip -c dist/filesize.umd.min.js | wc -c | awk '{print $1\" bytes (umd gzipped)\"}'","benchmark:gc":"node --expose-gc benchmarks/index.js","build:analyze":"npm run rollup && npm run analyze:size","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.2","eslint":"^9.36.0","rollup":"^4.52.0","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.13_1758482810034_0.4562832991893577","host":"s3://npm-registry-packages-npm-production"}},"11.0.10":{"name":"filesize","version":"11.0.10","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.10","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"271298a6f57c3e4d1f36d7cf9784a0411fbf21fb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.10.tgz","fileCount":7,"integrity":"sha512-uasnz3C/UdPRVlmtkDz4SfaIm7IOT+UYpH8xbmn6EaXRBQ22hGoc64UtflHOqV+BlVDsTcz2pI94P/Zzzm5Rpw==","signatures":[{"sig":"MEUCIQDc+seZlqMNBZ4DSDO3ra9umN5RrvOUE/iOOIu90XqknQIgVpwMzVkvbJ9ARnsmvN+UG/nRqvv3xBhLfnfy+1j7Mws=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":43753},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.4.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"cc9e109fda32f5949c4315b752c7d6baa5393482","scripts":{"fix":"eslint --fix *.js src/*.js tests/**/*.js","lint":"eslint *.js src/*.js tests/**/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"c8 mocha tests/**/*.js","rollup":"rollup --config","prepare":"husky","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","benchmark:gc":"node --expose-gc benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.6.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"24.8.0","_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","husky":"^9.1.7","mocha":"^11.7.1","eslint":"^9.30.1","rollup":"^4.44.2","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.10_1758330179238_0.05609953397039158","host":"s3://npm-registry-packages-npm-production"}},"2.0.4":{"name":"filesize","version":"2.0.4","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@2.0.4","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"7805941c60fcdfe63f46d7ea358c59ade11c1325","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-2.0.4.tgz","integrity":"sha512-XyVEXpwElavSK0SKn51E3960lTRfglsQA9goJN4QR+oyqStts1Wygs1FW3TFQrxJoGm4mcq3hTxDMN3Vs1cYwg==","signatures":[{"sig":"MEUCIQDUkHBJ5joyxd+6TZ2AoWi8duAJheVRtpdK0Caz/b3WxwIgM+sGTZTrdg98Y5Sh8kaSLWdiHuhwqdZ9CUaqmHxlcB0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"7805941c60fcdfe63f46d7ea358c59ade11c1325","engines":{"node":">= 0.4.0"},"gitHead":"d3df0b047ae96a931b192b9decfaa4895190235b","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.4.23","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"2.0.2":{"name":"filesize","version":"2.0.2","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@2.0.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"9747a4c5122efb035e1e8f7e31854b9096832616","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-2.0.2.tgz","integrity":"sha512-KoHeyWLdzRB6GDKarRiS9aw1YSbqjLbjrgsz593Gfbe7ZAtPf5cFMs41X8mnkfKX1CgxAyeBNxakDSNsZHB8Wg==","signatures":[{"sig":"MEUCIBMe4VzeIAKI1K+CdkxfX68dmuMnwDnEirMcpNlR1PGfAiEAgMKnYk4ZhqNupRHBuOJt9OJM2ziYhwCT01rYkeRvtNk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.4.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"2.0.3":{"name":"filesize","version":"2.0.3","keywords":["file","filesize","size","readable","file system"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@2.0.3","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"8cdb248469d2f0481c3aa433e7d8bcab93626941","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-2.0.3.tgz","integrity":"sha512-xlIEYPO6NlnL2cSV+HXNlhI1PKVKArtlOWIL3EMVdeBksJy1ynhkFzfE8Mkzx06/tqu729diLRhhnLFSDyr9Ww==","signatures":[{"sig":"MEYCIQDiouZWFq1KVT5tUUKgIpCtpDn6TASL12Xp8yDxTz+GpQIhAMHEg4rC5zN5jsFwVJzmMyKM9hwuDJ+Mp0TgudwOuB2b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","engines":{"node":">= 0.4.0"},"scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"licenses":[{"url":"https://raw.github.com/avoidwork/filesize.js/master/LICENSE","type":"BSD-3"}],"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.4.3","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"devDependencies":{"grunt":"~0.4.1","grunt-cli":"~0.1.6","grunt-sed":"~0.1","grunt-exec":"~0.4","grunt-contrib-watch":"~0.2","grunt-contrib-concat":"~0.1.3","grunt-contrib-jshint":"~0.1","grunt-contrib-nodeunit":"~0.1.2"}},"10.0.4":{"name":"filesize","version":"10.0.4","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.4","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f70bdbed35ff87ead39c620dc22fd622116ddb83","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.4.tgz","fileCount":12,"integrity":"sha512-Hbt/fspza+ByJFx8mVBN9IWTy7dl0UzuB9nzLkT2FYK+zeA9wbHXT8oj13ukiztsEtRTkVXjdGGbSW25otphmw==","signatures":[{"sig":"MEYCIQDNscb42oKH1XoywkaV536QtOoEiUucO8cPci2ARiTC+gIhAONqrOqqCJv7Ir87a4M+Cj0/StwJvhzz5KyggqwWe0BM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNfzeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpXBQ/+OuxDu9zMa2XFQ8S481eiY1K2nZsCfccrc2QQPtfp7JtPAoeq\r\ngITH079WhVVU3KjP09yUzwmXw5BSHRNbPWMv6badqbDxr/koOxO5nkgY33KA\r\nmDvqMdnxj0V26iTut1Hg0f7ijyvwouFAcG/APRnohnEAKIeYcdZ064NOZmNI\r\nrm1vCDAxL1vf0phfVUD+k5pqrGat+O7vpRkaey9s+TfC0fv2vbJaka5QnQBy\r\n0t0EqUZIM+64Pga69GLlsMM/jSUDzJWsJgCWq/P4V51aMVTUNSZf4azpwyzW\r\no5QrYUSEV/GUh+Pc6UQMJ+ps2bPp/pCtKVnKyKQe5us1ldSyXSzZ7nRbXyc9\r\nBf6dzWo4F6BvyEm1QENsdPvZIPBtgg1vnrO6IZeMKraH0nDlQStEUwWQbxLG\r\nIG5eNI3/H5iuViN7gnpZ/IMv6a055zGLNwXL/kK5aIwSFXjE/8bFb79x42eT\r\nFST8udwi2E7Jomwazip+dGgPNSHNJi+xedP9+oJRB6gNpHGq/cxDdZpTECX0\r\nyAZ3/v/AFPsQcZmft49jM9CLYYQXqCihIZ+ZaRsOHRK6pXzspn5xtHbI1gE8\r\ngh+/ZyundrPITNPJzKj5Zmc/T5tQqOO8TRaYuBcReLSMuJ0dLq4id7ZojEVQ\r\ndyAoeYmyjK2IZhpJd0xD/w2NbfBie1Yqhi4=\r\n=+c8E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 14.0.0"},"gitHead":"71a633611e5ab1c418cdc2210515f39754057a3b","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"mkdir -p dist && rm -rf dist/* && npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.18.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","eslint":"^8.24.0","rollup":"^2.79.1","typescript":"^4.8.4","auto-changelog":"^2.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.4_1664482525859_0.3590214124462592","host":"s3://npm-registry-packages"}},"10.0.3":{"name":"filesize","version":"10.0.3","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.3","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"6669cf85ace042df33685dfc13decd068c5f9873","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.3.tgz","fileCount":12,"integrity":"sha512-IhHaxwBQQG64fM7mXLUR9pekBp1cpqk5KOUgt3ixwG5fylVfnPrvlFwfTv/IX/AOh5teY5Zobcgjwy0lO3Sz/Q==","signatures":[{"sig":"MEUCIQDvUFYNsILEm8ph9soycP1ybvchh3q5FHIRDIRPbiSxggIgLOgbGWf4N5Dk2/+MTBRfAkQjvv05GD6pCjpHrVDorPI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48503,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNeljACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpXA//T69iNvy344yI3p3Vo4aetC3RnIjyWFoT9OslimoR7GhJFuoL\r\npCEDrw/MdYKBc4hM+/ELqXrfGLd8Q7ZwrRVbR4HQU+KBmO7c1oHEmAX/Dp8B\r\n3pliZqG5mI3RyoxHSXuv2I89NOt4oNARfzZiUUzDx8o9AKP3kNa7pq60Wk0r\r\n63yeYsOqi2A3HcKu5ABlCXiZYBxW8T9DBgbbJr1EFimIExkFB5tezw2E9Qme\r\nOptWPF69VAz2PhiNMMXqBwznW1inTw+7nGMuMKEictTbBy0KLjnLMXeviXmP\r\n3C6BF8RN9UePxqFXx1IdoqGdW+K/NPwvejktHyzHj2eNdumDX1e6lPQ8eC50\r\nrIaProXPNCmuhmuUg3nFNGmfeN4sUT2XvNoKI6SmYWizcJMEeLdgnA7cbEkR\r\n7LuXjS0oqTQX2PY5a95iNb1ywR8qHogeRJvCVcseRcZPnA+bVVnbF5qFNSz/\r\nJ/h80Pp1OXHEDXwXpNmvqqRUN2xLyzJyVtZpvTepjM1yOf24GSay8JyVY2PU\r\nRI6jz6GRttfmr51vwzwVh3ThUTzglBMrkEaNrJZJFozlgEddjv50tkpCFt6S\r\n3ftN8hGOguAVocrQJl4jyFqdIxOxBPEjBZdh0YR/2WMbq38iAOacDhYeklun\r\n9h1GmXqU89ZAOgasGSqpAdyF8DRD9/+ZbQI=\r\n=mDDg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","browser":"dist/filesize.min.js","engines":{"node":">= 14.0.0"},"gitHead":"d82615587b0eee6513193294af73d4e35d2c197c","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"mkdir -p dist && rm -rf dist/* && npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.18.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","eslint":"^8.24.0","rollup":"^2.79.1","typescript":"^4.8.4","auto-changelog":"^2.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.3_1664477539299_0.9202564408325014","host":"s3://npm-registry-packages"}},"10.0.2":{"name":"filesize","version":"10.0.2","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.2","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"d14c79d85d3a93d81522eb00c416f7a2d8f156d1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.2.tgz","fileCount":12,"integrity":"sha512-SOUAfVx6Myimq+YqkxbKpiRI4zB5v6wI7EKBrGxFtDcvalEffCyws+t7OeCUvMElkRNTK03XZ/3zU2AU8QnJkQ==","signatures":[{"sig":"MEUCIQDHfmYNmoRtak3u75InOM7mRflM0gHGu3KfvQoP11PJ+QIgameLReq0MbfY2C7Mj32Af0nWWVDCz9eAz5ujsc7toHc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48671,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNQHQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq3fhAAmT5gJWvJmf0yH8kmWIxjayrlgsRp9LPHQa67OiqI2VnKAQco\r\nFaY7GmpfallphsyJNK3h0oSPOOAIjTOAlWy3DgSeGpaQL9HAF8zs7rHltTj4\r\npDNM75iT98D8NQ2OqVlgATxHTVS21AesB+S52DDhKj2+S64f/6lRHAhyAwcg\r\nQQJjVEWrzOnmOHe97/+dw+bOAiObWSXYJe4j2q9iJywGEX3PeRMGUGEyF3ie\r\n4RRasPAzUrFlSFNeRDgLuBCBHeaJE++xfHQ6XnNsHTTPB2hUsg0LhDvT5uWV\r\nhZ+zg8P1Dkm88Zphz3VOeBEtBq5dhQ9hi2tcRVSWWTTV68PIIoPmoWvmJCQl\r\nvytC8qWrSouM/wZolcKHef4TTmkWxdSUTtqUE+N1Tkh00D+N4sw2Ms0c4oHU\r\njX4Fli3L0f4TFGEp3JQSL2vnCo/cGz1gBK+8VLPE3b+1jaND51tnEzx5hvlu\r\nC6hLxF2WfL3gWpQ7gExJln96h6b+YTLr5he3r+53gipJs4vpk8ztRllklDA1\r\nSFl8v3E7u3n+01GEjQ7JBXQ7HqHwSmy62JcBBupHtSAjafVRimwroERDjPJS\r\nZwJFh3Kw494uzeUxrGOiGwZPCdbXToVsp9R0lyCmLo0IhHkv64l+QzWC8hRy\r\nYd/RyDydKqezAWE8BKz63Qx1TWmwcVvIw+M=\r\n=8Qs5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","browser":"dist/filesize.min.js","engines":{"node":">= 14.0.0"},"gitHead":"24501d07a0ebf179ab87f70523a8f3c35f6fefa1","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"mkdir -p dist && rm -rf dist/* && npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.18.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","eslint":"^8.24.0","rollup":"^2.79.1","typescript":"^4.8.4","auto-changelog":"^2.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.2_1664418255940_0.05606624508470559","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"filesize","version":"1.6.0","author":{"url":"http://avoidwork.com/","name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.6.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","dist":{"shasum":"6faeda1ea1eef97385053a5d112d540408412eaf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.6.0.tgz","integrity":"sha512-fmP9u1HOVvxo5VQ5CXjtL5DFoNtjW6mK7D2TdAv5/pJCWG7v/aa+nqFpdUQjJdPuv0+Qz944q5kpHfF+DgEAFA==","signatures":[{"sig":"MEQCIBxkKhFa8PfqDAZRf5L44jOHjDHH8rI50Sk3gyucArf2AiBA0kA8nhJ13k5FMWlQVoZc0VXEqLjdduYCrFWTrkORQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"production/filesize.js","engines":{"node":"~0.6.11"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.2","description":"JavaScript library to generate a human readable String describing the filesize","directories":{},"_nodeVersion":"v0.6.11","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"10.0.1":{"name":"filesize","version":"10.0.1","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.1","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"59fc3506350158a0e4b8c62751005f0bb8bf66ec","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.1.tgz","fileCount":12,"integrity":"sha512-l4X1C7J6luCzeTAarDHVfQYhQVvSm92671hqurqhwYAgjUWO5fZpczXCYDE8M7UQ6XgnyunCUGgyqBGibNJ8kw==","signatures":[{"sig":"MEYCIQCD9MAfObYUJnI10+FuXr2jiZIPcHpopPvQc11eELI2PgIhAMT0RbnKukkZCC9h2Ug1MGjHfw868D7GDWfmvLRNkAiE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNMNSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpqsQ/8CwNgITQBAu+aXl6DMhM3mBtH74Ms66eEp/ddug93cb8ii5tS\r\nN9pYAtgKcQNyYq9d6NhEm3iDqiWe6/DXaXIOP/MztxMYRAjmYKdDkhNFSij8\r\ncRUKGNw8BzqjbmgMK9x1iIiF/DosVG2sDBrzGJkLT3NCu1Y7EWjKetG89uPE\r\n8WPjm5y4u5iMa5RBL8jO7S1jpPjKLUqrJueLos/IAYw5A5pWrPx+pCyoRPac\r\nMnAZndG592wZii5LVzWKigdHM/2zoVEEgD+sFzsq0s2Sn6VuVQ/2XlKbn1sY\r\nBLxzCHAZmSrFg/9iue8vqaoC+88ehxA7XNl55QjrNoPWFsivzkSH1tfvY+84\r\np0f1jE2VcmWnbRbbAJpa+jtFVwZvzsE0rMr20fSQc8Afq/iEFy6Zld8c2H3z\r\nCQAooQhTD+7Nv6AMs7I4QflWVfUK5t+BRotrCoMUFmnDO+mdw2i8fA0ZIxAJ\r\nT/fT0LTqKovuxBZdquLbLWpL6Ndw3PneP6y7R1loFYID5njqevXpQIeAHcYf\r\nemOaIDYn/MExK1l+jBdwg8V5ZrHKNu3riY1yyyO76qo0tP6QyPu40DocO2YA\r\nXjVzKWzCbAXb0aXRN009/arQ5salnpH3+x37YQFPRKsKcLSg+b3fcIZwg/xT\r\nXy+lmEZQe+TccJ8WtcuKGiyK/YeDxqzBObc=\r\n=o52H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","browser":"dist/filesize.min.js","engines":{"node":">= 14.0.0"},"gitHead":"9d81ad1120094b22e4682787c3c33e6ce43c7c3c","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"mkdir -p dist && rm -rf dist/* && npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.18.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","eslint":"^8.24.0","rollup":"^2.79.1","typescript":"^4.8.4","auto-changelog":"^2.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.1_1664402258704_0.2621341581533163","host":"s3://npm-registry-packages"}},"1.6.1":{"name":"filesize","version":"1.6.1","author":{"url":"http://avoidwork.com/","name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.6.1","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","dist":{"shasum":"8a3dfaa56034fc9bf301d0edacc58446238d6f42","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.6.1.tgz","integrity":"sha512-g7Y6kZuZr7Cgvy8m+HWV6fFovd+0MuKIWpCrtqzQo/0Hc9OGn1a7j/nisb7YybHf7XMgskWNiYzKT/SLSdBFqg==","signatures":[{"sig":"MEQCIB95G+Xu/sb9/RNvPLFsGkdFaLaUjhGDwdwh7cpupoQFAiAZT4FIg8Qjs9km2EwQBVVz5x43SZaKIGI8v93vmyfHfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"production/filesize.js","engines":{"node":"~0.6.11"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.2","description":"JavaScript library to generate a human readable String describing the filesize","directories":{},"_nodeVersion":"v0.6.11","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"10.0.0":{"name":"filesize","version":"10.0.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.0","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"c11020334e851818f7ba6dbfc0c8e9833d738229","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.0.tgz","fileCount":12,"integrity":"sha512-gGxOkPq8aq/xSj5El1qDPgPQXeTwdB7GotQn7uGKSe/dlkEYCaehjkeQn5bhajMU6wKAMrxFrSRSCwBOtOgD2g==","signatures":[{"sig":"MEUCIEpp9rXL8gCZ3LQce2nzXhBX7JVrFywl+x3OFXM5RHb8AiEAv9Ad0C2ul6Ek/50ukzkaqIqSQh3N0xJHD3gV6vH1kQA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNDG9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmosUw//SIhQle8RQKDMqztykrvW+iNLaq0iAJaKd4CNkreFZ31DBdsp\r\nVX5nlrcPwDw5SCOFfA94UmRmUjEpbSJ8HnntmQFL4znTYUWY1rsHPSgLMx3V\r\noSyk1FhfOtUNxZ1K3cYU+HbIp55l92S25Q9Vyr6K2aQQ84feeInkAYGbLx7S\r\npzf+7H35ETewFT1A5gn/7ukNtdNOtYXJHRPM/NwfQxZ+5M+U96don6sd5jYr\r\niFNmHY3KStljC1cdVY+eumYXi0Ogdve2FUbr6E6atGJE43CuQLu0YytaI254\r\nELOut2mMxmdE/E/ZBLGjXVQ08kto/UhtTLqQLTr7OOl/t6PbXTamiJiu05pC\r\n5lylROPQ2GtXjunDSb0CwgB6TL1saq6oAHD8TAPt2BwzeSoeX0WLEjL7U653\r\nJqkZV3CBGQk4mSxJVbU5jmuSN+AGuNxM4mbygG/tsImu53txwxsa/k03ufby\r\n3e4hXnqXr3LlibHvwWmdkiBJoSsitj1u/kN+Qa6gN4iu2bNNAYnnCK10ECvi\r\nP4MqoH0GuOKZYqGNmch4P0BdJ2HiJprtdqjyiRYk9FlkL4lVFrbCJhb0ce8L\r\n4CzXfJ139y2j1IsAcPHgWRrjCYsb3ciPU7fWg7mfJy7cgaqrNWdXgvW0T7Hu\r\nPBSyl4ncOtWrjb6vQnQ7Mrx36vLfENbpcuk=\r\n=TTS5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","browser":"dist/filesize.min.js","engines":{"node":">= 16.0.0"},"gitHead":"ae798bfb697670b5aba7e4ddb1717d3ccd490f2f","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"mkdir -p dist && rm -rf dist/* && npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.18.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","eslint":"^8.24.0","rollup":"^2.79.1","typescript":"^4.8.4","auto-changelog":"^2.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.0_1664364988894_0.5608636845595343","host":"s3://npm-registry-packages"}},"1.6.2":{"name":"filesize","version":"1.6.2","author":{"url":"http://avoidwork.com/","name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.6.2","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","dist":{"shasum":"6d3e12b29ac5b2c96105d8f59117997eac2e062b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.6.2.tgz","integrity":"sha512-hi9pjPEGuRTVpOxuJep2KzmIq/sfp2PHmo3K8dkt9vVl/0M6rMKKb39yBcRIVDZQkgC4hQKgQZY1ENtk9FQ3FA==","signatures":[{"sig":"MEUCIHKWKwGseLullQDwAAiLAKLjyh//qrM8j0PPxzaf7S2vAiEAtu7g8xy20JMcxKY7sommaclqJXBeJErPFJfL6V81DZk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"production/filesize.js","engines":{"node":"~0.6.11"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.2","description":"JavaScript library to generate a human readable String describing the filesize","directories":{},"_nodeVersion":"v0.6.11","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"6.1.0":{"name":"filesize","version":"6.1.0","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@6.1.0","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"e81bdaa780e2451d714d71c0d7a4f3238d37ad00","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-6.1.0.tgz","fileCount":11,"integrity":"sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==","signatures":[{"sig":"MEQCIG730j0KL2CwoTsz2cczMNvvEuzRqoRnDhKEmlzjwz3HAiAxriFEKHGI0ZXBzDGPvoFvWSNJ0K65uv7E2UYDd6L7yw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":70571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUJnLCRA9TVsSAnZWagAAO44P/1LSIt6oyhJryG66itfi\nBKz0ocAgA57uZdewhX5O60y08wPZsQtIMTFcbLBBgMLBMu8Ad1cUfWurCbht\n8B5AR2qJE9MRrQaleReYSwsATqjds/hJDpEF52IrxwRhpzhdMjNq8WXkDOQU\nGaIXkRX6/RnV0jNuz96a8G4FI2QRIEctGd3fnLye0LtKsVrDyo79kRSx+guX\nCSHkUdbpMbtrI49VrkUkdoDK8iZ0Cx2Us8ZmiPbMu3mKBiQai2MqSkpe39rV\n1exlssPSw4K9dFlq7fYKcQ2o3dc24WP6KQ/4VrQ9dMEpy4gQVmvg3CyxVMxn\nz7tZ6Bue/Mi3aBFWm3jIf6vPeZClbWAJx3ZyuvIKj/h1HTUtkPR6WPQjE+D/\nExAk9Brt+focFmm9fgpmg9JMdWSQ0cBj7HW8hhiTx03nqUL4Bf3GtKqjLHvb\nHPGMgwk7ZZgvVMdCPlCNQi3d4HYBIZMGFKW8gJi1DCfBJpDYg0CnSHK0x76V\ngzq5blhgjpS7REn8lVyDWo3mn6XodXyZ8g0T/kVmU4jEmH9swCdga26VtXZB\nAwQben+o2PUUvIpt78hsG1NndwDvVyKiuBktaeFFliAuLikxBT9xE3s+iGoA\nu517oytpZb+3p3dRbT18zCuUI8sw5FYtEUhjGkT6y2PT7rUVScqZBRXNSCea\nwvSB\r\n=9gmR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"0cd9a814caa78f115f07e0c5d0269163a73b723e","scripts":{"test":"grunt test","changelog":"auto-changelog -p"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"6.13.7","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"13.9.0","_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.4","grunt-cli":"^1.3.2","babel-core":"^6.26.3","grunt-babel":"^8.0.0","babel-minify":"^0.5.1","grunt-eslint":"^22.0.0","auto-changelog":"^1.16.2","babel-preset-env":"^1.7.0","grunt-contrib-watch":"^1.1.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^4.0.1","grunt-contrib-nodeunit":"^2.1.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_6.1.0_1582340554544_0.3947765325672248","host":"s3://npm-registry-packages"}},"1.6.3":{"name":"filesize","version":"1.6.3","author":{"url":"http://avoidwork.com/","name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.6.3","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","dist":{"shasum":"9cbbf7f58e0918f1d92440f957c3ac9247f1b47d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.6.3.tgz","integrity":"sha512-QZQcTvwVna//2lvldyc2r2DaSV+/WFaxPE5rvAKkpV6R+DS3fYa/ZAuqlssh6+2bXfzRL0awWyCKwVCJa7e18w==","signatures":[{"sig":"MEYCIQDxfk74GOdRzrCDTSVPdKNqCPHxpfBEt5k8csH9TbUdEwIhAOqPweR6XUmXBcYY/qs0JN3Y3mL4siAvhTf8qxaOqVFB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"production/filesize.js","engines":{"node":"~0.6.11"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.2","description":"JavaScript library to generate a human readable String describing the filesize","directories":{},"_nodeVersion":"v0.6.11","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"1.6.4":{"name":"filesize","version":"1.6.4","author":{"url":"http://avoidwork.com/","name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"_id":"filesize@1.6.4","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"http://filesizejs.com","dist":{"shasum":"1b34b65be8de5134807fdb2c41513538f715b516","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-1.6.4.tgz","integrity":"sha512-4F8wEO0fECP0dMP62GZcqIgi14TT6gaMBrxeXw3Rp/GOtrtJhLLWjIMj3oZUq52fW9Km0QnVXw5XtuNGIAqTiQ==","signatures":[{"sig":"MEQCIBzJllSi1xXtIBFczrpuRuFGvjYE6HZZKHoUOjhhBfX3AiBBdRnprc+AuMdxIHYKhhhlkX/n+4M+l+U75LekhGiEWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"debug/filesize.js","engines":{"node":"~0.6.11"},"_npmUser":{"name":"avoidwork","email":"jason@attack.io"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"1.1.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"v0.6.11","dependencies":{},"_defaultsLoaded":true,"devDependencies":{},"_engineSupported":true,"optionalDependencies":{}},"9.0.4":{"name":"filesize","version":"9.0.4","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.4","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"63be8881479315de6ec9cd560fe3dfc16bb79a45","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.4.tgz","fileCount":13,"integrity":"sha512-Of44P0Jjd5iM51i2Fnzw+cQT8gR/rW6A6GOiM+jgXWkzeexDdFEHL2ySXg90YFh6XHwouU2jg+yCCxblLlrn6A==","signatures":[{"sig":"MEUCIQDm/IbE3SrxHue2YPTmeepNjPSLye05AnTEkFlv6k+Z1QIgN8PlIJIv4mfc5Lsmeq3Joz468y7QoERTP8FfIzmD96M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56065,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqyirACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtVhAAjJJXHgVXyeVnHQBMCmaITrVbL0ZsvsTAokDnPuh4h/jebMyn\r\nF1F2WoXPzeNlCdEk4zVwCqrqJGqLzUS+GdwmY4sEwibMZLNeojO+f1qFpyoy\r\nm40DsVav5R4t91kSHxuCtJgTrWYEnxf6OCC8eQYzuYLt+HpUNfrwcob9ZsuY\r\ndHbjeVJoTm6U3FXwzncJVy3j1eGTbS3S0OKLwaNA6o1jlAR6cv6vsVCE0DQS\r\ntUxTv1mfAUOdbLLHJtP2whtaMaFJ9oAESVwZLYrwg0tEBkEb269sDHnjFzvZ\r\nbUejRYqkF3LByCBWSH/h9cgidDlArFEfQs4GWQQLxsYYmAiqC9SILgI3DvJh\r\n/ymjyTtbkm+l2EfWgmkZwgaVBrwmsoL6Qows1CT+H2Gx60SAJoDbEbOf68eg\r\npZSLdOH/IHnwHIB3W6qh4El9VcGMjGk5ahAUa9prgIiL2BpxRY0LTke+tZoV\r\nsq9+hMM1oziycE46KahhwjOLd8wY7iRYeiB9ib1v7NQUNCfqD/A5EZwgDY8T\r\nEJyKPfVgIKhiHLEYt5QJlvlmIfCHwsIa9xs58fbMtrEnKb7ypNxoyde+MWmV\r\n74Adw2KsGQ9WWO/KaWp6tLbGHgNg00h6Rzf2Q6MPdoRYM2oojr/qkn5xidHl\r\nfSWVO97l6sd9HO+jIbSBtIE+PyWCvmKkbmY=\r\n=qUjA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"75708854b498532796d20ec1429e414df2ec9917","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.9.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.17.0","rollup":"^2.75.6","nodeunit-x":"^0.15.0","typescript":"^4.7.3","@babel/core":"^7.18.5","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.4_1655384235584_0.30104467780069744","host":"s3://npm-registry-packages"}},"3.5.10":{"name":"filesize","version":"3.5.10","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.10","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.10.tgz","integrity":"sha512-SZYkDRODd8aH21Vjx4c07opLhGDJtcJkcoPeJQO1dR1uBZNykbTmSNGd2W9TORZ/SeZQMR7K6YIFSXXcjBWnNg==","signatures":[{"sig":"MEQCICJdPOMt9bcQa6qK9HCnbC23tW24vxGU0m3lV7keNHuVAiBRpKWcz3PBzgP4XiMnFTEGeyL5nCWZnlx9rV8rXi0WSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","_from":"filesize.js","_shasum":"fc8fa23ddb4ef9e5e0ab6e1e64f679a24a56761f","engines":{"node":">= 0.4.0"},"gitHead":"b93909e5ae236d091f162b4ea77bc2e9805eec3a","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"_resolved":"file:filesize.js","repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"4.2.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"7.9.0","devDependencies":{"grunt":"~1.0.1","babili":"0.0.12","grunt-cli":"~1.2.0","grunt-babel":"~6.0.0","grunt-eslint":"~19.0.0","babel-preset-es2015":"~6.18.0","grunt-contrib-watch":"~1.0.0","grunt-contrib-concat":"~1.0.1","grunt-contrib-uglify":"~3.0.0","grunt-contrib-nodeunit":"~1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.10.tgz_1495208374179_0.14096286986023188","host":"s3://npm-registry-packages"}},"9.0.6":{"name":"filesize","version":"9.0.6","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.6","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"fd4afd199de1fbbee1b599371685fff5e47b1ae5","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.6.tgz","fileCount":13,"integrity":"sha512-qN+jHVx0PlRnM0zSAb+MimZUunMlnt3STwZ5tww7Sot822CkrQfOlhGd9m4uMPMyRAYwRWNu9gbdbP8B4iy4zg==","signatures":[{"sig":"MEYCIQDJpesWnFEOIsklxwtWyARIQ8etuyfh6bTVmXtraOTLgAIhAO1cFoyFg0N/RCrj06snG3ARDyYtdCR8ButCMYXKWlPY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58807,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqzN0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoO3hAAgSF1F7XtCXxAEeSMkFXDLDiyQBwU1ykFPmASxVk5qojc74YN\r\nB2Lr5svSSr9hb6zzQHAMk8q0oEVgV7T1ISkcHi9ykcT82gZ9vr2pMRNdZy8F\r\nAaaRTDZOEUcyXsUoP5KGHHmisInTt6fz08xQjyNHk+3iuUyU/NTGO87lEOOY\r\n33q5/mM3CsacRdaoGj8R5D1CcGzRMfxO64dkTiLgsNhKAf+NYaDk4cngR3nY\r\nnuAkY5u/joTBYlUFtXm9f4SiMlzOZd1pGDLH3w/g0ltvBljuqg+eL77uzUdk\r\nVawcxqqDtkDvCoJQR1j6SzZNoNzQEVzdhpcn1n8jDje5LhrgI2DiCesP+MLW\r\n/n0j7B+v7rv+hvFQgS3b0D8O30vIokCU6JiZFupmObIO6DfR2NSRxNxbCjrt\r\n91Bp7x8JbEOWaH31jXt418c7itFfppwfCQQxmmTEzGKpFX42xHnSN60sMvwp\r\nWuLe/V8xFxGaLaEKvJgOAyxeQbE07AlEVZuMKZGUVwlSvbt6PjA40kV9bDCa\r\n+/+71tT8Z0azMFhDKUG158sA5uRlVEmLTpDPI5TA6iMPWPrZr72j5qbIY7G8\r\neMXSVVrf/bga0grH/BjKccE93X4k9LDs6X71EAr4CGUsGYFkUGyfklvwhZfC\r\nseTOqrhjK3ZYyISj/4NKN0Deju3EC1l3WWo=\r\n=7LRj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"f2e7bde2d97c7f9a9623298ab41b45fb9e4a0d0d","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.9.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.17.0","rollup":"^2.75.6","nodeunit-x":"^0.15.0","typescript":"^4.7.3","@babel/core":"^7.18.5","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.6_1655386996135_0.9590124426740401","host":"s3://npm-registry-packages"}},"10.0.9":{"name":"filesize","version":"10.0.9","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.9","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"7371841907fd6060eb583a38bac8494c2fd75f2a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.9.tgz","fileCount":12,"integrity":"sha512-BzSxJtyq7ZEBjQPEC6u7GNrK58xwaITCvHPaH7e5145eowrMwLfm5LMu/7PeHTTKxP4joIyNmxCbVJVXv7xPGQ==","signatures":[{"sig":"MEYCIQCX3KpgM+yptc0amvh1raWVWRXxlqy69Xko9uvM8W5imgIhANe/ymNiXM2lGnjWEDumw34ZJ5mcrjQ6W0U8pf16cwIx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51911},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"80dcac58df50362ab1a2ae18574ba94d023805c3","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.11.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.9_1691576697442_0.05327265559526895","host":"s3://npm-registry-packages"}},"3.5.11":{"name":"filesize","version":"3.5.11","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@3.5.11","maintainers":[{"name":"avoidwork","email":"jason@attack.io"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"1919326749433bb3cf77368bd158caabcc19e9ee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-3.5.11.tgz","integrity":"sha512-ZH7loueKBoDb7yG9esn1U+fgq7BzlzW6NRi5/rMdxIZ05dj7GFD/Xc5rq2CDt5Yq86CyfSYVyx4242QQNZbx1g==","signatures":[{"sig":"MEUCIQDNczSKZr9Na3/6OUIzk4UEjZkJ41qkPfSH4xiFV7nMCwIgEpQxrL9gm6IncL6er7eIgEdHA2uJqSlYS/Sr0UoBzqU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/filesize","engines":{"node":">= 0.4.0"},"gitHead":"20baeddd23b737ac87932484c0026a1e77c87fc8","scripts":{"test":"grunt test"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"5.4.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"8.7.0","devDependencies":{"grunt":"^1.0.1","grunt-cli":"^1.2.0","babel-core":"^6.26.0","grunt-babel":"^7.0.0","babel-minify":"^0.2.0","grunt-eslint":"^20.1.0","babel-preset-env":"^1.6.1","grunt-contrib-watch":"^1.0.0","grunt-contrib-concat":"^1.0.1","grunt-contrib-uglify":"^3.1.0","grunt-contrib-nodeunit":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize-3.5.11.tgz_1508330476985_0.6987349670380354","host":"s3://npm-registry-packages"}},"9.0.7":{"name":"filesize","version":"9.0.7","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.7","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f4824aa35ee936a1ad599463545a439f4e3b175f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.7.tgz","fileCount":13,"integrity":"sha512-Mw5L1VaqunuV9anYHQz1sS04Y/eKDntIHKWGi5L2p6SI9/476E+RAsOsNHmsqARoJ2nWpTfhZ2NCoe8F4IL7rA==","signatures":[{"sig":"MEYCIQDRBGo0zX1kpUeXLy9ZbWVr/2+E6baZEiMwKxFomajPSwIhAJ8lVg5AjusrdM2WRZPOzQzDqFjPBed0v+FsoV7BNjw2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqzUpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvDw//Qp/mguHBxM1eto806CgOk9eg+5j6wmgsKmN5H8WEpQTtdusA\r\noy8rytu9as1Gcn1jIGTBpjqIg1U6pCGrn1A+OwXH4/AD/TxOeR+37y0oKPN7\r\nle/Aq8IeCtmCz5MqcQcAGNIxvcyUQZ/FjbmUg4M5GQ1TTTPi+dA7QvfggWY8\r\n9BNeli6QRTGloflUFTidezs3ug+jJ1gxvtnNoSVylaH5YtNborwfdRLCK1Gd\r\nV9qcIKAt+GwnmsY7mfMp5n4c6Q6JAhiji4pcla47i+AvztMvIC5Ndn6WOdJe\r\nlj8Ozn/FO5OyiaNsXoqwiBFukqShiXK/jvs90kotRV/meL4i7STMnm19E4h6\r\npiUeSlm8G1DPHHd5QVkLgpZ3tey/I8SCckkWWi074+lNEMDjkLibaJDi0NLW\r\nfMqAwAfgoSw24eWxHQ/LoERLbaO3LslbyceEjw9rfaZg0FT6cYUmBa3Yae2r\r\nVSVCdrpeKnHczCYp4SPCbHQ8ChxWEzoT2FmQnFMuRS98hB4CbI7Pnd20VNmG\r\nar2OyAhGLbgMrAS735AageMn+z4jK1nraNWMzumEAnCCKnRaYX6UV12FQUgS\r\nLoLYwbcG4Ur21XBbG7hAUKgN5cKvsyiKAOL/AMT8D7KnUiSp91CHEQz2jDeN\r\n1h1m+WjoxdPI4g1BVz5s9f1sXazVRyYBzrg=\r\n=mw1q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"ad9a534cf82f90794ad01985c778e0559535bfd6","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.9.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.17.0","rollup":"^2.75.6","nodeunit-x":"^0.15.0","typescript":"^4.7.3","@babel/core":"^7.18.5","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.7_1655387433081_0.8928262187557137","host":"s3://npm-registry-packages"}},"10.0.8":{"name":"filesize","version":"10.0.8","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.8","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"3091e0db2ab836dcd704f7b65d278519ef634457","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.8.tgz","fileCount":12,"integrity":"sha512-/ylBrxZ1GAjgh2CEemKKLwTtmXfWqTtN1jRl6iqLwnMEucUX5cmaCCUPGstQOHVCcK9uYL6o1cPNakLQU2sasQ==","signatures":[{"sig":"MEUCIQCK609zTr3HX97vRD6zPqaiZFVPh0YFCLqsKaUaP2hpHwIgX+Hryg0nfJwX3agbD5fdYeIoVezaJVpF+U+OjirEqVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51242},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"c9fff4f777d65ac85dd14e22fa2f0a62dac166e2","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.11.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.8_1690452942127_0.05704766624860569","host":"s3://npm-registry-packages"}},"11.0.16":{"name":"filesize","description":"Lightweight, zero-dependency JavaScript utility to convert bytes to human-readable strings with localization support","version":"11.0.16","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","source":"src/filesize.js","module":"dist/filesize.js","main":"dist/filesize.cjs","exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"type":"module","sourceType":"module","types":"types/filesize.d.ts","engines":{"node":">= 10.8.0"},"scripts":{"build":"npm run rollup","build:watch":"rollup --config --watch","build:analyze":"npm run rollup && npm run analyze:size","analyze:size":"echo 'Bundle size analysis:' && du -h dist/* && echo 'Gzipped sizes:' && gzip -c dist/filesize.min.js | wc -c | awk '{print $1\" bytes (gzipped)\"}' && gzip -c dist/filesize.umd.min.js | wc -c | awk '{print $1\" bytes (umd gzipped)\"}'","changelog":"auto-changelog -p","coverage":"node --test --experimental-test-coverage --test-coverage-exclude=dist/** --test-coverage-exclude=tests/** --test-reporter=spec tests/**/*.test.js 2>&1 | grep -A 1000 \"start of coverage report\" > coverage.txt","lint":"npx oxlint *.js benchmarks src tests && npx oxfmt *.js benchmarks src tests/unit --check","fix":"npx oxlint --fix *.js benchmarks src tests && npx oxfmt *.js benchmarks src tests/unit --write","test":"npm run lint && node --test --experimental-test-coverage tests/**/*.js","test:watch":"node --test --watch tests/**/*.js","rollup":"rollup --config","prepack":"npm run build","prepare":"husky","dev":"npm run build:watch","benchmark":"node benchmarks/index.js","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:partial":"node benchmarks/partial-benchmark.js","benchmark:gc":"node --expose-gc benchmarks/index.js"},"devDependencies":{"@rollup/plugin-terser":"^1.0.0","auto-changelog":"^2.5.0","husky":"^9.1.7","oxfmt":"^0.45.0","oxlint":"^1.57.0","rollup":"^4.52.0"},"keywords":["file","filesize","size","readable","file system","bytes","diff"],"gitHead":"767bf076daa39c18dde94fd5e23155d7c14a27c0","_id":"filesize@11.0.16","_nodeVersion":"25.8.1","_npmVersion":"11.11.0","dist":{"integrity":"sha512-XMcUu0Zxnh0L8rY5b5vrdKKs0H3l3osTp9vNEBulRmwLqYfuQe5SJCagpA0/sGMJx2KHbD+IWOyd6QsJQuYEkQ==","shasum":"14bc8f46cbcd018a37e9d374e860be8b80c1e016","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.16.tgz","fileCount":6,"unpackedSize":54438,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCRZyldvseFWiUrmbF9JNnZVN4Ht0QvMbyBf+t8eBXJ8gIgPlIYyEocKsMFoHDCHDa8H6I6iJLazjbPpsCKhdrTSCM="}]},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"directories":{},"maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/filesize_11.0.16_1776647240822_0.5857121126795255"},"_hasShrinkwrap":false},"9.0.8":{"name":"filesize","version":"9.0.8","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.8","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"dcbe7a156a4f2f4e22f3c93947daf99d3619f619","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.8.tgz","fileCount":13,"integrity":"sha512-B1Ob0fyW9AfklCylPmLQrdOuaS8QOFt/5p0I/xwc7hQmTDWDhqm/bFfegpPMtcjXy8RJDldRYU4REgZf6rxq1g==","signatures":[{"sig":"MEUCIQCsXBklfGDUiBv0B9AwR0582q+AYmm36G4ifmplyk+VHgIgLKi/m2fdobUS5NsfhJdlIno4y1JJd9nOeCGiGmGBWnM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58172,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiq6ooACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqpmQ//UUotRpzVK3ZT/SNf79XRz643t9Al7HNUZ1Cv/GdCLv+EY5NJ\r\n5i7cgmsXPoH3drx8BM4Nfm434SDDsGYuCXUpZZ2zAJvC+Ty3gKu3UGHmdmru\r\nsSPImX0VDMTjZMifi7EgmYnAs+d4Jjxz0DfyM2QQ5PwR7CYVWZaytgeDRtME\r\nNls6HrSSZuAd159uAKJ7AOTW5S8PR8l6pl+fCj2RrCUxKOVy6OjzzgnQx7gS\r\nSUVET+RgjRGefh742OOXcqrCOSFvso4C0KzviFelxNGb2aKfMvbR76oG+MAY\r\nlA/yfYNMvs7sQU/Ae0l/6bRlXNfv9n+szdQm0QI5aMkVrRU0lsofvPOQkTI+\r\nFnbcNOW4Z1zhcO1vCcnmcqyziv2/+1TssJLxjQCWViWDV9Ubfb4rF3Uq3o+E\r\nEI4dqAy/JVLb7JdwRThFa0/ONS78viMT6amIirXLUxefVyCVYuOOLb+ZnGZk\r\nhWfMDw8tK5HXfHcLt29uG2EKvcXt3DgB94VGVDaEfOsKOzTVUEkusrmS42sO\r\nn8juWl/EPVmS5MOwBajTPGvUewWM1+oW56Kj8447KfBPTa4R5GETD3tihRPC\r\nknvpUuR7Pv8uuYtDtHo2bfzAVLYU0eHFswg/XASJ1trb6+Vwy3f29XugbLiI\r\nJtgmE2rwwEXyY6qaSjqUk1VHtaaF1ZcwkN4=\r\n=5c/v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"c798056ee37646a07e239a9c18d3e45dd863e928","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.12.1","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.4.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.17.0","rollup":"^2.75.6","nodeunit-x":"^0.15.0","typescript":"^4.7.3","@babel/core":"^7.18.5","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.8_1655417384443_0.9081380950874374","host":"s3://npm-registry-packages"}},"10.0.7":{"name":"filesize","version":"10.0.7","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.7","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"2237a816ee60a83fd0c3382ae70800e54eced3ad","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.7.tgz","fileCount":12,"integrity":"sha512-iMRG7Qo9nayLoU3PNCiLizYtsy4W1ClrapeCwEgtiQelOAOuRJiw4QaLI+sSr8xr901dgHv+EYP2bCusGZgoiA==","signatures":[{"sig":"MEUCIGjPWOm/fCy/4BEBXWAs9Y90RZ9YpmBgbaWzklg8nY2VAiEAhfLUY5obdSZVOKvjsZTb/gf5Wld5M9xEFKZlZqFjN1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJDS8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5IRAApAzTJujoqNhi1hohzHZDFxKh1gh6P3W6xMYWFHK3ORlZ1IcJ\r\nbiEf+TDDwK86HgIzal1YUKlZI6iklZEWkjHEPA93tKKlExbUkayehCvq5ScI\r\n1AOGRXh2lcnoL9ZkOcngLq9Mhj99bcj8Gpkl4tqJ9N1HWDfnyyEptopTe0NC\r\nLoP8td9z/8ooJRd4PgcbF0hkY6wf6X9eX93jmyKzAXPehLfBjktju9NEpBtS\r\n1qvkDI3yr6UJdTnVGk6rMSN7v3EnPqe+Ci4xxutbHS/pc376vUZYjYZnMZlT\r\nMkudrPW3fS/d8320AnWcPo9ruvgFWV2q2hr2euD1thBw3ymTJV3u4C4oLq/o\r\nKhWycwoCZieKtigMvSryAUreo+HDp1qs4Gcq17SPJ1WC3rsXRmsMwSylbiE/\r\nfZb7pHFq6p2HVIT0QQJQ+w6LkuIxmlTJzwAr8XGxNC7v4tdqCUiHI2CyLYDH\r\nFdFv6xg7MsQuYe+RP+hwrhsEgS12+WXPpaIUsEv1j4D8W2GKARmlqf3lz2Rt\r\n+HK3bUkMJjpgai/ChxmTiyxuKagNasVeDm0YJLEd3WHc7FKq6XLfl30kWDN+\r\nhikjCWdDDEdLRazxndVWaftma1z3KrkYFOYA7VzJHUZvaTRcgxXq/Bxkb5+a\r\nHCqJe0YDIM/4vilfXFr7sGHmyj+CmXb6tJI=\r\n=m+WS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"a324b71bde07e827f983dd997581ab8cb4fd2390","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"9.6.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"19.8.1","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.2.0","eslint":"^8.37.0","rollup":"^3.20.2","typescript":"^5.0.2","auto-changelog":"^2.4.0","@rollup/plugin-terser":"^0.4.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.7_1680094395973_0.600824173619319","host":"s3://npm-registry-packages"}},"11.0.15":{"name":"filesize","version":"11.0.15","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@11.0.15","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f197b75a869444cb0e00af3a4f9c05e9389ed77e","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-11.0.15.tgz","fileCount":6,"integrity":"sha512-30TpbYxQxCpi4XdVjkwXYQ37CzZltV38+P7MYroQ+4NK/Dmx9mxixFNrolzcmEIBsjT/uowC9T7kiy2+C12r1A==","signatures":[{"sig":"MEUCIQCJQqbvtvMEec/uvs9PVF+/7uKpNSEZanI47hzRhzo6cAIgAPJLtOT9MSue5D0U1eTuLctSxHwtE7h4WQgT9mPlIXU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":44197},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.js","source":"src/filesize.js","engines":{"node":">= 10.8.0"},"exports":{"types":"./types/filesize.d.ts","import":"./dist/filesize.js","require":"./dist/filesize.cjs"},"gitHead":"be4ffbba914ac99c5e9844fb2eaf3635725e591e","scripts":{"dev":"npm run build:watch","fix":"npx oxlint --fix *.js benchmarks src tests && npx oxfmt *.js benchmarks src tests/unit --write","lint":"npx oxlint *.js benchmarks src tests && npx oxfmt *.js benchmarks src tests/unit --check","test":"npm run lint && node --test --experimental-test-coverage tests/**/*.js","build":"npm run rollup","rollup":"rollup --config","prepack":"npm run build","prepare":"husky","coverage":"node --test --experimental-test-coverage --test-coverage-exclude=dist/** --test-coverage-exclude=tests/** --test-reporter=spec tests/**/*.test.js 2>&1 | grep -A 1000 \"start of coverage report\" > coverage.txt","benchmark":"node benchmarks/index.js","changelog":"auto-changelog -p","test:watch":"node --test --watch tests/**/*.js","build:watch":"rollup --config --watch","analyze:size":"echo 'Bundle size analysis:' && du -h dist/* && echo 'Gzipped sizes:' && gzip -c dist/filesize.min.js | wc -c | awk '{print $1\" bytes (gzipped)\"}' && gzip -c dist/filesize.umd.min.js | wc -c | awk '{print $1\" bytes (umd gzipped)\"}'","benchmark:gc":"node --expose-gc benchmarks/index.js","build:analyze":"npm run rollup && npm run analyze:size","benchmark:basic":"node benchmarks/basic-performance.js","benchmark:stress":"node benchmarks/stress-test.js","benchmark:options":"node benchmarks/options-benchmark.js","benchmark:partial":"node benchmarks/partial-benchmark.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"11.11.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"25.8.1","_hasShrinkwrap":false,"devDependencies":{"husky":"^9.1.7","oxfmt":"^0.42.0","oxlint":"^1.57.0","rollup":"^4.52.0","auto-changelog":"^2.5.0","@rollup/plugin-terser":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/filesize_11.0.15_1774734176827_0.6628145108602117","host":"s3://npm-registry-packages-npm-production"}},"9.0.9":{"name":"filesize","version":"9.0.9","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@9.0.9","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"f2e487c85280d3a2fa800d404c23cd454291c5d4","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-9.0.9.tgz","fileCount":13,"integrity":"sha512-1p0ZaDrILQ9fmkDnxITzF9O+EjnsEsr+aNEC45DL+3dxO2g5ypmhf9+b2i1hg264F+glTLQBM4bK/sadk8KVrA==","signatures":[{"sig":"MEUCIQC/lApYpKc1NfRhDxWHPCWfqbUyLLbOiHI6qKHmSHUD3AIgRzCStbg4TsKvjGQR4KOpNuIxEOr/Ye2g8kvOs0V2sbs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirJKBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrUoQ//e+cZlp6JdpriHioNpIFRKfiR7FyGaL3kSVPOBhWdI1wWk+Vq\r\nlxOj0dbXD61Skm5ln73dA5GxQHX9Jr0z8GVaf3IFR++HVqX6zPMaQ4JFFWqM\r\n/6dkmB1k7cy/a8solGU4tww8mKDOI8PkPrqNMy0BZNync+NeMQa2M9XSfE6C\r\nBzrRhHCkxz91/2lbkPDVyBkq6XQouEEj7IEq0NJToOMUUhnwZGtynXWUmKWE\r\nNBrVAvxf7SRYZkq4YkrgW9QJbMazM7yEZATTs/ma4U4VvSOW0hwr5FR/nB83\r\nxkG44u3tZG9PgfEmN3l9yuL101Uj0HjOWD8kVgDbnq56PfqDKgLo4KoiDNHJ\r\ngSmrv7UAzTY5etiJ1QKZoj1wvzj3TBfz/wgRHLLYiSChNf6RXtTeHYa4O6ly\r\nY9NtB8qs0jq/38o1qQKIwY+ypNIaAn2TvCnzEUDQQ8zZO6MKQfE6MtaTZHhb\r\nNuyESHsEDygpacK1bihp4xl7rtpLKNPJ8PF++QJnxBQsdW/nr6TSRH6FvhTB\r\nW/l7D8Zdb+dsx0qf5YMMcDnWeG+shMIuMdpuBy7L4CphYNBpkACZ7HQjN5ky\r\na2ujnpaVLaZQj+vYJAotXiDAX5z/YIOKnN/m4Ke2gp6dUBBtvx9eYc+67Eq4\r\neaRfKwLekUYYkoSUQdDcpGDuKaYrj4bLa2s=\r\n=I48h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/filesize.js","types":"filesize.d.ts","module":"lib/filesize.esm.js","browser":"lib/filesize.min.js","engines":{"node":">= 0.4.0"},"gitHead":"295907cf7b2724e6a5e948557d939fd64bbb6df1","scripts":{"lint":"eslint test/*.js src/*.js","test":"npm run build && npm run lint && npm run test:unit && npm run test:type","build":"rollup -c","watch":"rollup -c -w","changelog":"auto-changelog -p","test:type":"tsc -p test","test:unit":"nodeunit test/filesize_test.js"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"_npmVersion":"8.12.1","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.4.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^8.17.0","rollup":"^2.75.6","nodeunit-x":"^0.15.0","typescript":"^4.7.3","@babel/core":"^7.18.5","auto-changelog":"^2.4.0","@babel/preset-env":"^7.18.2","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_9.0.9_1655476865351_0.8229420312110942","host":"s3://npm-registry-packages"}},"10.0.6":{"name":"filesize","version":"10.0.6","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.6","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"5f4cd2721664cd925db3a7a5a87bbfd6ab5ebb1a","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.6.tgz","fileCount":12,"integrity":"sha512-rzpOZ4C9vMFDqOa6dNpog92CoLYjD79dnjLk2TYDDtImRIyLTOzqojCb05Opd1WuiWjs+fshhCgTd8cl7y5t+g==","signatures":[{"sig":"MEQCIA0deWBYowtO1DKvVcg6T3nYwDm4zWcGFQ/F7NVKEz8PAiBUiw979t7NIVtFHkhq0IzNKf4rDx3HDzHRisuq+b+Yag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51049,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjlySOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEKw//UgvhM/Ftc5wd3sPS3f7Iy8FOltOE4kzhkcJc/Aw6t/8bDOO7\r\naqNucnBx5vIQVRvlj3Zxyw27IWiuhpCxzVEgzByGVwVOqlaOjYbwSFxkoGAO\r\n0ZjeDEcz0nHHDBgVbYE9Ic3+DxEIGhIJ0OqCh0rLCZPNHMhK6Wlx4wb7eGpL\r\nwa24TMQ7u4dD3nNpKf4jkTDF0GaOAC3gH+NsVfZ4CZ3l+ePjADhQYv6/g5k9\r\nWWaiacIFonXTsLXOa0p/h6acr6UCFXEK7NaSNgpDWp2lMTvVYzmpS6rHH/bV\r\ncA09AHv1847qgQFC4Kpd7+veKyUFFAOgb3Wmyu6FcX1bcovHWEIiZFe0cOj9\r\nsJ5KvstqVpTZZ1oXlEZjq0kSL2BXij6G5XbFVSyk83osmMF+jUT0mpR54ztG\r\nCbAOtTSxpxhLoCDF5kZ+YKGVawSysZsTem89iDO0TkDR88GAFK/RXE6io0rC\r\nRpbhh4pBo/fqi6TS68hIjo44MWx43xq3OBRUGzNg/MiusXAplh93GLy5RhXb\r\nfhlSQArnrtbVTVTIdm3IJO67ZsNn4eDoVNLM08Qi8f+Lk+bQlvh4QgshtSDs\r\ntnYbl2k3eYDBovNinWK0F12ia/b1kIKYXsnigVvl+1TA4ASDp00ezVzyratK\r\ne/9tXC+KQbz42ZrvWlUTk/NCZ5fsL9UJ5SM=\r\n=5zHZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 10.4.0"},"gitHead":"d41818f78b0e2023eec98e5f9964aaeefaf91e8a","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"mkdir -p dist && rm -rf dist/* || rm dist/* || echo 'nothing in ./dist' && npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack/* && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.19.2","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"19.0.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","eslint":"^8.24.0","rollup":"^2.79.1","typescript":"^4.8.4","auto-changelog":"^2.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.6_1670849677915_0.2655636336197307","host":"s3://npm-registry-packages"}},"10.0.5":{"name":"filesize","version":"10.0.5","keywords":["file","filesize","size","readable","file system","bytes","diff"],"author":{"name":"Jason Mulligan","email":"jason.mulligan@avoidwork.com"},"license":"BSD-3-Clause","_id":"filesize@10.0.5","maintainers":[{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"}],"homepage":"https://filesizejs.com","bugs":{"url":"https://github.com/avoidwork/filesize.js/issues"},"dist":{"shasum":"d77553eb00a525f4cc7983047d2197cda6fff321","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/filesize/-/filesize-10.0.5.tgz","fileCount":12,"integrity":"sha512-qrzyt8gLh86nsyYiC3ibI5KyIYRCWg2yqIklYrWF4a0qNfekik4OQfn7AoPJG2hRrPMSlH6fET4VEITweZAzjA==","signatures":[{"sig":"MEUCIDsTQ8qskd9y5e3coLVHQcgbeQDGvcR1g99rPc4aGO6LAiEAvJ5Pp2kejaDwlF6AxCHdQGFj2LSNTjrFQEQJlN8cQis=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNf6vACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9bQ/+J/CkuX18a46STojkwKqtP1XlE2fariz0/ppYjYMyNkLdD+4+\r\nYBD6O9sVjHcd9CVoBgifYEdg5mwX4NUeZb5cRC9jiDI1zfd+46orPcUbvcWj\r\ng2ATdJ9+3ifti9i/AHtdc/kaiqEdLAPfhKsbPVDewFB1/D1IhC4iAksZn8lr\r\na1ObzdRTXKoqBzZgCY5RrwudW3xAr/l6/sEwbdbve6YrqtnvYQdd3jWP8J2y\r\n0HuATeW6PwCfj89UF8+S2+qVE3nS54xt/udhWXum/SR+ITK9ACzWVHVs4inA\r\ndpJIWJk4PX1X5acPE9iT41hvzAA7//R3PGmh5pt9t/cmWPAKCViu17+jGFYd\r\nWPKa18+gakAZIXs+TOk+xXtZtyG07qhNX4Zvk/ZwuZm2bvyhy2jAaCzysTdN\r\nsBVhP/VX0Qst3KqG+Pk1KRyb6hjiFsKc4l9uyI9giIPWO5M0QVdrXiZVSHUS\r\ncyhG378m6R9BP20ppFaCkkL+r3b8KnxLBZ2bnc5GKV20Qo3krqGJLOyEvHHW\r\nAc6mpnOAau07JLQxyKTevsHTcfHnS+kLSBl+XU5OkHI+k2TaTwWplVzmtXWg\r\ntBnzDVaP10zklajBjNbbt/UKeEq7Kz+GoJWcKuTTqN4ZkfgTo1piHZo7cTl2\r\nVbFgrfR0ae2RaCZMouF2ZXgBeV47LP2Y+UE=\r\n=mmlQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/filesize.cjs","type":"module","types":"types/filesize.d.ts","module":"dist/filesize.esm.js","engines":{"node":">= 14.0.0"},"gitHead":"d110a35706e9685810ef469bb37e3c45c37b53b0","scripts":{"lint":"eslint *.js src/*.js test/*.js","test":"npm run lint && npm run mocha","build":"mkdir -p dist && rm -rf dist/* && npm run rollup","mocha":"mocha test/*.js","types":"npx -p typescript tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir types","rollup":"rollup --config","coverage":"nyc npm run test","changelog":"auto-changelog -p","test-webpack":"mkdir -p test/webpack && rm -rf test/webpack && git clone git@github.com:rabelais88/typescript-webpack.git test/webpack && echo \"import { filesize } from 'filesize';console.log(filesize(1234));\" >> test/webpack/src/index.ts && cd test/webpack && npm install && mkdir -p node_modules/filesize/dist && cp ../../package.json node_modules/filesize/ && cp ../../dist/* node_modules/filesize/dist/ && npm run build"},"_npmUser":{"name":"avoidwork","email":"jason.mulligan@avoidwork.com"},"repository":{"url":"git://github.com/avoidwork/filesize.js.git","type":"git"},"sourceType":"module","_npmVersion":"8.18.0","description":"JavaScript library to generate a human readable String describing the file size","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^10.0.0","eslint":"^8.24.0","rollup":"^2.79.1","typescript":"^4.8.4","auto-changelog":"^2.4.0","rollup-plugin-terser":"^7.0.2"},"_npmOperationalInternal":{"tmp":"tmp/filesize_10.0.5_1664482990884_0.5654787492738014","host":"s3://npm-registry-packages"}}},"name":"filesize","time":{"4.1.1":"2019-02-13T13:00:35.486Z","4.1.2":"2019-02-15T13:51:47.266Z","8.0.2":"2021-09-12T20:23:38.877Z","8.0.3":"2021-09-14T00:15:37.013Z","8.0.0":"2021-08-18T16:35:16.611Z","8.0.1":"2021-09-12T20:02:07.400Z","3.3.0":"2016-04-23T11:43:49.350Z","6.4.0":"2021-06-30T00:28:35.805Z","10.1.3":"2024-07-08T23:07:21.381Z","10.1.2":"2024-05-11T20:39:57.252Z","10.1.1":"2024-03-21T09:34:26.779Z","10.1.0":"2023-10-03T12:41:15.204Z","1.7.0":"2012-11-02T23:56:23.696Z","6.0.0":"2019-10-31T01:51:37.721Z","1.7.1":"2012-11-03T00:15:54.509Z","6.0.1":"2019-11-08T23:25:17.981Z","1.7.2":"2012-11-03T00:31:50.474Z","1.7.3":"2013-02-02T19:29:56.860Z","10.1.6":"2024-09-04T16:29:10.148Z","10.1.5":"2024-09-03T22:12:51.413Z","10.1.4":"2024-07-09T00:37:17.679Z","11.0.1":"2025-07-14T01:13:39.292Z","11.0.0":"2025-07-11T12:48:19.830Z","11.0.3":"2025-09-19T10:36:07.748Z","11.0.2":"2025-07-16T09:51:55.672Z","1.9.2":"2013-04-11T20:07:24.995Z","4.2.0":"2019-09-11T18:55:03.856Z","11.0.9":"2025-09-20T00:52:44.294Z","1.9.3":"2013-04-14T15:58:45.507Z","4.2.1":"2019-09-25T22:32:55.221Z","11.0.8":"2025-09-20T00:09:51.463Z","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","11.0.5":"2025-09-19T11:16:01.226Z","1.9.7":"2013-07-08T18:32:44.738Z","11.0.4":"2025-09-19T10:57:16.246Z","11.0.7":"2025-09-19T12:36:03.624Z","11.0.6":"2025-09-19T12:23:37.776Z","3.0.0":"2015-01-04T14:03:46.044Z","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.0.1":"2015-01-12T12:29:29.564Z","3.0.2":"2015-01-29T11:39:32.283Z","3.4.0":"2017-01-19T12:54:35.275Z","3.5.8":"2017-04-29T17:38:23.435Z","3.5.9":"2017-04-30T13:46:07.520Z","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","8.0.6":"2021-10-31T23:46:14.430Z","8.0.7":"2022-01-19T13:56:06.181Z","8.0.4":"2021-10-27T12:18:42.123Z","8.0.5":"2021-10-27T12:21:19.949Z","6.3.0":"2021-04-21T11:40:24.096Z","1.8.0":"2013-03-03T19:15:57.252Z","1.10.0":"2013-07-19T10:43:40.921Z","9.0.0":"2022-05-26T12:51:06.020Z","9.0.1":"2022-06-02T00:07:29.718Z","9.0.2":"2022-06-11T12:12:06.672Z","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","10.0.10":"2023-08-10T11:00:51.103Z","10.0.11":"2023-08-10T11:13:35.437Z","10.0.12":"2023-08-12T11:46:38.277Z","3.1.4":"2015-11-13T11:57:49.491Z","3.5.0":"2017-01-24T23:43:58.025Z","modified":"2026-04-27T00:33:25.938Z","3.1.5":"2015-12-22T15:00:15.494Z","3.5.1":"2017-01-24T23:58:13.936Z","3.1.6":"2016-01-19T12:24:58.067Z","3.5.2":"2017-01-25T00:08:49.191Z","3.5.3":"2017-01-25T00:21:05.382Z","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","created":"2012-05-08T18:45:10.479Z","7.0.0":"2021-07-11T12:37:12.692Z","6.2.2":"2021-04-14T00:33:24.506Z","6.2.3":"2021-04-16T02:30:17.083Z","6.2.0":"2021-04-13T11:23:12.384Z","6.2.1":"2021-04-13T12:46:35.082Z","1.9.0":"2013-04-07T12:31:35.528Z","1.9.1":"2013-04-07T20:43:25.548Z","5.0.0":"2019-10-01T01:48:18.193Z","5.0.1":"2019-10-01T03:03:07.449Z","5.0.2":"2019-10-07T14:29:54.042Z","5.0.3":"2019-10-08T23:20:20.742Z","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","4.0.0":"2019-01-12T17:53:17.835Z","1.7.7":"2013-02-05T20:37:26.873Z","1.7.8":"2013-02-05T21:16:00.463Z","6.2.6":"2021-04-19T23:39:52.993Z","1.7.9":"2013-02-05T21:29:04.106Z","6.2.4":"2021-04-16T02:45:41.315Z","6.2.5":"2021-04-16T02:51:05.503Z","9.0.10":"2022-06-27T23:23:45.468Z","9.0.11":"2022-06-27T23:41:56.481Z","3.6.0":"2018-02-03T23:27:48.433Z","3.6.1":"2018-03-24T11:27:24.443Z","3.2.0":"2016-01-22T12:32:19.913Z","3.2.1":"2016-01-30T16:38:12.960Z","2.0.0":"2013-10-12T12:58:57.589Z","11.0.12":"2025-09-21T13:28:59.926Z","2.0.1":"2014-02-25T00:39:04.902Z","11.0.11":"2025-09-21T13:23:22.921Z","11.0.14":"2026-03-25T13:05:06.326Z","11.0.13":"2025-09-21T19:26:50.248Z","11.0.10":"2025-09-20T01:02:59.459Z","2.0.4":"2014-10-02T10:42:00.877Z","2.0.2":"2014-03-01T02:55:15.735Z","2.0.3":"2014-03-01T03:18:37.124Z","10.0.4":"2022-09-29T20:15:26.011Z","10.0.3":"2022-09-29T18:52:19.457Z","10.0.2":"2022-09-29T02:24:16.104Z","1.6.0":"2012-05-08T18:45:10.962Z","10.0.1":"2022-09-28T21:57:38.875Z","1.6.1":"2012-05-08T18:58:40.605Z","10.0.0":"2022-09-28T11:36:29.056Z","1.6.2":"2012-05-08T19:06:50.178Z","6.1.0":"2020-02-22T03:02:34.649Z","1.6.3":"2012-05-08T19:24:05.698Z","1.6.4":"2012-06-06T12:21:26.599Z","9.0.4":"2022-06-16T12:57:15.764Z","3.5.10":"2017-05-19T15:39:34.341Z","9.0.6":"2022-06-16T13:43:16.271Z","10.0.9":"2023-08-09T10:24:57.641Z","3.5.11":"2017-10-18T12:41:17.283Z","9.0.7":"2022-06-16T13:50:33.278Z","10.0.8":"2023-07-27T10:15:42.356Z","11.0.16":"2026-04-20T01:07:20.963Z","9.0.8":"2022-06-16T22:09:44.652Z","10.0.7":"2023-03-29T12:53:16.161Z","11.0.15":"2026-03-28T21:42:56.958Z","9.0.9":"2022-06-17T14:41:05.453Z","10.0.6":"2022-12-12T12:54:38.084Z","10.0.5":"2022-09-29T20:23:11.195Z"},"readmeFilename":"README.md","homepage":"https://filesizejs.com"}