{"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomatic","randomize","randomized"],"dist-tags":{"latest":"1.1.7"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","readme":"# randomatic [![NPM version](https://img.shields.io/npm/v/randomatic.svg?style=flat)](https://www.npmjs.com/package/randomatic) [![NPM monthly downloads](https://img.shields.io/npm/dm/randomatic.svg?style=flat)](https://npmjs.org/package/randomatic) [![NPM total downloads](https://img.shields.io/npm/dt/randomatic.svg?style=flat)](https://npmjs.org/package/randomatic) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/randomatic.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/randomatic)\n\n> Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save randomatic\n```\n\n## Usage\n\n```js\nvar randomize = require('randomatic');\n```\n\n## API\n\n```js\nrandomize(pattern, length, options);\n```\n\n* `pattern` **{String}**: The pattern to use for randomizing\n* `length` **{Object}**: The length of the string to generate\n\n### pattern\n\n> The pattern to use for randomizing\n\nPatterns can contain any combination of the below characters, specified in any order.\n\n**Example:**\n\nTo generate a 10-character randomized string using all available characters:\n\n```js\nrandomize('*', 10);\n//=>\n\nrandomize('Aa0!', 10);\n//=>\n```\n\n* `a`: Lowercase alpha characters (`abcdefghijklmnopqrstuvwxyz'`)\n* `A`: Uppercase alpha characters (`ABCDEFGHIJKLMNOPQRSTUVWXYZ'`)\n* `0`: Numeric characters (`0123456789'`)\n* `!`: Special characters (`~!@#$%^&()_+-={}[];\\',.`)\n* `*`: All characters (all of the above combined)\n* `?`: Custom characters (pass a string of custom characters to the options)\n\n### length\n\n> the length of the string to generate\n\n**Examples:**\n\n* `randomize('A', 5)` will generate a 5-character, uppercase, alphabetical, randomized string, e.g. `KDJWJ`.\n* `randomize('0', 2)` will generate a 2-digit random number\n* `randomize('0', 3)` will generate a 3-digit random number\n* `randomize('0', 12)` will generate a 12-digit random number\n* `randomize('A0', 16)` will generate a 16-character, alpha-numeric randomized string\n\nIf `length` is left undefined, the length of the pattern in the first parameter will be used. For example:\n\n* `randomize('00')` will generate a 2-digit random number\n* `randomize('000')` will generate a 3-digit random number\n* `randomize('0000')` will generate a 4-digit random number...\n* `randomize('AAAAA')` will generate a 5-character, uppercase alphabetical random string...\n\nThese are just examples, [see the tests](./test.js) for more use cases and examples.\n\n#### chars\n\nType: `String`\n\nDefault: `undefined`\n\nDefine a custom string to be randomized.\n\n**Example:**\n\n* `randomize('?', 20, {chars: 'jonschlinkert'})` will generate a 20-character randomized string from the letters contained in `jonschlinkert`.\n* `randomize('?', {chars: 'jonschlinkert'})` will generate a 13-character randomized string from the letters contained in `jonschlinkert`.\n\n## Usage Examples\n\n* `randomize('A', 4)` (_whitespace insenstive_) would result in randomized 4-digit uppercase letters, like, `ZAKH`, `UJSL`... etc.\n* `randomize('AAAA')` is equivelant to `randomize('A', 4)`\n* `randomize('AAA0')` and `randomize('AA00')` and `randomize('A0A0')` are equivelant to `randomize('A0', 4)`\n* `randomize('aa')`: results in double-digit, randomized, lower-case letters (`abcdefghijklmnopqrstuvwxyz`)\n* `randomize('AAA')`: results in triple-digit, randomized, upper-case letters (`ABCDEFGHIJKLMNOPQRSTUVWXYZ`)\n* `randomize('0', 6)`: results in six-digit, randomized numbers (`0123456789`)\n* `randomize('!', 5)`: results in single-digit randomized, _valid_ non-letter characters (`~!@#$%^&()_+-={}[]\n* `randomize('A!a0', 9)`: results in nine-digit, randomized characters (any of the above)\n\n_The order in which the characters are defined is insignificant._\n\n## About\n\n### Related projects\n\n* [pad-left](https://www.npmjs.com/package/pad-left): Left pad a string with zeros or a specified string. Fastest implementation. | [homepage](https://github.com/jonschlinkert/pad-left \"Left pad a string with zeros or a specified string. Fastest implementation.\")\n* [pad-right](https://www.npmjs.com/package/pad-right): Right pad a string with zeros or a specified string. Fastest implementation. | [homepage](https://github.com/jonschlinkert/pad-right \"Right pad a string with zeros or a specified string. Fastest implementation.\")\n* [repeat-string](https://www.npmjs.com/package/repeat-string): Repeat the given string n times. Fastest implementation for repeating a string. | [homepage](https://github.com/jonschlinkert/repeat-string \"Repeat the given string n times. Fastest implementation for repeating a string.\")\n\n### Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n### Contributors\n\n| **Commits** | **Contributor** | \n| --- | --- |\n| 41 | [jonschlinkert](https://github.com/jonschlinkert) |\n| 1 | [TrySound](https://github.com/TrySound) |\n| 1 | [Drag0s](https://github.com/Drag0s) |\n| 1 | [paulmillr](https://github.com/paulmillr) |\n| 1 | [sunknudsen](https://github.com/sunknudsen) |\n\n### Building docs\n\n_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_\n\nTo generate the readme, run the following command:\n\n```sh\n$ npm install -g verbose/verb#dev verb-generate-readme && verb\n```\n\n### Running tests\n\nRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:\n\n```sh\n$ npm install && npm test\n```\n\n### Author\n\n**Jon Schlinkert**\n\n* [github/jonschlinkert](https://github.com/jonschlinkert)\n* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)\n\n### License\n\nCopyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT License](LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 09, 2017._","repository":{"type":"git","url":"git+https://github.com/jonschlinkert/randomatic.git"},"users":{"program247365":true,"s4g6":true,"scottfreecode":true,"illuminator":true,"crashtheuniverse":true,"humingchun":true,"seangenabe":true,"isaacvitor":true,"rocket0191":true},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":"MIT","versions":{"0.1.0":{"name":"randomatic","description":"Generate randomized strings of a specified length from patterns of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/randomatic/blob/master/LICENSE-MIT"}],"main":"index.js","keywords":["alpha","alpha-numeric","alphanumeric","chars","characters","numeric","random","rand","randomize","randomized"],"devDependencies":{"frep":"~0.1.2","lodash":"~2.4.1","chalk":"~0.4.0","grunt-sync-pkg":"~0.1.2","grunt":"~0.4.2","grunt-contrib-jshint":"~0.8.0","grunt-readme":"~0.4.5"},"dependencies":{"lodash":"~2.4.1"},"_id":"randomatic@0.1.0","dist":{"shasum":"d3a52b5324f900afe00a071916e5b8d19080a8e8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-0.1.0.tgz"},"_from":".","_npmVersion":"1.3.14","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{}},"0.1.1":{"name":"randomatic","description":"Generate randomized strings of a specified length from patterns of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"0.1.1","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/randomatic/blob/master/LICENSE-MIT"}],"main":"index.js","keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","verb":"~0.2.5"},"_id":"randomatic@0.1.1","dist":{"shasum":"bc8305c4f30d3b9b9f40df389bd7b48a96268924","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-0.1.1.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{}},"0.1.2":{"name":"randomatic","description":"Generate randomized strings of a specified length from patterns of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"0.1.2","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/randomatic/blob/master/LICENSE-MIT"}],"main":"index.js","keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","verb":"~0.2.5"},"_id":"randomatic@0.1.2","dist":{"shasum":"ad339807a72884d4192e46d8f050bcdea403f050","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-0.1.2.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{}},"0.1.3":{"name":"randomatic","description":"Generate randomized strings of a specified length from patterns of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"0.1.3","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/randomatic/blob/master/LICENSE-MIT"}],"main":"index.js","keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","verb":"~0.2.5"},"_id":"randomatic@0.1.3","dist":{"shasum":"6649dd4ac1e86f157d22d8fc1e64bd8ab5e82c75","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-0.1.3.tgz"},"_from":".","_npmVersion":"1.3.24","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"directories":{}},"0.1.4":{"name":"randomatic","description":"Generate randomized strings of a specified length from patterns of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"0.1.4","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/randomatic/blob/master/LICENSE-MIT"}],"main":"index.js","keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"devDependencies":{"chai":"~1.9.1","mocha":"~1.18.2","verb":"~0.2.5"},"_id":"randomatic@0.1.4","_shasum":"f98c22fbbe1bfe1ee0fa79a0738763e8d660d7d2","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"f98c22fbbe1bfe1ee0fa79a0738763e8d660d7d2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-0.1.4.tgz"},"directories":{}},"1.0.0":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.0.0","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/randomatic/blob/master/LICENSE-MIT"},"main":"index.js","devDependencies":{"mocha":"^2.0.1","should":"^4.4.1"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"dependencies":{"is-number":"^0.1.1"},"gitHead":"47e8fcee024995ecfe822fee2326e51c47b5e26f","_id":"randomatic@1.0.0","scripts":{},"_shasum":"a5a86c5bf4f621b4b24e1442347988f52336db9f","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"a5a86c5bf4f621b4b24e1442347988f52336db9f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.0.1","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/randomatic/blob/master/LICENSE-MIT"},"scripts":{"test":"mocha -R spec","docs":"update && license && npmignore && deps && verb","all":"npm run test && npm run docs"},"main":"index.js","devDependencies":{"mocha":"^2.0.1","should":"^4.4.1"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"dependencies":{"is-number":"^0.1.1"},"gitHead":"8268893bc707463b170685bbf0837fd4a1995787","_id":"randomatic@1.0.1","_shasum":"2e75c26294da75d267f70ba87251ee6604948baf","_from":".","_npmVersion":"1.4.23","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"2e75c26294da75d267f70ba87251ee6604948baf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.0.1.tgz"},"directories":{}},"1.1.0":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.1.0","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/randomatic/blob/master/LICENSE-MIT"},"scripts":{"test":"mocha -R spec"},"main":"index.js","files":["index.js"],"dependencies":{"is-number":"^1.1.0","kind-of":"^1.0.0"},"devDependencies":{"benchmarked":"^0.1.3","chalk":"^0.5.1","glob":"^4.3.5","should":"^4.4.1"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"gitHead":"ca326363bee58a3eb2556a5805822ffbf328397e","_id":"randomatic@1.1.0","_shasum":"2ca36b9f93747aac985eb242749af88b45d5d42d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"2ca36b9f93747aac985eb242749af88b45d5d42d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.1.1","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":"MIT","scripts":{"test":"mocha"},"main":"index.js","files":["index.js"],"dependencies":{"is-number":"^2.0.2","kind-of":"^2.0.1"},"devDependencies":{"ansi-bold":"^0.1.1","benchmarked":"^0.1.4","chalk":"^1.1.1","glob":"^5.0.15","should":"*"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"gitHead":"4b5fbd4e844b61e29d0417bc3edfcab820b0593b","_id":"randomatic@1.1.1","_shasum":"ab0f555bbe58acd707be9dc446089f04ee930f1c","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ab0f555bbe58acd707be9dc446089f04ee930f1c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.1.1.tgz"},"directories":{}},"1.1.2":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.1.2","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":"MIT","scripts":{"test":"mocha"},"main":"index.js","files":["index.js"],"dependencies":{"is-number":"^2.0.2","kind-of":"^2.0.1"},"devDependencies":{"ansi-bold":"^0.1.1","benchmarked":"^0.1.4","glob":"^5.0.15","mocha":"^2.3.3","should":"*"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"gitHead":"054e4f66cd0bf99a7f8f133ab04b949b2d557db8","_id":"randomatic@1.1.2","_shasum":"8661cd39964c4f06707bc1002cf3e8b633e8883c","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"8661cd39964c4f06707bc1002cf3e8b633e8883c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.1.2.tgz"},"directories":{}},"1.1.3":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.1.3","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":"MIT","files":["index.js"],"main":"index.js","scripts":{"test":"mocha"},"dependencies":{"is-number":"^2.0.2","kind-of":"^2.0.1"},"devDependencies":{"ansi-bold":"^0.1.1","benchmarked":"^0.1.4","glob":"^5.0.15","mocha":"*","should":"*"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"verb":{"related":{"list":["repeat-string","pad-left","pad-right"]}},"gitHead":"dd4373147b04f709835dc65aad7b6efccfca7ad5","_id":"randomatic@1.1.3","_shasum":"cfbd4fe82545202b0de0ce13d61c41f2d467d5cf","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"cfbd4fe82545202b0de0ce13d61c41f2d467d5cf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.1.3.tgz"},"directories":{}},"1.1.4":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.1.4","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":"MIT","files":["index.js"],"main":"index.js","scripts":{"test":"mocha"},"dependencies":{"is-number":"^2.0.2","kind-of":"^2.0.1"},"devDependencies":{"ansi-bold":"^0.1.1","benchmarked":"^0.1.4","glob":"^5.0.15","mocha":"*","should":"*"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"verb":{"related":{"list":["repeat-string","pad-left","pad-right"]},"plugins":["gulp-format-md"]},"gitHead":"f1e729ff2b4bc1ccf09aa5d0748a918cf48a38de","_id":"randomatic@1.1.4","_shasum":"a1591ed73708c3a8c88db7bc090a4c82085ad7ba","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"a1591ed73708c3a8c88db7bc090a4c82085ad7ba","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.1.4.tgz"},"directories":{}},"1.1.5":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.1.5","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":"MIT","files":["index.js"],"main":"index.js","scripts":{"test":"mocha"},"dependencies":{"is-number":"^2.0.2","kind-of":"^3.0.2"},"devDependencies":{"ansi-bold":"^0.1.1","benchmarked":"^0.1.4","glob":"^5.0.15","mocha":"*","should":"*"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomize","randomized"],"verb":{"related":{"list":["repeat-string","pad-left","pad-right"]},"plugins":["gulp-format-md"]},"gitHead":"8d74759d683a580412484e95ec5f1b87d93fd50c","_id":"randomatic@1.1.5","_shasum":"5e9ef5f2d573c67bd2b8124ae90b5156e457840b","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"5e9ef5f2d573c67bd2b8124ae90b5156e457840b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.1.5.tgz"},"directories":{}},"1.1.6":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.1.6","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">= 0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"is-number":"^2.0.2","kind-of":"^3.0.2"},"devDependencies":{"ansi-bold":"^0.1.1","benchmarked":"^0.1.4","glob":"^5.0.15","gulp-format-md":"^0.1.11","mocha":"*","should":"*"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomatic","randomize","randomized"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["pad-left","pad-right","repeat-string"]},"lint":{"reflinks":true},"reflinks":["verb","verb-generate-readme"]},"gitHead":"80065df04deaa8f7a405d2689aaaef57117c6a94","_id":"randomatic@1.1.6","_shasum":"110dcabff397e9dcff7c0789ccc0a49adf1ec5bb","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"110dcabff397e9dcff7c0789ccc0a49adf1ec5bb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.1.6.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/randomatic-1.1.6.tgz_1480022662943_0.08446102566085756"},"directories":{}},"1.1.7":{"name":"randomatic","description":"Generate randomized strings of a specified length, fast. Only the length is necessary, but you can optionally generate patterns using any combination of numeric, alpha-numeric, alphabetical, special or custom characters.","version":"1.1.7","homepage":"https://github.com/jonschlinkert/randomatic","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Bogdan Chadkin","url":"https://github.com/TrySound"},{"name":"Dragos Fotescu","url":"http://dragosfotescu.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Paul Miller","url":"paulmillr.com"},{"name":"Sun Knudsen","url":"http://sunknudsen.com"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/randomatic.git"},"bugs":{"url":"https://github.com/jonschlinkert/randomatic/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">= 0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"is-number":"^3.0.0","kind-of":"^4.0.0"},"devDependencies":{"ansi-bold":"^0.1.1","benchmarked":"^1.1.1","glob":"^7.1.2","gulp-format-md":"^0.1.12","mocha":"^3.4.2","should":"^11.2.1"},"keywords":["alpha","alpha-numeric","alphanumeric","characters","chars","numeric","rand","random","randomatic","randomize","randomized"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["pad-left","pad-right","repeat-string"]},"lint":{"reflinks":true},"reflinks":["verb","verb-generate-readme"]},"gitHead":"d91c5f90e785db08a9b9e518926b444671092f26","_id":"randomatic@1.1.7","_npmVersion":"5.0.3","_nodeVersion":"7.7.3","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"doowb","email":"brian.woodward@gmail.com"},{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"integrity":"sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==","shasum":"c7abe9cc8b87c0baa876b19fde83fd464797e38c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/randomatic/-/randomatic-1.1.7.tgz"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/randomatic-1.1.7.tgz_1497052370312_0.7579707570839673"},"directories":{}}},"name":"randomatic","contributors":[{"name":"Bogdan Chadkin","url":"https://github.com/TrySound"},{"name":"Dragos Fotescu","url":"http://dragosfotescu.com"},{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Paul Miller","url":"paulmillr.com"},{"name":"Sun Knudsen","url":"http://sunknudsen.com"}],"time":{"modified":"2017-06-09T23:52:51.347Z","created":"2014-01-04T11:21:05.020Z","0.1.0":"2014-01-04T11:21:14.854Z","0.1.1":"2014-05-01T22:18:59.740Z","0.1.2":"2014-05-03T06:49:59.795Z","0.1.3":"2014-05-03T06:55:09.056Z","0.1.4":"2014-05-19T05:56:50.065Z","1.0.0":"2015-01-02T16:25:35.471Z","1.0.1":"2015-01-02T16:29:11.219Z","1.1.0":"2015-01-26T07:11:45.553Z","1.1.1":"2015-11-10T12:07:49.220Z","1.1.2":"2015-11-12T06:45:27.266Z","1.1.3":"2015-11-12T06:49:38.428Z","1.1.4":"2015-12-10T17:35:02.532Z","1.1.5":"2015-12-10T19:13:41.356Z","1.1.6":"2016-11-24T21:24:23.626Z","1.1.7":"2017-06-09T23:52:51.347Z"},"readmeFilename":"README.md","homepage":"https://github.com/jonschlinkert/randomatic"}