{
  "_args": [
    [
      "repeat-element@https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
      "/Users/nw/flint/packages/flint"
    ]
  ],
  "_from": "repeat-element@>=1.1.2 <2.0.0",
  "_id": "repeat-element@1.1.2",
  "_inCache": true,
  "_location": "/repeat-element",
  "_phantomChildren": {},
  "_requested": {
    "name": "repeat-element",
    "raw": "repeat-element@https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
    "rawSpec": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
    "scope": null,
    "spec": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
    "type": "remote"
  },
  "_requiredBy": [
    "/braces",
    "/fill-range"
  ],
  "_resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
  "_shasum": "ef089a178d1483baae4d93eb98b4f9e4e11d990a",
  "_shrinkwrap": null,
  "_spec": "repeat-element@https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
  "_where": "/Users/nw/flint/packages/flint",
  "author": {
    "name": "Jon Schlinkert",
    "url": "https://github.com/jonschlinkert"
  },
  "bugs": {
    "url": "https://github.com/jonschlinkert/repeat-element/issues"
  },
  "dependencies": {},
  "description": "Create an array by repeating the given value n times.",
  "devDependencies": {
    "benchmarked": "^0.1.4",
    "chalk": "^1.0.0",
    "glob": "^5.0.5",
    "minimist": "^1.1.1",
    "mocha": "^2.2.4"
  },
  "engines": {
    "node": ">=0.10.0"
  },
  "files": [
    "index.js"
  ],
  "homepage": "https://github.com/jonschlinkert/repeat-element",
  "keywords": [
    "array",
    "element",
    "repeat",
    "string"
  ],
  "license": {
    "type": "MIT",
    "url": "https://github.com/jonschlinkert/repeat-element/blob/master/LICENSE"
  },
  "main": "index.js",
  "name": "repeat-element",
  "optionalDependencies": {},
  "readme": "# repeat-element [![NPM version](https://badge.fury.io/js/repeat-element.svg)](http://badge.fury.io/js/repeat-element)\n\n> Create an array by repeating the given value n times.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/)\n\n```bash\nnpm i repeat-element --save\n```\n\n## Usage\n\n```js\nvar repeat = require('repeat-element');\n\nrepeat('a', 5);\n//=> ['a', 'a', 'a', 'a', 'a']\n\nrepeat('a', 1);\n//=> ['a']\n\nrepeat('a', 0);\n//=> []\n\nrepeat(null, 5)\n//» [ null, null, null, null, null ]\n\nrepeat({some: 'object'}, 5)\n//» [ { some: 'object' },\n//    { some: 'object' },\n//    { some: 'object' },\n//    { some: 'object' },\n//    { some: 'object' } ]\n\nrepeat(5, 5)\n//» [ 5, 5, 5, 5, 5 ]\n```\n\n## Related projects\n\n[repeat-string](https://github.com/jonschlinkert/repeat-string): Repeat the given string n times. Fastest implementation for repeating a string.\n\n## Running tests\n\nInstall dev dependencies:\n\n```bash\nnpm i -d && npm test\n```\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/repeat-element/issues)\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 (c) 2015 Jon Schlinkert\nReleased under the MIT license.\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on May 06, 2015._\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/jonschlinkert/repeat-element.git"
  },
  "scripts": {
    "test": "mocha"
  },
  "version": "1.1.2"
}
