{
  "_args": [
    [
      {
        "raw": "filesize@^3.1.3",
        "scope": null,
        "escapedName": "filesize",
        "name": "filesize",
        "rawSpec": "^3.1.3",
        "spec": ">=3.1.3 <4.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/ember-cli"
    ]
  ],
  "_from": "filesize@>=3.1.3 <4.0.0",
  "_id": "filesize@3.5.11",
  "_inCache": true,
  "_location": "/filesize",
  "_nodeVersion": "8.7.0",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/filesize-3.5.11.tgz_1508330476985_0.6987349670380354"
  },
  "_npmUser": {
    "name": "avoidwork",
    "email": "jason.mulligan@avoidwork.com"
  },
  "_npmVersion": "5.4.2",
  "_phantomChildren": {},
  "_requested": {
    "raw": "filesize@^3.1.3",
    "scope": null,
    "escapedName": "filesize",
    "name": "filesize",
    "rawSpec": "^3.1.3",
    "spec": ">=3.1.3 <4.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/ember-cli"
  ],
  "_resolved": "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz",
  "_shasum": "1919326749433bb3cf77368bd158caabcc19e9ee",
  "_shrinkwrap": null,
  "_spec": "filesize@^3.1.3",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/ember-cli",
  "author": {
    "name": "Jason Mulligan",
    "email": "jason.mulligan@avoidwork.com"
  },
  "bugs": {
    "url": "https://github.com/avoidwork/filesize.js/issues"
  },
  "dependencies": {},
  "description": "JavaScript library to generate a human readable String describing the file size",
  "devDependencies": {
    "babel-core": "^6.26.0",
    "babel-minify": "^0.2.0",
    "babel-preset-env": "^1.6.1",
    "grunt": "^1.0.1",
    "grunt-babel": "^7.0.0",
    "grunt-cli": "^1.2.0",
    "grunt-contrib-concat": "^1.0.1",
    "grunt-contrib-nodeunit": "^1.0.0",
    "grunt-contrib-uglify": "^3.1.0",
    "grunt-contrib-watch": "^1.0.0",
    "grunt-eslint": "^20.1.0"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-ZH7loueKBoDb7yG9esn1U+fgq7BzlzW6NRi5/rMdxIZ05dj7GFD/Xc5rq2CDt5Yq86CyfSYVyx4242QQNZbx1g==",
    "shasum": "1919326749433bb3cf77368bd158caabcc19e9ee",
    "tarball": "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz"
  },
  "engines": {
    "node": ">= 0.4.0"
  },
  "gitHead": "20baeddd23b737ac87932484c0026a1e77c87fc8",
  "homepage": "https://filesizejs.com",
  "keywords": [
    "file",
    "filesize",
    "size",
    "readable",
    "file system",
    "bytes",
    "diff"
  ],
  "license": "BSD-3-Clause",
  "main": "lib/filesize",
  "maintainers": [
    {
      "name": "avoidwork",
      "email": "jason@attack.io"
    }
  ],
  "name": "filesize",
  "optionalDependencies": {},
  "readme": "# filesize.js\n\n[![build status](https://secure.travis-ci.org/avoidwork/filesize.js.svg)](http://travis-ci.org/avoidwork/filesize.js)  [![downloads](https://img.shields.io/npm/dt/filesize.svg)](https://www.npmjs.com/package/filesize) [![CDNJS version](https://img.shields.io/cdnjs/v/filesize.svg)](https://cdnjs.com/libraries/filesize)\n\nfilesize.js provides a simple way to get a human readable file size string from a number (float or integer) or string.\n\n## Optional settings\n\n`filesize()` accepts an optional descriptor Object as a second argument, so you can customize the output.\n\n### base\n_*(number)*_ Number base, default is `2`\n\n### bits\n_*(boolean)*_ Enables `bit` sizes, default is `false`\n\n### exponent\n_*(number)*_ Specifies the symbol via exponent, e.g. `2` is `MB` for base 2, default is `-1`\n\n### fullform\n_*(boolean)*_ Enables full form of unit of measure, default is `false`\n\n### fullforms\n_*(array)*_ Array of full form overrides, default is `[]`\n\n### output\n_*(string)*_ Output of function (`array`, `exponent`, `object`, or `string`), default is `string`\n\n### round\n_*(number)*_ Decimal place, default is `2`\n\n### spacer\n_*(string)*_ Character between the `result` and `suffix`, default is `\" \"`\n\n### standard\n_*(string)*_ Standard unit of measure, can be `iec` or `jedec`, default is `jedec`; can be overruled by `base`\n\n### symbols\n_*(object)*_ Dictionary of SI/JEDEC symbols to replace for localization, defaults to english if no match is found\n\n### suffixes (deprecated: use 'symbols')\n_*(object)*_ Dictionary of SI/JEDEC symbols to replace for localization, defaults to english if no match is found\n\n### unix\n_*(boolean)*_ Enables unix style human readable output, e.g `ls -lh`, default is `false`\n\n## Examples\n\n```javascript\nfilesize(500);                        // \"500 B\"\nfilesize(500, {bits: true});          // \"4 Kb\"\nfilesize(265318, {base: 10});         // \"265.32 kB\"\nfilesize(265318);                     // \"259.1 KB\"\nfilesize(265318, {round: 0});         // \"259 KB\"\nfilesize(265318, {output: \"array\"});  // [259.1, \"KB\"]\nfilesize(265318, {output: \"object\"}); // {value: 259.1, suffix: \"KB\", symbol: \"KB\"}\nfilesize(1, {symbols: {B: \"Б\"}});     // \"1 Б\"\nfilesize(1024);                       // \"1 KB\"\nfilesize(1024, {exponent: 0});        // \"1024 B\"\nfilesize(1024, {output: \"exponent\"}); // 1\nfilesize(265318, {standard: \"iec\"});  // \"259.1 KiB\"\nfilesize(265318, {standard: \"iec\", fullform: true}); // \"259.1 kibibytes\"\nfilesize(12, {fullform: true, fullforms: [\"байтов\"]});  // \"12 байтов\"\n```\n\n## Partial Application\n`filesize.partial()` takes the second parameter of `filesize()` and returns a new function with the configuration applied \nupon execution. This can be used to reduce `Object` creation if you call `filesize()` without caching the `descriptor` \nin lexical scope.\n\n```javascript\nconst size = filesize.partial({standard: \"iec\"});\n\nsize(265318); // \"259.1 KiB\"\n```\n\n## How can I load filesize.js?\nfilesize.js supports AMD loaders (require.js, curl.js, etc.), node.js & npm (```npm install filesize```), or using a script tag.\n\n## License\nCopyright (c) 2017 Jason Mulligan\nLicensed under the BSD-3 license.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/avoidwork/filesize.js.git"
  },
  "scripts": {
    "test": "grunt test"
  },
  "version": "3.5.11"
}
