GT2/GT2-Android/node_modules/repeat-element/package.json

104 lines
4.0 KiB
JSON
Raw Normal View History

{
"_args": [
[
{
"raw": "repeat-element@^1.1.2",
"scope": null,
"escapedName": "repeat-element",
"name": "repeat-element",
"rawSpec": "^1.1.2",
"spec": ">=1.1.2 <2.0.0",
"type": "range"
},
"/home/jdaugherty/work/GT2/GT2-Android/node_modules/braces"
]
],
"_from": "repeat-element@>=1.1.2 <2.0.0",
"_id": "repeat-element@1.1.2",
"_inCache": true,
"_location": "/repeat-element",
"_nodeVersion": "0.12.0",
"_npmUser": {
"name": "jonschlinkert",
"email": "github@sellside.com"
},
"_npmVersion": "2.5.1",
"_phantomChildren": {},
"_requested": {
"raw": "repeat-element@^1.1.2",
"scope": null,
"escapedName": "repeat-element",
"name": "repeat-element",
"rawSpec": "^1.1.2",
"spec": ">=1.1.2 <2.0.0",
"type": "range"
},
"_requiredBy": [
"/braces",
"/fill-range"
],
"_resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
"_shasum": "ef089a178d1483baae4d93eb98b4f9e4e11d990a",
"_shrinkwrap": null,
"_spec": "repeat-element@^1.1.2",
"_where": "/home/jdaugherty/work/GT2/GT2-Android/node_modules/braces",
"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"
},
"directories": {},
"dist": {
"shasum": "ef089a178d1483baae4d93eb98b4f9e4e11d990a",
"tarball": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"gitHead": "7a6b21d58eafcc44fc8de133c70a8398ee9fdd8d",
"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",
"maintainers": [
{
"name": "jonschlinkert",
"email": "github@sellside.com"
}
],
"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"
}