{"maintainers":[{"name":"anonymous","email":"brian.woodward@gmail.com"}],"keywords":["ansi-bgblack","ansi-bgblue","ansi-bgcyan","ansi-bggreen","ansi-bgmagenta","ansi-bgred","ansi-bgwhite","ansi-bgyellow","ansi-black","ansi-blue","ansi-bold","ansi-cyan","ansi-dim","ansi-gray","ansi-green","ansi-grey","ansi-hidden","ansi-inverse","ansi-italic","ansi-magenta","ansi-red","ansi-reset","ansi-strikethrough","ansi-underline","ansi-white","ansi-yellow","bgblack","bgblue","bgcyan","bggreen","bgmagenta","bgred","bgwhite","bgyellow","black","blue","bold","cyan","dim","gray","green","grey","hidden","inverse","italic","magenta","red","reset","strikethrough","underline","white","yellow"],"dist-tags":{"latest":"1.0.0"},"author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"description":"Lazyily loaded collection of ansi colors and styles.","readme":"# ansi-colors-lazy [![NPM version](https://img.shields.io/npm/v/ansi-colors-lazy.svg?style=flat)](https://www.npmjs.com/package/ansi-colors-lazy) [![NPM monthly downloads](https://img.shields.io/npm/dm/ansi-colors-lazy.svg?style=flat)](https://npmjs.org/package/ansi-colors-lazy)  [![NPM total downloads](https://img.shields.io/npm/dt/ansi-colors-lazy.svg?style=flat)](https://npmjs.org/package/ansi-colors-lazy) [![Linux Build Status](https://img.shields.io/travis/doowb/ansi-colors-lazy.svg?style=flat&label=Travis)](https://travis-ci.org/doowb/ansi-colors-lazy) [![Windows Build Status](https://img.shields.io/appveyor/ci/doowb/ansi-colors-lazy.svg?style=flat&label=AppVeyor)](https://ci.appveyor.com/project/doowb/ansi-colors-lazy)\n\n> Lazyily loaded collection of ansi colors and styles.\n\n## Install\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save ansi-colors-lazy\n```\n\n## Why was this module created?\n\nThis module was created to make it easy to allow color configuration through options. If your application will always use specific colors, we recommend requiring [those modules](#related-projects) directly. If your application requires using most of the colors, we recommend using [ansi-colors][] for faster require times (the colors are inlined). When using only a few colors at a time or allowing users to choose from a few colors, this module will be more efficient due to lazy caching the [underlying modules](#related-projects).\n\n## Usage\n\n```js\nvar colors = require('ansi-colors-lazy');\n```\n\n## API\n\n### [bgblack](index.js#L47)\nWrap a string with ansi codes to create a black background.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bgblack('some string'));\n```\n\n### [bgblue](index.js#L62)\nWrap a string with ansi codes to create a blue background.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bgblue('some string'));\n```\n\n### [bgcyan](index.js#L77)\nWrap a string with ansi codes to create a cyan background.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bgcyan('some string'));\n```\n\n### [bggreen](index.js#L92)\nWrap a string with ansi codes to create a green background.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bggreen('some string'));\n```\n\n### [bgmagenta](index.js#L107)\nWrap a string with ansi codes to create a magenta background.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bgmagenta('some string'));\n```\n\n### [bgred](index.js#L122)\nWrap a string with ansi codes to create a red background.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bgred('some string'));\n```\n\n### [bgwhite](index.js#L137)\nWrap a string with ansi codes to create a white background.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bgwhite('some string'));\n```\n\n### [bgyellow](index.js#L152)\nWrap a string with ansi codes to create a yellow background.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bgyellow('some string'));\n```\n\n### [black](index.js#L167)\nWrap a string with ansi codes to create black text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.black('some string'));\n```\n\n### [blue](index.js#L182)\nWrap a string with ansi codes to create blue text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.blue('some string'));\n```\n\n### [bold](index.js#L197)\nWrap a string with ansi codes to create bold text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.bold('some string'));\n```\n\n### [cyan](index.js#L212)\nWrap a string with ansi codes to create cyan text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.cyan('some string'));\n```\n\n### [dim](index.js#L227)\nWrap a string with ansi codes to create dim text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.dim('some string'));\n```\n\n### [gray](index.js#L242)\nWrap a string with ansi codes to create gray text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.gray('some string'));\n```\n\n### [green](index.js#L257)\nWrap a string with ansi codes to create green text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.green('some string'));\n```\n\n### [grey](index.js#L272)\nWrap a string with ansi codes to create grey text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.grey('some string'));\n```\n\n### [hidden](index.js#L287)\nWrap a string with ansi codes to create hidden text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.hidden('some string'));\n```\n\n### [inverse](index.js#L302)\nWrap a string with ansi codes to create inverse text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.inverse('some string'));\n```\n\n### [italic](index.js#L317)\nWrap a string with ansi codes to create italic text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.italic('some string'));\n```\n\n### [magenta](index.js#L332)\nWrap a string with ansi codes to create magenta text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.magenta('some string'));\n```\n\n### [red](index.js#L347)\nWrap a string with ansi codes to create red text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.red('some string'));\n```\n\n### [reset](index.js#L362)\nWrap a string with ansi codes to reset ansi colors currently on the string.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.reset('some string'));\n```\n\n### [strikethrough](index.js#L377)\nWrap a string with ansi codes to add a strikethrough to the text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.strikethrough('some string'));\n```\n\n### [underline](index.js#L392)\nWrap a string with ansi codes to underline the text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.underline('some string'));\n```\n\n### [white](index.js#L407)\nWrap a string with ansi codes to create white text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.white('some string'));\n```\n\n### [yellow](index.js#L422)\nWrap a string with ansi codes to create yellow text.\n\n**Params**\n\n* `str` **{String}**: String to wrap with ansi codes.    \n* `returns` **{String}**: Wrapped string  \n\n**Example**\n\n```js\nconsole.log(colors.yellow('some string'));\n```\n\n## About\n### Related projects\n- [ansi-bgblack](https://www.npmjs.com/package/ansi-bgblack): The color bgblack, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bgblack \"The color bgblack, in ansi.\")\n- [ansi-bgblue](https://www.npmjs.com/package/ansi-bgblue): The color bgblue, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bgblue \"The color bgblue, in ansi.\")\n- [ansi-bgcyan](https://www.npmjs.com/package/ansi-bgcyan): The color bgcyan, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bgcyan \"The color bgcyan, in ansi.\")\n- [ansi-bggreen](https://www.npmjs.com/package/ansi-bggreen): The color bggreen, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bggreen \"The color bggreen, in ansi.\")\n- [ansi-bgmagenta](https://www.npmjs.com/package/ansi-bgmagenta): The color bgmagenta, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bgmagenta \"The color bgmagenta, in ansi.\")\n- [ansi-bgred](https://www.npmjs.com/package/ansi-bgred): The color bgred, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bgred \"The color bgred, in ansi.\")\n- [ansi-bgwhite](https://www.npmjs.com/package/ansi-bgwhite): The color bgwhite, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bgwhite \"The color bgwhite, in ansi.\")\n- [ansi-bgyellow](https://www.npmjs.com/package/ansi-bgyellow): The color bgyellow, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bgyellow \"The color bgyellow, in ansi.\")\n- [ansi-black](https://www.npmjs.com/package/ansi-black): The color black, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-black \"The color black, in ansi.\")\n- [ansi-blue](https://www.npmjs.com/package/ansi-blue): The color blue, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-blue \"The color blue, in ansi.\")\n- [ansi-bold](https://www.npmjs.com/package/ansi-bold): The color bold, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-bold \"The color bold, in ansi.\")\n- [ansi-cyan](https://www.npmjs.com/package/ansi-cyan): The color cyan, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-cyan \"The color cyan, in ansi.\")\n- [ansi-dim](https://www.npmjs.com/package/ansi-dim): The color dim, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-dim \"The color dim, in ansi.\")\n- [ansi-gray](https://www.npmjs.com/package/ansi-gray): The color gray, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-gray \"The color gray, in ansi.\")\n- [ansi-green](https://www.npmjs.com/package/ansi-green): The color green, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-green \"The color green, in ansi.\")\n- [ansi-grey](https://www.npmjs.com/package/ansi-grey): The color grey, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-grey \"The color grey, in ansi.\")\n- [ansi-hidden](https://www.npmjs.com/package/ansi-hidden): The color hidden, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-hidden \"The color hidden, in ansi.\")\n- [ansi-inverse](https://www.npmjs.com/package/ansi-inverse): The color inverse, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-inverse \"The color inverse, in ansi.\")\n- [ansi-italic](https://www.npmjs.com/package/ansi-italic): The color italic, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-italic \"The color italic, in ansi.\")\n- [ansi-magenta](https://www.npmjs.com/package/ansi-magenta): The color magenta, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-magenta \"The color magenta, in ansi.\")\n- [ansi-red](https://www.npmjs.com/package/ansi-red): The color red, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-red \"The color red, in ansi.\")\n- [ansi-reset](https://www.npmjs.com/package/ansi-reset): The color reset, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-reset \"The color reset, in ansi.\")\n- [ansi-strikethrough](https://www.npmjs.com/package/ansi-strikethrough): The color strikethrough, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-strikethrough \"The color strikethrough, in ansi.\")\n- [ansi-underline](https://www.npmjs.com/package/ansi-underline): The color underline, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-underline \"The color underline, in ansi.\")\n- [ansi-white](https://www.npmjs.com/package/ansi-white): The color white, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-white \"The color white, in ansi.\")\n- [ansi-yellow](https://www.npmjs.com/package/ansi-yellow): The color yellow, in ansi. | [homepage](https://github.com/jonschlinkert/ansi-yellow \"The color yellow, in ansi.\")\n\n### Contributing\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n### Contributors\n\n### Release history\n\n### Building docs\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**Brian Woodward**\n\n+ [github/doowb](https://github.com/doowb)\n+ [twitter/doowb](https://twitter.com/doowb)\n\n### License\nCopyright © 2017, [Brian Woodward](https://github.com/doowb).\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 December 06, 2017._\n\n[ansi-colors]: https://github.com/doowb/ansi-colors","repository":{"type":"git","url":"git+https://github.com/doowb/ansi-colors-lazy.git"},"bugs":{"url":"https://github.com/doowb/ansi-colors-lazy/issues"},"license":"MIT","versions":{"1.0.0":{"name":"ansi-colors-lazy","description":"Lazyily loaded collection of ansi colors and styles.","version":"1.0.0","homepage":"https://github.com/doowb/ansi-colors-lazy","author":{"name":"Brian Woodward","url":"https://github.com/doowb"},"repository":{"type":"git","url":"git+https://github.com/doowb/ansi-colors-lazy.git"},"bugs":{"url":"https://github.com/doowb/ansi-colors-lazy/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"ansi-bgblack":"^0.1.1","ansi-bgblue":"^0.1.1","ansi-bgcyan":"^0.1.1","ansi-bggreen":"^0.1.1","ansi-bgmagenta":"^0.1.1","ansi-bgred":"^0.1.1","ansi-bgwhite":"^0.1.1","ansi-bgyellow":"^0.1.1","ansi-black":"^0.1.1","ansi-blue":"^0.1.1","ansi-bold":"^0.1.1","ansi-cyan":"^0.1.1","ansi-dim":"^0.1.1","ansi-gray":"^0.1.1","ansi-green":"^0.1.1","ansi-grey":"^0.1.1","ansi-hidden":"^0.1.1","ansi-inverse":"^0.1.1","ansi-italic":"^0.1.1","ansi-magenta":"^0.1.1","ansi-red":"^0.1.1","ansi-reset":"^0.1.1","ansi-strikethrough":"^0.1.1","ansi-underline":"^0.1.1","ansi-white":"^0.1.1","ansi-yellow":"^0.1.1","lazy-cache":"^0.2.4"},"devDependencies":{"mocha":"*"},"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"lint":{"reflinks":true},"related":{"list":["ansi-bgblack","ansi-bgblue","ansi-bgcyan","ansi-bggreen","ansi-bgmagenta","ansi-bgred","ansi-bgwhite","ansi-bgyellow","ansi-black","ansi-blue","ansi-bold","ansi-cyan","ansi-dim","ansi-gray","ansi-green","ansi-grey","ansi-hidden","ansi-inverse","ansi-italic","ansi-magenta","ansi-red","ansi-reset","ansi-strikethrough","ansi-underline","ansi-white","ansi-yellow"]}},"keywords":["ansi-bgblack","ansi-bgblue","ansi-bgcyan","ansi-bggreen","ansi-bgmagenta","ansi-bgred","ansi-bgwhite","ansi-bgyellow","ansi-black","ansi-blue","ansi-bold","ansi-cyan","ansi-dim","ansi-gray","ansi-green","ansi-grey","ansi-hidden","ansi-inverse","ansi-italic","ansi-magenta","ansi-red","ansi-reset","ansi-strikethrough","ansi-underline","ansi-white","ansi-yellow","bgblack","bgblue","bgcyan","bggreen","bgmagenta","bgred","bgwhite","bgyellow","black","blue","bold","cyan","dim","gray","green","grey","hidden","inverse","italic","magenta","red","reset","strikethrough","underline","white","yellow"],"gitHead":"48091db7bbbfb5873e9ad6ffc409ea9831e30dd1","_id":"ansi-colors-lazy@1.0.0","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"anonymous","email":"brian.woodward@gmail.com"},"dist":{"integrity":"sha512-k0sCsxL3bcmow4lHiTuB7awrLXgnAaqrAvVbUAhUlxIzDNBdlpoxi2iZxv7RSi5YCCCDeQsZVNXFfkZoC+UxmA==","shasum":"1b157b00b907f643f841ab3e3320b562a19bcf85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/ansi-colors-lazy/-/ansi-colors-lazy-1.0.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDcRrf5OwXxCa5EHzINs7Qe9u416TcI/jddOPy0Up7EBAiBTdQ/iZgD0NCIYkvEE0JUEJg4/YJd23QTC3whntrQBPA=="}]},"maintainers":[{"name":"anonymous","email":"brian.woodward@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ansi-colors-lazy-1.0.0.tgz_1512591167943_0.2712364501785487"}}},"name":"ansi-colors-lazy","time":{"modified":"2022-04-11T14:18:38.979Z","created":"2017-12-06T20:12:49.006Z","1.0.0":"2017-12-06T20:12:49.006Z"},"readmeFilename":"README.md","homepage":"https://github.com/doowb/ansi-colors-lazy"}