{"maintainers":[{"email":"i.am.qix@gmail.com","name":"qix"},{"email":"sindresorhus+unicorn@gmail.com","name":"unicorn"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"keywords":["color","colour","colors","terminal","console","cli","string","str","ansi","style","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dist-tags":{"latest":"2.1.0"},"description":"Terminal string styling done right","readme":"<h1 align=\"center\">\n\t<br>\n\t<br>\n\t<img width=\"320\" src=\"https://cdn.rawgit.com/chalk/chalk/19935d6484811c5e468817f846b7b3d417d7bf4a/logo.svg\" alt=\"chalk\">\n\t<br>\n\t<br>\n\t<br>\n</h1>\n\n> Terminal string styling done right\n\n[![Build Status](https://travis-ci.org/chalk/chalk.svg?branch=master)](https://travis-ci.org/chalk/chalk) [![Coverage Status](https://coveralls.io/repos/github/chalk/chalk/badge.svg?branch=master)](https://coveralls.io/github/chalk/chalk?branch=master) [![](https://img.shields.io/badge/unicorn-approved-ff69b4.svg)](https://www.youtube.com/watch?v=9auOCbH5Ns4) [![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)\n\n### [See what's new in Chalk 2](https://github.com/chalk/chalk/releases/tag/v2.0.0)\n\n![](https://github.com/chalk/ansi-styles/raw/master/screenshot.png)\n\n\n## Highlights\n\n- Expressive API\n- Highly performant\n- Ability to nest styles\n- [256/Truecolor color support](#256-and-truecolor-color-support)\n- Auto-detects color support\n- Doesn't extend `String.prototype`\n- Clean and focused\n- Actively maintained\n- [Used by ~17,000 packages](https://www.npmjs.com/browse/depended/chalk) as of June 20th, 2017\n\n\n## Install\n\n```console\n$ npm install chalk\n```\n\n\n## Usage\n\n```js\nconst chalk = require('chalk');\n\nconsole.log(chalk.blue('Hello world!'));\n```\n\nChalk comes with an easy to use composable API where you just chain and nest the styles you want.\n\n```js\nconst chalk = require('chalk');\nconst log = console.log;\n\n// Combine styled and normal strings\nlog(chalk.blue('Hello') + 'World' + chalk.red('!'));\n\n// Compose multiple styles using the chainable API\nlog(chalk.blue.bgRed.bold('Hello world!'));\n\n// Pass in multiple arguments\nlog(chalk.blue('Hello', 'World!', 'Foo', 'bar', 'biz', 'baz'));\n\n// Nest styles\nlog(chalk.red('Hello', chalk.underline.bgBlue('world') + '!'));\n\n// Nest styles of the same type even (color, underline, background)\nlog(chalk.green(\n\t'I am a green line ' +\n\tchalk.blue.underline.bold('with a blue substring') +\n\t' that becomes green again!'\n));\n\n// ES2015 template literal\nlog(`\nCPU: ${chalk.red('90%')}\nRAM: ${chalk.green('40%')}\nDISK: ${chalk.yellow('70%')}\n`);\n\n// ES2015 tagged template literal\nlog(chalk`\nCPU: {red ${cpu.totalPercent}%}\nRAM: {green ${ram.used / ram.total * 100}%}\nDISK: {rgb(255,131,0) ${disk.used / disk.total * 100}%}\n`);\n\n// Use RGB colors in terminal emulators that support it.\nlog(chalk.keyword('orange')('Yay for orange colored text!'));\nlog(chalk.rgb(123, 45, 67).underline('Underlined reddish color'));\nlog(chalk.hex('#DEADED').bold('Bold gray!'));\n```\n\nEasily define your own themes:\n\n```js\nconst chalk = require('chalk');\n\nconst error = chalk.bold.red;\nconst warning = chalk.keyword('orange');\n\nconsole.log(error('Error!'));\nconsole.log(warning('Warning!'));\n```\n\nTake advantage of console.log [string substitution](https://nodejs.org/docs/latest/api/console.html#console_console_log_data_args):\n\n```js\nconst name = 'Sindre';\nconsole.log(chalk.green('Hello %s'), name);\n//=> 'Hello Sindre'\n```\n\n\n## API\n\n### chalk.`<style>[.<style>...](string, [string...])`\n\nExample: `chalk.red.bold.underline('Hello', 'world');`\n\nChain [styles](#styles) and call the last one as a method with a string argument. Order doesn't matter, and later styles take precedent in case of a conflict. This simply means that `chalk.red.yellow.green` is equivalent to `chalk.green`.\n\nMultiple arguments will be separated by space.\n\n### chalk.enabled\n\nColor support is automatically detected, as is the level (see `chalk.level`). However, if you'd like to simply enable/disable Chalk, you can do so via the `.enabled` property.\n\nChalk is enabled by default unless expicitly disabled via the constructor or `chalk.level` is `0`.\n\nIf you need to change this in a reusable module, create a new instance:\n\n```js\nconst ctx = new chalk.constructor({enabled: false});\n```\n\n### chalk.level\n\nColor support is automatically detected, but you can override it by setting the `level` property. You should however only do this in your own code as it applies globally to all Chalk consumers.\n\nIf you need to change this in a reusable module, create a new instance:\n\n```js\nconst ctx = new chalk.constructor({level: 0});\n```\n\nLevels are as follows:\n\n0. All colors disabled\n1. Basic color support (16 colors)\n2. 256 color support\n3. Truecolor support (16 million colors)\n\n### chalk.supportsColor\n\nDetect whether the terminal [supports color](https://github.com/chalk/supports-color). Used internally and handled for you, but exposed for convenience.\n\nCan be overridden by the user with the flags `--color` and `--no-color`. For situations where using `--color` is not possible, add the environment variable `FORCE_COLOR=1` to forcefully enable color or `FORCE_COLOR=0` to forcefully disable. The use of `FORCE_COLOR` overrides all other color support checks.\n\nExplicit 256/Truecolor mode can be enabled using the `--color=256` and `--color=16m` flags, respectively.\n\n\n## Styles\n\n### Modifiers\n\n- `reset`\n- `bold`\n- `dim`\n- `italic` *(Not widely supported)*\n- `underline`\n- `inverse`\n- `hidden`\n- `strikethrough` *(Not widely supported)*\n\n### Colors\n\n- `black`\n- `red`\n- `green`\n- `yellow`\n- `blue` *(On Windows the bright version is used since normal blue is illegible)*\n- `magenta`\n- `cyan`\n- `white`\n- `gray` (\"bright black\")\n- `redBright`\n- `greenBright`\n- `yellowBright`\n- `blueBright`\n- `magentaBright`\n- `cyanBright`\n- `whiteBright`\n\n### Background colors\n\n- `bgBlack`\n- `bgRed`\n- `bgGreen`\n- `bgYellow`\n- `bgBlue`\n- `bgMagenta`\n- `bgCyan`\n- `bgWhite`\n- `bgBlackBright`\n- `bgRedBright`\n- `bgGreenBright`\n- `bgYellowBright`\n- `bgBlueBright`\n- `bgMagentaBright`\n- `bgCyanBright`\n- `bgWhiteBright`\n\n\n## Tagged template literal\n\nChalk can be used as a [tagged template literal](http://exploringjs.com/es6/ch_template-literals.html#_tagged-template-literals).\n\n```js\nconst chalk = require('chalk');\n\nconst miles = 18;\nconst calculateFeet = miles => miles * 5280;\n\nconsole.log(chalk`\n  There are {bold 5280 feet} in a mile.\n  In {bold ${miles} miles}, there are {green.bold ${calculateFeet(miles)} feet}.\n`);\n```\n\nBlocks are delimited by an opening curly brace (`{`), a style, some content, and a closing curly brace (`}`).\n\nTemplate styles are chained exactly like normal Chalk styles. The following two statements are equivalent:\n\n```js\nconsole.log(chalk.bold.rgb(10, 100, 200)('Hello!'));\nconsole.log(chalk`{bold.rgb(10,100,200) Hello!}`);\n```\n\nNote that function styles (`rgb()`, `hsl()`, `keyword()`, etc.) may not contain spaces between parameters.\n\nAll interpolated values (`` chalk`${foo}` ``) are converted to strings via the `.toString()` method. All curly braces (`{` and `}`) in interpolated value strings are escaped.\n\n\n## 256 and Truecolor color support\n\nChalk supports 256 colors and [Truecolor](https://gist.github.com/XVilka/8346728) (16 million colors) on supported terminal apps.\n\nColors are downsampled from 16 million RGB values to an ANSI color format that is supported by the terminal emulator (or by specifying `{level: n}` as a Chalk option). For example, Chalk configured to run at level 1 (basic color support) will downsample an RGB value of #FF0000 (red) to 31 (ANSI escape for red).\n\nExamples:\n\n- `chalk.hex('#DEADED').underline('Hello, world!')`\n- `chalk.keyword('orange')('Some orange text')`\n- `chalk.rgb(15, 100, 204).inverse('Hello!')`\n\nBackground versions of these models are prefixed with `bg` and the first level of the module capitalized (e.g. `keyword` for foreground colors and `bgKeyword` for background colors).\n\n- `chalk.bgHex('#DEADED').underline('Hello, world!')`\n- `chalk.bgKeyword('orange')('Some orange text')`\n- `chalk.bgRgb(15, 100, 204).inverse('Hello!')`\n\nThe following color models can be used:\n\n- [`rgb`](https://en.wikipedia.org/wiki/RGB_color_model) - Example: `chalk.rgb(255, 136, 0).bold('Orange!')`\n- [`hex`](https://en.wikipedia.org/wiki/Web_colors#Hex_triplet) - Example: `chalk.hex('#FF8800').bold('Orange!')`\n- [`keyword`](https://www.w3.org/wiki/CSS/Properties/color/keywords) (CSS keywords) - Example: `chalk.keyword('orange').bold('Orange!')`\n- [`hsl`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsl(32, 100, 50).bold('Orange!')`\n- [`hsv`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsl(32, 1, 1).bold('Orange!')`\n- [`hwb`](https://en.wikipedia.org/wiki/HWB_color_model)  - Example: `chalk.hsl(32, 0, 50).bold('Orange!')`\n- `ansi16`\n- `ansi256`\n\n\n## Windows\n\nIf you're on Windows, do yourself a favor and use [`cmder`](http://cmder.net/) instead of `cmd.exe`.\n\n\n## Origin story\n\n[colors.js](https://github.com/Marak/colors.js) used to be the most popular string styling module, but it has serious deficiencies like extending `String.prototype` which causes all kinds of [problems](https://github.com/yeoman/yo/issues/68) and the package is unmaintained. Although there are other packages, they either do too much or not enough. Chalk is a clean and focused alternative.\n\n\n## Related\n\n- [chalk-cli](https://github.com/chalk/chalk-cli) - CLI for this module\n- [ansi-styles](https://github.com/chalk/ansi-styles) - ANSI escape codes for styling strings in the terminal\n- [supports-color](https://github.com/chalk/supports-color) - Detect whether a terminal supports color\n- [strip-ansi](https://github.com/chalk/strip-ansi) - Strip ANSI escape codes\n- [has-ansi](https://github.com/chalk/has-ansi) - Check if a string has ANSI escape codes\n- [ansi-regex](https://github.com/chalk/ansi-regex) - Regular expression for matching ANSI escape codes\n- [wrap-ansi](https://github.com/chalk/wrap-ansi) - Wordwrap a string with ANSI escape codes\n- [slice-ansi](https://github.com/chalk/slice-ansi) - Slice a string with ANSI escape codes\n- [color-convert](https://github.com/qix-/color-convert) - Converts colors between different models\n- [chalk-animation](https://github.com/bokub/chalk-animation) - Animate strings in the terminal\n- [gradient-string](https://github.com/bokub/gradient-string) - Apply color gradients to strings\n\n\n## Maintainers\n\n- [Sindre Sorhus](https://github.com/sindresorhus)\n- [Josh Junon](https://github.com/qix-)\n\n\n## License\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/chalk/chalk.git"},"users":{"passy":true,"michaelsbradleyjr":true,"jamescostian":true,"mahnunchik":true,"silverwind":true,"hemanth":true,"jonkemp":true,"manishrc":true,"spenceralger":true,"jasonwbsg":true,"inhji":true,"tengisb":true,"forbeslindesay":true,"rickbergfalk":true,"sanusart":true,"esundahl":true,"lensi":true,"gabeio":true,"serdar2nc":true,"nak2k":true,"tunnckocore":true,"mklabs":true,"jimnox":true,"toddtreece":true,"humantriangle":true,"bengarrett":true,"owaz":true,"fyockm":true,"tiger2wander":true,"solodu":true,"kahboom":true,"old9":true,"binnng":true,"jbnicolai":true,"thibauts":true,"romelyus":true,"youxiachai":true,"csbun":true,"alnafie":true,"dukewan":true,"sunnylost":true,"kikobeats":true,"richardleggett":true,"furzeface":true,"icaliman":true,"brianchung808":true,"dasilvacontin":true,"inderdeep":true,"zlatip":true,"fill":true,"geekforbrains":true,"t1st3":true,"jits":true,"tcauduro":true,"evanlovely":true,"karlas":true,"leodutra":true,"shidhincr":true,"kmck":true,"tbremer":true,"stursby":true,"piecioshka":true,"thebespokepixel":true,"subfuzion":true,"paulomcnally":true,"qubyte":true,"ali1k":true,"strathausen":true,"mohsen":true,"danestuckel":true,"bitfed":true,"oakley349":true,"abeldu":true,"jclem":true,"moimikey":true,"ivangaravito":true,"lewisbrown":true,"gdbtek":true,"taber":true,"pedroparra":true,"podviaznikov":true,"henrytseng":true,"shriek":true,"davidchase":true,"masonwan":true,"growlybear":true,"volkanongun":true,"restuta":true,"wenbing":true,"dr-benton":true,"scotttesler":true,"chrisdevwords":true,"lucasmciruzzi":true,"frknbasaran":true,"abg":true,"nguru":true,"dlpowless":true,"aegypius":true,"sametsisartenep":true,"kenlimmj":true,"amio":true,"brubrant":true,"alanshaw":true,"mdemo":true,"saidgeek":true,"ubenzer":true,"nadimix":true,"kikar":true,"exromany":true,"drdanryan":true,"stefanb":true,"guumaster":true,"logeshpaul":true,"marco.jahn":true,"drew.brokke":true,"kappuccino":true,"cedx":true,"rchanaud":true,"jamlen":true,"theodor.lindekaer":true,"chbrown":true,"sahilsk":true,"nfd":true,"nexflo":true,"dudley":true,"seanjh":true,"vitre":true,"ctd1500":true,"jackvial":true,"blackoperat":true,"limingv5":true,"alexboorman":true,"phoward8020":true,"phydo":true,"j3kz":true,"subchen":true,"simplyianm":true,"axelav":true,"nicolasmccurdy":true,"fredev":true,"rbartoli":true,"jerkovicl":true,"jlertle":true,"itonyyo":true,"croogie":true,"mastayoda":true,"arnold-almeida":true,"yashprit":true,"modao":true,"ginof":true,"ericwbailey":true,"nackjicholson":true,"jasonnic":true,"prochafilho":true,"leonardodavinci":true,"wangnan0610":true,"openam":true,"makediff":true,"qqqppp9998":true,"micahjonas":true,"mjwilliams":true,"sua":true,"jasoncmcg":true,"jcottam":true,"xavierharrell":true,"chriscalo":true,"semencov":true,"l3au":true,"wenjul":true,"rdcl":true,"ddffx":true,"solygen":true,"smd4":true,"battlemidget":true,"rbecheras":true,"justintormey":true,"glebec":true,"codeshrew":true,"jonatasnona":true,"andr":true,"pigram":true,"narven":true,"vampirkod":true,"cestrensem":true,"zhen":true,"sewillia":true,"gochomugo":true,"burl.bn":true,"anhulife":true,"icirellik":true,"bpatel":true,"pramodht":true,"goblindegook":true,"andriecool":true,"akiva":true,"sunny.zhouy":true,"ocd_lionel":true,"brandonb927":true,"karlbateman":true,"rizowski":true,"mysticatea":true,"noyobo":true,"andi-oxidant":true,"nasser-torabzade":true,"curcuz":true,"kphillycat":true,"jason0518":true,"mjurincic":true,"vyder":true,"isik":true,"markthethomas":true,"dbck":true,"chrishonniball":true,"drossman":true,"karthickt":true,"nice_body":true,"bernardhamann":true,"uniquevn":true,"godion":true,"santihbc":true,"frenchbread":true,"jessaustin":true,"jarrodhroberson":true,"dotnil":true,"oleynikd":true,"sasquatch":true,"avdons":true,"demoive":true,"vishwasc":true,"sixertoy":true,"majgis":true,"goodseller":true,"codeprowong":true,"jovenbarola":true,"arnoldstoba":true,"trquoccuong":true,"prometheas":true,"nketchum":true,"edwin_estrada":true,"jyounce":true,"sammyteahan":true,"xgheaven":true,"maxime1992":true,"markstos":true,"evan2x":true,"krabello":true,"kparkov":true,"tjfwalker":true,"jonnymaceachern":true,"macmladen":true,"glab":true,"alectic":true,"kungkk":true,"voyga":true,"iwaffles":true,"srbdev":true,"wkaifang":true,"lekkas":true,"eserozvataf":true,"kobleistvan":true,"ftornik":true,"krocon":true,"nalindak":true,"aurium":true,"buzuli":true,"gamr":true,"chinaqstar":true,"andrewtlove":true,"miguelprovencio":true,"dbsweets":true,"pandao":true,"chiefy":true,"kreshikhin":true,"leonardorb":true,"unitetheclans":true,"gamingcoder":true,"akic4op4":true,"antanst":true,"josejaguirre":true,"indooorsman":true,"mattthewcbelanger":true,"tstringer":true,"junjiansyu":true,"kikna":true,"ziflex":true,"sadsenpai":true,"kleintobe":true,"bapinney":true,"tcrowe":true,"nicocube":true,"cyandev":true,"gvn":true,"vwal":true,"popc0rn":true,"silentcloud":true,"richardcfelix":true,"arkanciscan":true,"guananddu":true,"scaffrey":true,"bojand":true,"jesusgoku":true,"a3.ivanenko":true,"piixiiees":true,"rhaynel":true,"djamseed":true,"jbob":true,"starfox64":true,"dyaa":true,"rlgomes":true,"adrien.d":true,"redmonkeydf":true,"justinliao":true,"theamazingfedex":true,"ahsanshafiq":true,"powellmedia":true,"ragex1337":true,"db6edr":true,"lijinghust":true,"behrangsa":true,"dexteryy":true,"fortis":true,"fistynuts":true,"gillstrom":true,"qqcome110":true,"yrocq":true,"kontrax":true,"qddegtya":true,"zguillez":true,"hibrahimsafak":true,"fassetar":true,"hugojosefson":true,"demod":true,"dannynemer":true,"kekdude":true,"eveningkid":true,"codeandcats":true,"derflatulator":true,"cmdaniels":true,"ristostevcev":true,"genediazjr":true,"monjer":true,"prestorondo":true,"spywhere":true,"barenko":true,"raphaelchaib":true,"pauljmartinez":true,"ezodude":true,"arttse":true,"d9k":true,"damianopetrungaro":true,"dralc":true,"zoxon":true,"viz":true,"pirxpilot":true,"artjacob":true,"klombomb":true,"leizongmin":true,"shan":true,"mygoare":true,"troels.trvo.dk":true,"hypnoglow":true,"shaddyhm":true,"hemstreet":true,"echaouchna":true,"mseminatore":true,"jasonwang1888":true,"illuminator":true,"zhouanbo":true,"ngpixel":true,"sebastian1118":true,"rnbwd":true,"slurm":true,"shenbin":true,"hitesh":true,"koalaylj":true,"rocksynth":true,"carloshpds":true,"erickeno":true,"citguy":true,"princetoad":true,"ctesniere":true,"bsara":true,"heyimeugene":true,"wfalkwallace":true,"fabiodr":true,"binq":true,"syaning":true,"ddkothari":true,"m80126colin":true,"ifeature":true,"boto":true,"chinmay2893":true,"antoinelnr":true,"davidnyhuis":true,"fnouama":true,"coolhanddev":true,"aquafadas":true,"flozz":true,"stoneren":true,"vlados":true,"hmsk":true,"pwn":true,"gindis":true,"ivanempire":true,"nogirev":true,"qisong":true,"cultivatedops":true,"abuelwafa":true,"taskone":true,"brpaz":true,"liu946":true,"behumble":true,"muroc":true,"brightchen":true,"masiorama":true,"minghe":true,"leejefon":true,"backnight":true,"studi11":true,"jolg42":true,"djk":true,"abdus":true,"fengmiaosen":true,"ajduke":true,"iori20091101":true,"dracochou":true,"theaklair":true,"razr9":true,"slints":true,"c_ogoo":true,"manikantag":true,"nohomey":true,"gor0n":true,"xdream86":true,"akarem":true,"sqrtthree":true,"ymk":true,"belirafon":true,"robba.jt":true,"conzi":true,"dd-dxq":true,"schwartzman":true,"alex-the-dev":true,"largepuma":true,"clementoh":true,"ramzesucr":true,"rpnna":true,"feya":true,"frissdiegurke":true,"cy476571":true,"shakakira":true,"shanewholloway":true,"scottfreecode":true,"soenkekluth":true,"morewry":true,"myterminal":true,"brandonmowat":true,"mhaidarh":true,"iwasawafag":true,"ptallen63":true,"tmurngon":true,"robotomize":true,"meetravi":true,"luukmoret":true,"jysun":true,"swapnil_mishra":true,"eijs":true,"scronide":true,"brainmurder":true,"yangtze":true,"ninozhang":true,"magicmind":true,"froguard":true,"cbeulke":true,"dzhou777":true,"wisecolt":true,"sushiifox":true,"hexcola":true,"knoja4":true,"lfilipowicz":true,"praxiq":true,"kiandrajayne":true,"federico-garcia":true,"danyadsmith":true,"davequick":true,"harumambur":true,"jsmootiv":true,"werninator":true,"egantz":true,"kprasha":true,"mgebundy":true,"dosevader":true,"usingthesystem":true,"xtx1130":true,"rylan_yan":true,"ierceg":true,"rangzf":true,"smokinhuzi":true,"ferchoriverar":true,"crashtheuniverse":true,"bobxuyang":true,"michalskuza":true,"ealen":true,"suissa":true,"joaquin.briceno":true,"shangsinian":true,"django_wong":true,"ahmetertem":true,"alexandru.vasile":true,"avantassel":true,"tangweikun":true,"edwingeng":true,"nanxing":true,"azaritech":true,"timwzou":true,"igorsetsfire":true,"aamnah":true,"devxleo":true,"yujiikebata":true,"saoskia":true,"aidenzou":true,"seangenabe":true,"jondotsoy":true,"anoubis":true,"tsxuehu":true,"simoyw":true,"azevedo":true,"landy2014":true,"3creatives":true,"iuykza":true,"franksansc":true,"shuoshubao":true,"necanicum":true,"fintanak":true,"colleowino":true,"giussa_dan":true,"dpjayasekara":true,"pr-anoop":true,"kodekracker":true,"devnka":true,"ejmason":true,"mrzmmr":true,"jtfu":true,"xyyjk":true,"shiva127":true,"yfyhsoft":true,"axelrindle":true,"zeroknight":true,"oleg_tsyba":true,"zhizhunbao995":true,"thegreatrazz":true,"pmbenjamin":true,"allenmoore":true,"fantasy":true,"amdsouza92":true,"gberto":true,"xueboren":true,"alphatr":true,"shaomingquan":true,"jonathanbergson":true,"rocket0191":true,"danielknaust":true,"shaunieb":true,"junos":true,"xlaoyu":true,"alimaster":true,"chinjon":true,"tazjel":true,"ehrig":true,"icodeforcookies":true,"sonhuytran":true,"angrykoala":true,"anpdx":true,"andygreenegrass":true,"lacodda":true,"gableroux":true,"bluelovers":true,"stone_breaker":true,"charlietango592":true,"omegga":true,"chinawolf_wyp":true,"adrienhobbs":true,"pnolasco":true,"xiaoqiang.yang":true,"alek-s":true,"bvaccc":true,"marinru":true,"hugovila":true,"leapm":true,"oboochin":true,"l0gin":true,"joinjoohny":true,"kurozero":true,"ryanwarsaw":true,"insomniaqc":true,"guioconnor":true,"iceriver2":true,"yorts52":true,"heartnett":true,"jakedalus":true,"deyvisonsouto":true,"dg1an3":true,"modood":true,"gavinning":true,"alanerzhao":true,"balazserdos":true,"archcorsair":true,"sopov":true,"flftfqwxf":true,"levmast":true,"yl2014":true,"kaashin":true,"hehehai":true,"walexstevens":true,"hisokader":true,"lourenzo":true,"yitzchak":true,"sgaim":true,"saadbinsaeed":true,"pddivine":true,"subinvarghesein":true,"fabioper":true,"tebb":true,"bryan.ygf":true,"bashkernel":true,"travm":true,"eseath":true,"thomasmeadows":true,"thetwosents":true,"deubaka":true,"yinfxs":true,"brentlintner":true,"lorn":true,"someok":true,"gavatron":true,"duartemendes":true,"blund":true,"dkimot":true,"kakaman":true,"domjtalbot":true,"manojkhannakm":true,"lagora":true,"wmcmurray":true,"bianlongting":true,"puranjayjain":true,"altus":true,"liangtongzhuo":true,"jamesallured":true,"ljmf00":true,"sprying":true,"madsummer":true,"partsunknown":true,"zhbyak47":true,"logol":true,"ruzzll":true,"krzych93":true,"sahlzen":true,"jruif":true,"karzanosman984":true,"marianoviola":true,"craigpatten":true,"patrickkraaij":true,"bcoe":true,"mlcdf":true,"usex":true,"davidazullo":true,"adriasb":true,"ekmpls":true,"ericteng177":true,"zousandian":true,"lukvonstrom":true,"gracelee":true,"thangakumar":true,"neilor":true,"marcfiedler":true,"azz":true,"nguyenmanhdat2903":true,"letecitanjir":true,"morsellif":true,"tosbodes":true,"yikuo":true,"peter.forgacs":true,"behnameghorbani":true,"abdullahceylan":true,"hehaiyang":true,"majkel":true,"russleyshaw":true,"d-band":true,"suryasaripalli":true,"lvivier":true,"emircanok":true,"ldq-first":true,"edosrecki":true,"lusai":true,"archibinario":true,"isayme":true,"cocorax":true,"faraoman":true,"susuaung":true,"npm-packages":true},"bugs":{"url":"https://github.com/chalk/chalk/issues"},"license":"MIT","versions":{"0.1.0":{"name":"chalk","version":"0.1.0","description":"Terminal string styling done right","keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"homepage":"https://github.com/sindresorhus/chalk","bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"license":"MIT","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"files":["chalk.js"],"main":"chalk","repository":{"type":"git","url":"git://github.com/sindresorhus/chalk.git"},"scripts":{"test":"mocha"},"dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.1.0"},"devDependencies":{"mocha":"~1.12.0"},"engines":{"node":">=0.8.0"},"_id":"chalk@0.1.0","dist":{"shasum":"69afbee2ffab5e0db239450767a6125cbea50fa2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-0.1.0.tgz"},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.1.1":{"name":"chalk","version":"0.1.1","description":"Terminal string styling done right","keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"homepage":"https://github.com/sindresorhus/chalk","bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"license":"MIT","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"files":["chalk.js"],"main":"chalk","repository":{"type":"git","url":"git://github.com/sindresorhus/chalk.git"},"scripts":{"test":"mocha"},"dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.1.0"},"devDependencies":{"mocha":"~1.12.0"},"engines":{"node":">=0.8.0"},"_id":"chalk@0.1.1","dist":{"shasum":"fe6d90ae2c270424720c87ed92d36490b7d36ea0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-0.1.1.tgz"},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.2.0":{"name":"chalk","version":"0.2.0","description":"Terminal string styling done right","keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"homepage":"https://github.com/sindresorhus/chalk","bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"license":"MIT","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"files":["chalk.js"],"main":"chalk","repository":{"type":"git","url":"git://github.com/sindresorhus/chalk.git"},"scripts":{"test":"mocha"},"dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.2.0"},"devDependencies":{"mocha":"~1.12.0"},"engines":{"node":">=0.8.0"},"_id":"chalk@0.2.0","dist":{"shasum":"47270e80edce0e219911af65479d17db525ff5db","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-0.2.0.tgz"},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.2.1":{"name":"chalk","version":"0.2.1","description":"Terminal string styling done right","keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"homepage":"https://github.com/sindresorhus/chalk","bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"license":"MIT","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"files":["chalk.js"],"main":"chalk","repository":{"type":"git","url":"git://github.com/sindresorhus/chalk.git"},"scripts":{"test":"mocha"},"dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.2.0"},"devDependencies":{"mocha":"~1.12.0"},"engines":{"node":">=0.8.0"},"_id":"chalk@0.2.1","dist":{"shasum":"7613e1575145b21386483f7f485aa5ffa8cbd10c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-0.2.1.tgz"},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.3.0":{"name":"chalk","version":"0.3.0","description":"Terminal string styling done right","keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"homepage":"https://github.com/sindresorhus/chalk","bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"license":"MIT","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"files":["chalk.js"],"main":"chalk","repository":{"type":"git","url":"git://github.com/sindresorhus/chalk.git"},"scripts":{"test":"mocha"},"dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.2.0"},"devDependencies":{"mocha":"~1.12.0"},"engines":{"node":">=0.8.0"},"_id":"chalk@0.3.0","dist":{"shasum":"1c98437737f1199ebcc1d4c48fd41b9f9c8e8f23","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-0.3.0.tgz"},"_from":".","_npmVersion":"1.3.10","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.4.0":{"name":"chalk","version":"0.4.0","description":"Terminal string styling done right. Created because the `colors` module does some really horrible things.","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/chalk"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"http://sindresorhus.com"},"engines":{"node":">=0.8.0"},"scripts":{"test":"mocha"},"files":["index.js"],"keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"has-color":"~0.1.0","ansi-styles":"~1.0.0","strip-ansi":"~0.1.0"},"devDependencies":{"mocha":"~1.x"},"bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"homepage":"https://github.com/sindresorhus/chalk","_id":"chalk@0.4.0","dist":{"shasum":"5199a3ddcd0c1efe23bc08c1b027b06176e0c64f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-0.4.0.tgz"},"_from":".","_npmVersion":"1.3.17","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"directories":{}},"0.5.0":{"name":"chalk","version":"0.5.0","description":"Terminal string styling done right. Created because the `colors` module does some really horrible things.","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/chalk"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","bench":"matcha benchmark.js"},"files":["index.js"],"keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^1.1.0","escape-string-regexp":"^1.0.0","has-ansi":"^0.1.0","strip-ansi":"^0.3.0","supports-color":"^0.2.0"},"devDependencies":{"matcha":"^0.5.0","mocha":"*"},"bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"homepage":"https://github.com/sindresorhus/chalk","_id":"chalk@0.5.0","_shasum":"375dfccbc21c0a60a8b61bc5b78f3dc2a55c212f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"375dfccbc21c0a60a8b61bc5b78f3dc2a55c212f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-0.5.0.tgz"},"directories":{}},"0.5.1":{"name":"chalk","version":"0.5.1","description":"Terminal string styling done right. Created because the `colors` module does some really horrible things.","license":"MIT","repository":{"type":"git","url":"git://github.com/sindresorhus/chalk"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"jbnicolai","email":"jappelman@xebia.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","bench":"matcha benchmark.js"},"files":["index.js"],"keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^1.1.0","escape-string-regexp":"^1.0.0","has-ansi":"^0.1.0","strip-ansi":"^0.3.0","supports-color":"^0.2.0"},"devDependencies":{"matcha":"^0.5.0","mocha":"*"},"gitHead":"994758f01293f1fdcf63282e9917cb9f2cfbdaac","bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"homepage":"https://github.com/sindresorhus/chalk","_id":"chalk@0.5.1","_shasum":"663b3a648b68b55d04690d49167aa837858f2174","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"jbnicolai","email":"jappelman@xebia.com"},"dist":{"shasum":"663b3a648b68b55d04690d49167aa837858f2174","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-0.5.1.tgz"},"directories":{}},"1.0.0":{"name":"chalk","version":"1.0.0","description":"Terminal string styling done right. Much color.","license":"MIT","repository":{"type":"git","url":"https://github.com/sindresorhus/chalk"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"jbnicolai","email":"jappelman@xebia.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","bench":"matcha benchmark.js"},"files":["index.js"],"keywords":["color","colour","colors","terminal","console","cli","string","ansi","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^2.0.1","escape-string-regexp":"^1.0.2","has-ansi":"^1.0.3","strip-ansi":"^2.0.1","supports-color":"^1.3.0"},"devDependencies":{"matcha":"^0.6.0","mocha":"*"},"gitHead":"8864d3563313ed15574a38dd5c9d5966080c46ce","bugs":{"url":"https://github.com/sindresorhus/chalk/issues"},"homepage":"https://github.com/sindresorhus/chalk","_id":"chalk@1.0.0","_shasum":"b3cf4ed0ff5397c99c75b8f679db2f52831f96dc","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"b3cf4ed0ff5397c99c75b8f679db2f52831f96dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"chalk","version":"1.1.0","description":"Terminal string styling done right. Much color.","license":"MIT","repository":{"type":"git","url":"https://github.com/chalk/chalk"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"jbnicolai","email":"jappelman@xebia.com"},{"name":"unicorn","email":"sindresorhus+unicorn@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha","bench":"matcha benchmark.js","coverage":"nyc npm test && nyc report","coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["color","colour","colors","terminal","console","cli","string","str","ansi","style","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^2.1.0","escape-string-regexp":"^1.0.2","has-ansi":"^2.0.0","strip-ansi":"^3.0.0","supports-color":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","matcha":"^0.6.0","mocha":"*","nyc":"^3.0.0","require-uncached":"^1.0.2","resolve-from":"^1.0.0","semver":"^4.3.3"},"gitHead":"e9bb6e6000b1c5d4508afabfdc85dd70f582f515","bugs":{"url":"https://github.com/chalk/chalk/issues"},"homepage":"https://github.com/chalk/chalk","_id":"chalk@1.1.0","_shasum":"09b453cec497a75520e4a60ae48214a8700e0921","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"jbnicolai","email":"jappelman@xebia.com"},"dist":{"shasum":"09b453cec497a75520e4a60ae48214a8700e0921","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"chalk","version":"1.1.1","description":"Terminal string styling done right. Much color.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/chalk/chalk.git"},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"jbnicolai","email":"jappelman@xebia.com"},{"name":"unicorn","email":"sindresorhus+unicorn@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && mocha","bench":"matcha benchmark.js","coverage":"nyc npm test && nyc report","coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["color","colour","colors","terminal","console","cli","string","str","ansi","style","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^2.1.0","escape-string-regexp":"^1.0.2","has-ansi":"^2.0.0","strip-ansi":"^3.0.0","supports-color":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","matcha":"^0.6.0","mocha":"*","nyc":"^3.0.0","require-uncached":"^1.0.2","resolve-from":"^1.0.0","semver":"^4.3.3","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"8b554e254e89c85c1fd04dcc444beeb15824e1a5","bugs":{"url":"https://github.com/chalk/chalk/issues"},"homepage":"https://github.com/chalk/chalk#readme","_id":"chalk@1.1.1","_shasum":"509afb67066e7499f7eb3535c77445772ae2d019","_from":".","_npmVersion":"2.13.5","_nodeVersion":"0.12.7","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"shasum":"509afb67066e7499f7eb3535c77445772ae2d019","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-1.1.1.tgz"},"directories":{}},"1.1.2":{"name":"chalk","version":"1.1.2","description":"Terminal string styling done right. Much color.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/chalk/chalk.git"},"maintainers":[{"name":"qix","email":"i.am.qix@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"unicorn","email":"sindresorhus+unicorn@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && mocha","bench":"matcha benchmark.js","coverage":"nyc npm test && nyc report","coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["color","colour","colors","terminal","console","cli","string","str","ansi","style","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^2.2.1","escape-string-regexp":"^1.0.2","supports-color":"^3.1.2"},"devDependencies":{"coveralls":"^2.11.2","matcha":"^0.6.0","mocha":"*","nyc":"^5.2.0","require-uncached":"^1.0.2","resolve-from":"^2.0.0","semver":"^5.1.0","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"a838948dcbf2674dd28adfbb78e791900ae741e9","bugs":{"url":"https://github.com/chalk/chalk/issues"},"homepage":"https://github.com/chalk/chalk#readme","_id":"chalk@1.1.2","_shasum":"53e9f9e7742f7edf23065c29c0219175a7869155","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.32","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"53e9f9e7742f7edf23065c29c0219175a7869155","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-1.1.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chalk-1.1.2.tgz_1459207923607_0.6091341155115515"},"deprecated":"chalk@1.1.2 introduces breaking changes. Please use 1.1.3 or above.","directories":{}},"1.1.3":{"name":"chalk","version":"1.1.3","description":"Terminal string styling done right. Much color.","license":"MIT","repository":{"type":"git","url":"git+https://github.com/chalk/chalk.git"},"maintainers":[{"name":"qix","email":"i.am.qix@gmail.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"unicorn","email":"sindresorhus+unicorn@gmail.com"}],"engines":{"node":">=0.10.0"},"scripts":{"test":"xo && mocha","bench":"matcha benchmark.js","coverage":"nyc npm test && nyc report","coveralls":"nyc npm test && nyc report --reporter=text-lcov | coveralls"},"files":["index.js"],"keywords":["color","colour","colors","terminal","console","cli","string","str","ansi","style","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^2.2.1","escape-string-regexp":"^1.0.2","has-ansi":"^2.0.0","strip-ansi":"^3.0.0","supports-color":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","matcha":"^0.6.0","mocha":"*","nyc":"^3.0.0","require-uncached":"^1.0.2","resolve-from":"^1.0.0","semver":"^4.3.3","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"0d8d8c204eb87a4038219131ad4d8369c9f59d24","bugs":{"url":"https://github.com/chalk/chalk/issues"},"homepage":"https://github.com/chalk/chalk#readme","_id":"chalk@1.1.3","_shasum":"a8115c55e4a702fe4d150abd3872822a7e09fc98","_from":".","_npmVersion":"2.14.2","_nodeVersion":"0.10.32","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"shasum":"a8115c55e4a702fe4d150abd3872822a7e09fc98","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-1.1.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/chalk-1.1.3.tgz_1459210604109_0.3892582862172276"},"directories":{}},"2.0.0":{"name":"chalk","version":"2.0.0","description":"Terminal string styling done right. Much color","license":"MIT","repository":{"type":"git","url":"git+https://github.com/chalk/chalk.git"},"engines":{"node":">=4"},"scripts":{"test":"xo && nyc mocha","bench":"matcha benchmark.js","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","templates.js"],"keywords":["color","colour","colors","terminal","console","cli","string","str","ansi","style","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"coveralls":"^2.11.2","import-fresh":"^2.0.0","matcha":"^0.7.0","mocha":"*","nyc":"^11.0.2","resolve-from":"^3.0.0","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"3fca6150e23439e783409f5c8f948f767c2ddc5a","bugs":{"url":"https://github.com/chalk/chalk/issues"},"homepage":"https://github.com/chalk/chalk#readme","_id":"chalk@2.0.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"dist":{"integrity":"sha512-7jy/5E6bVCRhLlvznnsbVPjsARuVC9HDkBjUKVaOmUrhsp6P3ExUUcW09htM7/qieRH+D2lHVpNbuYh7GjVJ0g==","shasum":"c25c5b823fedff921aa5d83da3ecb5392e84e533","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-2.0.0.tgz"},"maintainers":[{"email":"i.am.qix@gmail.com","name":"qix"},{"email":"sindresorhus+unicorn@gmail.com","name":"unicorn"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/chalk-2.0.0.tgz_1498780161964_0.21432337583974004"},"directories":{}},"2.0.1":{"name":"chalk","version":"2.0.1","description":"Terminal string styling done right. Much color","license":"MIT","repository":{"type":"git","url":"git+https://github.com/chalk/chalk.git"},"engines":{"node":">=4"},"scripts":{"test":"xo && nyc mocha","bench":"matcha benchmark.js","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","templates.js"],"keywords":["color","colour","colors","terminal","console","cli","string","str","ansi","style","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"coveralls":"^2.11.2","import-fresh":"^2.0.0","matcha":"^0.7.0","mocha":"*","nyc":"^11.0.2","resolve-from":"^3.0.0","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"5827081719944a2f903b52a88baeec1ec8581f82","bugs":{"url":"https://github.com/chalk/chalk/issues"},"homepage":"https://github.com/chalk/chalk#readme","_id":"chalk@2.0.1","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"integrity":"sha512-Mp+FXEI+FrwY/XYV45b2YD3E8i3HwnEAoFcM0qlZzq/RZ9RwWitt2Y/c7cqRAz70U7hfekqx6qNYthuKFO6K0g==","shasum":"dbec49436d2ae15f536114e76d14656cdbc0f44d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-2.0.1.tgz"},"maintainers":[{"email":"i.am.qix@gmail.com","name":"qix"},{"email":"sindresorhus+unicorn@gmail.com","name":"unicorn"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/chalk-2.0.1.tgz_1498793206623_0.8611406192649156"},"deprecated":"Please upgrade to Chalk 2.1.0 - template literals in this version (2.0.1) are quite buggy.","directories":{}},"2.1.0":{"name":"chalk","version":"2.1.0","description":"Terminal string styling done right","license":"MIT","repository":{"type":"git","url":"git+https://github.com/chalk/chalk.git"},"engines":{"node":">=4"},"scripts":{"test":"xo && nyc ava","bench":"matcha benchmark.js","coveralls":"nyc report --reporter=text-lcov | coveralls"},"files":["index.js","templates.js"],"keywords":["color","colour","colors","terminal","console","cli","string","str","ansi","style","styles","tty","formatting","rgb","256","shell","xterm","log","logging","command-line","text"],"dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"ava":"*","coveralls":"^2.11.2","execa":"^0.7.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^3.0.0","xo":"*"},"xo":{"envs":["node","mocha"]},"gitHead":"38f641a222d7ee0e607e4e5209d3931d2af1e409","bugs":{"url":"https://github.com/chalk/chalk/issues"},"homepage":"https://github.com/chalk/chalk#readme","_id":"chalk@2.1.0","_npmVersion":"5.3.0","_nodeVersion":"8.2.1","_npmUser":{"name":"qix","email":"i.am.qix@gmail.com"},"dist":{"integrity":"sha512-LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ==","shasum":"ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/chalk/-/chalk-2.1.0.tgz"},"maintainers":[{"email":"i.am.qix@gmail.com","name":"qix"},{"email":"sindresorhus+unicorn@gmail.com","name":"unicorn"},{"email":"sindresorhus@gmail.com","name":"sindresorhus"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/chalk-2.1.0.tgz_1502078203099_0.6595528507605195"},"directories":{}}},"name":"chalk","time":{"modified":"2017-08-13T22:22:22.401Z","created":"2013-08-03T00:21:56.318Z","0.1.0":"2013-08-03T00:21:59.499Z","0.1.1":"2013-08-03T01:38:53.881Z","0.2.0":"2013-08-03T16:48:31.308Z","0.2.1":"2013-08-29T14:15:49.234Z","0.3.0":"2013-10-19T15:58:20.344Z","0.4.0":"2013-12-13T19:30:32.742Z","0.5.0":"2014-07-04T21:23:48.003Z","0.5.1":"2014-07-09T20:24:36.498Z","1.0.0":"2015-02-23T07:41:35.421Z","1.1.0":"2015-07-01T13:32:13.906Z","1.1.1":"2015-08-19T20:10:58.495Z","1.1.2":"2016-03-28T23:32:04.003Z","1.1.3":"2016-03-29T00:16:44.512Z","2.0.0":"2017-06-29T23:49:22.932Z","2.0.1":"2017-06-30T03:26:46.721Z","2.1.0":"2017-08-07T03:56:43.217Z"},"readmeFilename":"readme.md","homepage":"https://github.com/chalk/chalk#readme"}