{
  "_args": [
    [
      {
        "raw": "expand-range@^1.8.1",
        "scope": null,
        "escapedName": "expand-range",
        "name": "expand-range",
        "rawSpec": "^1.8.1",
        "spec": ">=1.8.1 <2.0.0",
        "type": "range"
      },
      "/home/travis/build/lukesargeant/ember-sparkline/node_modules/braces"
    ]
  ],
  "_from": "expand-range@>=1.8.1 <2.0.0",
  "_id": "expand-range@1.8.2",
  "_inCache": true,
  "_location": "/expand-range",
  "_nodeVersion": "5.5.0",
  "_npmOperationalInternal": {
    "host": "packages-16-east.internal.npmjs.com",
    "tmp": "tmp/expand-range-1.8.2.tgz_1462440434873_0.7174076174851507"
  },
  "_npmUser": {
    "name": "jonschlinkert",
    "email": "github@sellside.com"
  },
  "_npmVersion": "3.6.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "expand-range@^1.8.1",
    "scope": null,
    "escapedName": "expand-range",
    "name": "expand-range",
    "rawSpec": "^1.8.1",
    "spec": ">=1.8.1 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/braces"
  ],
  "_resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
  "_shasum": "a299effd335fe2721ebae8e257ec79644fc85337",
  "_shrinkwrap": null,
  "_spec": "expand-range@^1.8.1",
  "_where": "/home/travis/build/lukesargeant/ember-sparkline/node_modules/braces",
  "author": {
    "name": "Jon Schlinkert",
    "url": "https://github.com/jonschlinkert"
  },
  "bugs": {
    "url": "https://github.com/jonschlinkert/expand-range/issues"
  },
  "dependencies": {
    "fill-range": "^2.1.0"
  },
  "description": "Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.",
  "devDependencies": {
    "benchmarked": "^0.2.4",
    "brace-expansion": "^1.1.4",
    "glob": "^7.0.3",
    "gulp-format-md": "^0.1.9",
    "minimatch": "^3.0.0",
    "mocha": "^2.4.5"
  },
  "directories": {},
  "dist": {
    "shasum": "a299effd335fe2721ebae8e257ec79644fc85337",
    "tarball": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "4c873af0870df8382bafc66a93d5c89e3aad3d4d",
  "homepage": "https://github.com/jonschlinkert/expand-range",
  "keywords": [
    "alpha",
    "alphabetical",
    "bash",
    "brace",
    "expand",
    "expansion",
    "glob",
    "match",
    "matches",
    "matching",
    "number",
    "numerical",
    "range",
    "ranges",
    "sh"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "jonschlinkert",
      "email": "github@sellside.com"
    },
    {
      "name": "doowb",
      "email": "brian.woodward@gmail.com"
    }
  ],
  "name": "expand-range",
  "optionalDependencies": {},
  "readme": "# expand-range [![NPM version](https://img.shields.io/npm/v/expand-range.svg?style=flat)](https://www.npmjs.com/package/expand-range) [![NPM downloads](https://img.shields.io/npm/dm/expand-range.svg?style=flat)](https://npmjs.org/package/expand-range) [![Build Status](https://img.shields.io/travis/jonschlinkert/expand-range.svg?style=flat)](https://travis-ci.org/jonschlinkert/expand-range)\n\nFast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. See the benchmarks. Used by micromatch.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install expand-range --save\n```\n\nWraps [fill-range] to do range expansion using `..` separated strings. See [fill-range] for the full list of options and features.\n\n## Example usage\n\n```js\nvar expand = require('expand-range');\n```\n\n**Params**\n\n```js\nexpand(start, stop, increment);\n```\n\n* `start`: the number or letter to start with\n* `end`: the number or letter to end with\n* `increment`: optionally pass the increment to use. works for letters or numbers\n\n**Examples**\n\n```js\nexpand('a..e')\n//=> ['a', 'b', 'c', 'd', 'e']\n\nexpand('a..e..2')\n//=> ['a', 'c', 'e']\n\nexpand('A..E..2')\n//=> ['A', 'C', 'E']\n\nexpand('1..3')\n//=> ['1', '2', '3']\n\nexpand('0..-5')\n//=> [ '0', '-1', '-2', '-3', '-4', '-5' ]\n\nexpand('-9..9..3')\n//=> [ '-9', '-6', '-3', '0', '3', '6', '9' ])\n\nexpand('-1..-10..-2')\n//=> [ '-1', '-3', '-5', '-7', '-9' ]\n\nexpand('1..10..2')\n//=> [ '1', '3', '5', '7', '9' ]\n```\n\n### Custom function\n\nOptionally pass a custom function as the second argument:\n\n```js\nexpand('a..e', function (val, isNumber, pad, i) {\n  if (!isNumber) {\n    return String.fromCharCode(val) + i;\n  }\n  return val;\n});\n//=> ['a0', 'b1', 'c2', 'd3', 'e4']\n```\n\n## Benchmarks\n\n```sh\n# benchmark/fixtures/alpha-lower.js (29 bytes)\n  brace-expansion x 145,653 ops/sec ±0.89% (87 runs sampled)\n  expand-range x 453,213 ops/sec ±1.66% (85 runs sampled)\n  minimatch x 152,193 ops/sec ±1.17% (86 runs sampled)\n\n# benchmark/fixtures/alpha-upper.js (29 bytes)\n  brace-expansion x 149,975 ops/sec ±1.10% (88 runs sampled)\n  expand-range x 459,390 ops/sec ±1.27% (84 runs sampled)\n  minimatch x 155,253 ops/sec ±1.25% (88 runs sampled)\n\n# benchmark/fixtures/padded.js (33 bytes)\n  brace-expansion x 14,694 ops/sec ±1.37% (85 runs sampled)\n  expand-range x 169,393 ops/sec ±1.76% (80 runs sampled)\n  minimatch x 15,052 ops/sec ±1.15% (88 runs sampled)\n\n# benchmark/fixtures/range.js (29 bytes)\n  brace-expansion x 142,968 ops/sec ±1.35% (86 runs sampled)\n  expand-range x 465,579 ops/sec ±1.43% (86 runs sampled)\n  minimatch x 126,872 ops/sec ±1.18% (90 runs sampled)\n```\n\n## Related projects\n\nYou might also be interested in these projects:\n\n* [braces](https://www.npmjs.com/package/braces): Fastest brace expansion for node.js, with the most complete support for the Bash 4.3 braces… [more](https://www.npmjs.com/package/braces) | [homepage](https://github.com/jonschlinkert/braces)\n* [fill-range](https://www.npmjs.com/package/fill-range): Fill in a range of numbers or letters, optionally passing an increment or multiplier to… [more](https://www.npmjs.com/package/fill-range) | [homepage](https://github.com/jonschlinkert/fill-range)\n* [micromatch](https://www.npmjs.com/package/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. | [homepage](https://github.com/jonschlinkert/micromatch)\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/expand-range/issues/new).\n\n## Building docs\n\nGenerate readme and API documentation with [verb](https://github.com/verbose/verb):\n\n```sh\n$ npm install verb && npm run docs\n```\n\nOr, if [verb](https://github.com/verbose/verb) is installed globally:\n\n```sh\n$ verb\n```\n\n## Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm install -d && npm test\n```\n\n## Author\n\n**Jon Schlinkert**\n\n* [github/jonschlinkert](https://github.com/jonschlinkert)\n* [twitter/jonschlinkert](http://twitter.com/jonschlinkert)\n\n## License\n\nCopyright © 2016, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT license](https://github.com/jonschlinkert/expand-range/blob/master/LICENSE).\n\n***\n\n_This file was generated by [verb](https://github.com/verbose/verb), v0.9.0, on May 05, 2016._",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jonschlinkert/expand-range.git"
  },
  "scripts": {
    "test": "mocha"
  },
  "verb": {
    "plugins": [
      "gulp-format-md"
    ],
    "reflinks": [
      "verb"
    ],
    "toc": false,
    "layout": "default",
    "lint": {
      "reflinks": true
    },
    "tasks": [
      "readme"
    ],
    "related": {
      "list": [
        "micromatch",
        "fill-range",
        "braces"
      ]
    }
  },
  "version": "1.8.2"
}
