{"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"keywords":["ansi","terminal","colors"],"dist-tags":{"latest":"1.1.2"},"author":{"name":"Marak Squires"},"description":"get colors in your node.js console","readme":"# colors.js [![Build Status](https://travis-ci.org/Marak/colors.js.svg?branch=master)](https://travis-ci.org/Marak/colors.js)\n\n## get color and style in your node.js console\n\n![Demo](https://raw.githubusercontent.com/Marak/colors.js/master/screenshots/colors.png)\n\n## Installation\n\n    npm install colors\n\n## colors and styles!\n\n### text colors\n\n  - black\n  - red\n  - green\n  - yellow\n  - blue\n  - magenta\n  - cyan\n  - white\n  - gray\n  - grey\n\n### background colors\n\n  - bgBlack\n  - bgRed\n  - bgGreen\n  - bgYellow\n  - bgBlue\n  - bgMagenta\n  - bgCyan\n  - bgWhite\n\n### styles\n\n  - reset\n  - bold\n  - dim\n  - italic\n  - underline\n  - inverse\n  - hidden\n  - strikethrough\n\n### extras\n\n  - rainbow\n  - zebra\n  - america\n  - trap\n  - random\n\n\n## Usage\n\nBy popular demand, `colors` now ships with two types of usages!\n\nThe super nifty way\n\n```js\nvar colors = require('colors');\n\nconsole.log('hello'.green); // outputs green text\nconsole.log('i like cake and pies'.underline.red) // outputs red underlined text\nconsole.log('inverse the color'.inverse); // inverses the color\nconsole.log('OMG Rainbows!'.rainbow); // rainbow\nconsole.log('Run the trap'.trap); // Drops the bass\n\n```\n\nor a slightly less nifty way which doesn't extend `String.prototype`\n\n```js\nvar colors = require('colors/safe');\n\nconsole.log(colors.green('hello')); // outputs green text\nconsole.log(colors.red.underline('i like cake and pies')) // outputs red underlined text\nconsole.log(colors.inverse('inverse the color')); // inverses the color\nconsole.log(colors.rainbow('OMG Rainbows!')); // rainbow\nconsole.log(colors.trap('Run the trap')); // Drops the bass\n\n```\n\nI prefer the first way. Some people seem to be afraid of extending `String.prototype` and prefer the second way. \n\nIf you are writing good code you will never have an issue with the first approach. If you really don't want to touch `String.prototype`, the second usage will not touch `String` native object.\n\n## Disabling Colors\n\nTo disable colors you can pass the following arguments in the command line to your application:\n\n```bash\nnode myapp.js --no-color\n```\n\n## Console.log [string substitution](http://nodejs.org/docs/latest/api/console.html#console_console_log_data)\n\n```js\nvar name = 'Marak';\nconsole.log(colors.green('Hello %s'), name);\n// outputs -> 'Hello Marak'\n```\n\n## Custom themes\n\n### Using standard API\n\n```js\n\nvar colors = require('colors');\n\ncolors.setTheme({\n  silly: 'rainbow',\n  input: 'grey',\n  verbose: 'cyan',\n  prompt: 'grey',\n  info: 'green',\n  data: 'grey',\n  help: 'cyan',\n  warn: 'yellow',\n  debug: 'blue',\n  error: 'red'\n});\n\n// outputs red text\nconsole.log(\"this is an error\".error);\n\n// outputs yellow text\nconsole.log(\"this is a warning\".warn);\n```\n\n### Using string safe API\n\n```js\nvar colors = require('colors/safe');\n\n// set single property\nvar error = colors.red;\nerror('this is red');\n\n// set theme\ncolors.setTheme({\n  silly: 'rainbow',\n  input: 'grey',\n  verbose: 'cyan',\n  prompt: 'grey',\n  info: 'green',\n  data: 'grey',\n  help: 'cyan',\n  warn: 'yellow',\n  debug: 'blue',\n  error: 'red'\n});\n\n// outputs red text\nconsole.log(colors.error(\"this is an error\"));\n\n// outputs yellow text\nconsole.log(colors.warn(\"this is a warning\"));\n\n```\n\nYou can also combine them:\n\n```javascript\nvar colors = require('colors');\n\ncolors.setTheme({\n  custom: ['red', 'underline']\n});\n\nconsole.log('test'.custom);\n```\n\n*Protip: There is a secret undocumented style in `colors`. If you find the style you can summon him.*\n","repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"users":{"avianflu":true,"pid":true,"vasc":true,"dodo":true,"matthiasg":true,"kevinohara80":true,"blakmatrix":true,"fgribreau":true,"kennethjor":true,"divanvisagie":true,"megadrive":true,"evanlucas":true,"rwillrich":true,"dbrockman":true,"eins78":true,"maxmaximov":true,"zonetti":true,"leesei":true,"paulj":true,"cmilhench":true,"chilts":true,"moonpyk":true,"victorquinn":true,"lexa":true,"making3":true,"suziam":true,"tigefa":true,"pana":true,"spekkionu":true,"simon.turvey":true,"noopkat":true,"jonathanmelville":true,"phette23":true,"putaoshu":true,"timur.shemsedinov":true,"ettalea":true,"jacques":true,"jasonwbsg":true,"alivesay":true,"tengisb":true,"apache2046":true,"cilindrox":true,"tarcio":true,"kerry95":true,"davidwbradford":true,"funroll":true,"newblt123":true,"starak":true,"cocopas":true,"magemagic":true,"ubi":true,"andydrew":true,"morishitter":true,"dimoreira":true,"fanchangyong":true,"jimnox":true,"wentworthzheng":true,"humantriangle":true,"bengarrett":true,"chrisyboy53":true,"zeusdeux":true,"owaz":true,"shen-weizhong":true,"scriptnull":true,"chaowi":true,"seldo":true,"edalorzo":true,"afollestad":true,"davidrlee":true,"davidchase":true,"steel1990":true,"jokarlist":true,"tchey":true,"binnng":true,"dercoder":true,"dofy":true,"tjwebb":true,"vancarney":true,"mswanson1524":true,"inderdeep":true,"blakedietz":true,"fill":true,"wlfyit":true,"jits":true,"stonecypher":true,"riaanpelser":true,"karmadude":true,"formix":true,"brentonhouse":true,"rpgreen":true,"itonyyo":true,"momepukku":true,"yourhoneysky":true,"spielberg":true,"gliviu":true,"rosterloh":true,"ali1k":true,"l0n9h02n":true,"dominik.palo":true,"coachshea":true,"congcong":true,"icaliman":true,"ivangaravito":true,"mastayoda":true,"ziehlke":true,"thorsson":true,"gayan":true,"ashkyd":true,"kaiquewdev":true,"flyslow":true,"stpettersens":true,"vrfrnco":true,"jsolis":true,"trevin":true,"f124275809":true,"lazycoder":true,"aitorllj93":true,"frknbasaran":true,"wangnan0610":true,"hellocodeming":true,"sametsisartenep":true,"streamer":true,"hellgrenj":true,"haeck":true,"jcottam":true,"otaviolms":true,"mykhael":true,"mpcref":true,"iksnae":true,"r3nya":true,"kulakowka":true,"justintormey":true,"skyinlayer":true,"alejcerro":true,"hootping":true,"sexyoung1985":true,"pnevares":true,"fabianbach":true,"barenko":true,"joaocunha":true,"adammacias":true,"nicolasmccurdy":true,"semencov":true,"phoward8020":true,"j3kz":true,"michaelchance":true,"rbartoli":true,"yashprit":true,"jun01ito":true,"kankungyip":true,"cbpetersen":true,"rcastro":true,"onofremartins":true,"viztor":true,"tmcguire":true,"qqqppp9998":true,"f2enav":true,"dolymood":true,"jonatasnona":true,"sanketss84":true,"tonydieu":true,"rosshal":true,"jesusgoku":true,"ezcabrera":true,"xxronis":true,"buzuli":true,"smd4":true,"rbecheras":true,"drewnull":true,"dennisgnl":true,"shriek":true,"nukisman":true,"incendiary":true,"huacnlee":true,"cycomachead":true,"jyounce":true,"cestrensem":true,"bpatel":true,"adamkdean":true,"andriecool":true,"donvercety":true,"xgheaven":true,"amaynut":true,"variousmilkshakes":true,"avdons":true,"xiaokaike":true,"gerst20051":true,"joshuabriter":true,"temoto-kun":true,"abonventre":true,"grantgeorge":true,"aquiandres":true,"battlemidget":true,"warjiang":true,"xzycn":true,"maskedcoder":true,"bernardhamann":true,"maninbucket":true,"h0ward":true,"matiasmarani":true,"vishwasc":true,"pensierinmusica":true,"codeprowong":true,"reergymerej":true,"coleww":true,"pdedkov":true,"edwin_estrada":true,"sammyteahan":true,"lova":true,"jackvial":true,"linuxwizard":true,"wkaifang":true,"keanodejs":true,"shikloshi":true,"helsner":true,"draganhr":true,"gamr":true,"necr0":true,"panoptican":true,"leodutra":true,"temsa":true,"raisiqueira":true,"raelgor":true,"elussich":true,"pandao":true,"jonathanbergson":true,"kikna":true,"rakeshalhan":true,"dongxu":true,"josejaguirre":true,"clisun":true,"wynfrith":true,"zguillez":true,"nmccready":true,"redmonkeydf":true,"hibrahimsafak":true,"richardcfelix":true,"leahcimic":true,"cfleschhut":true,"sparkrico":true,"shushanfx":true,"kaveh.ghaboosi":true,"michaeldegroot":true,"novalu":true,"alexg53090":true,"lotfire.dev":true,"hacksalot":true,"vutran":true,"adritek":true,"prestorondo":true,"xunnamius":true,"eveningkid":true,"fistynuts":true,"bruinebeer":true,"nonemoticoner":true,"yyscamper":true,"demod":true,"egantz":true,"bjmin":true,"qddegtya":true,"onbjerg":true,"zechau":true,"garenyondem":true,"artem_m":true,"nicomf1982":true,"zaggen":true,"io2work":true,"artjacob":true,"myxvisual":true,"deneboulton":true,"52u":true,"dorianamouroux":true,"yoksel":true,"leadfast":true,"benpptung":true,"ajduke":true,"tht13":true,"darkwark":true,"jakedetels":true,"potnox":true,"jonoco":true,"nescio":true,"guoer":true,"ifeature":true,"zithan":true,"micromax720":true,"holly":true,"qlqllu":true,"schwartzman":true,"nsmithau":true,"baiang":true,"pablo.tavarez":true,"sobralia":true,"heyimeugene":true,"andrewtimney":true,"blackkoi0606":true,"kagawa":true,"arielfr":true,"pmasa":true,"kirkhammetz":true,"hongbo-miao":true,"theoryofnekomata":true,"scytalezero":true,"windqyoung":true,"mark24code":true,"x0000ff":true,"surfacew":true,"edision":true,"hingsir":true,"wezhang":true,"studi11":true,"zwxajh":true,"ghostcode521":true,"antixrist":true,"jungae1000":true,"apopek":true,"aprilchen":true,"sfabrizio":true,"happywang":true,"szymex73":true,"peunzhang":true,"supnate":true,"chrisx":true,"blade254353074":true,"freaktechnik":true,"shakakira":true,"neo1":true,"scottfreecode":true,"stone_breaker":true,"boogy":true,"knoja4":true,"tmurngon":true,"degouville":true,"sqrtthree":true,"mikestaub":true,"meetravi":true,"ognjen.jevremovic":true,"azevedo":true,"morogasper":true,"erniep888":true,"vaju":true,"xrush":true,"esenor":true,"ahvonenj":true,"tedyhy":true,"froguard":true,"dmandola11":true,"iori20091101":true,"classicoldsong":true,"rylan_yan":true,"filipesoccol":true,"rangzf":true,"ferchoriverar":true,"qk4":true,"vur":true,"anoubis":true,"aidenzou":true,"tamer1an":true,"mseminatore":true,"joaquin.briceno":true,"yuch4n":true,"cblumer":true,"piecioshka":true,"sopepos":true,"brainpoint":true,"shrimpseaweed":true,"tin-lek":true,"chinawolf_wyp":true,"steakeye":true,"junos":true,"chrisakakay":true,"tahark":true,"zoxon":true,"jaguarj":true,"8code":true,"arsari":true,"princetoad":true,"jaxcode":true,"rocket0191":true,"playthefallen":true,"latinosoft":true,"abetomo":true,"jakedalus":true,"sfgarza":true,"shuoshubao":true,"modood":true,"alanerzhao":true,"ironclad.soul":true,"stephencorwin":true,"ys_sidson_aidson":true,"sibawite":true,"vehbiemiroglu":true,"heartnett":true,"dxdspirits":true,"maxlevs":true,"panlw":true,"ljmf00":true,"metaa":true,"ansonhorse":true,"solzimer":true,"jondar":true,"huarse":true,"jamesallured":true,"madsummer":true,"blog":true,"jiang-xuan":true,"0x9r3ydu5":true,"vb078":true,"tangweikun":true,"eirikbirkeland":true,"thangakumar":true,"hkgsherlock":true,"bifuer":true,"kodekracker":true,"rfortune":true},"bugs":{"url":"https://github.com/Marak/colors.js/issues"},"license":"MIT","versions":{"0.3.0":{"name":"colors","description":"get colors in your node.js console like what","version":"0.3.0","author":{"name":"Marak Squires"},"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"engine":["node >=0.1.90"],"main":"colors","_id":"colors@0.3.0","engines":{"node":"*"},"_nodeSupported":true,"_npmVersion":"0.2.7-2","_nodeVersion":"v0.3.1-pre","dist":{"tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-0.3.0.tgz","shasum":"c247d64d34db0ca4dc8e43f3ecd6da98d0af94e7"},"directories":{}},"0.5.0":{"name":"colors","description":"get colors in your node.js console like what","version":"0.5.0","author":{"name":"Marak Squires"},"repository":{"type":"git","url":"git://github.com/Marak/colors.js.git"},"engine":["node >=0.1.90"],"main":"colors","_id":"colors@0.5.0","engines":{"node":"*"},"_engineSupported":true,"_npmVersion":"0.3.14","_nodeVersion":"v0.5.0-pre","directories":{},"files":[""],"_defaultsLoaded":true,"dist":{"shasum":"ac3ed125fcd8ccbb939b796117bf05d5f15c3e67","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-0.5.0.tgz"}},"0.5.1":{"name":"colors","description":"get colors in your node.js console like what","version":"0.5.1","author":{"name":"Marak Squires"},"repository":{"type":"git","url":"git://github.com/Marak/colors.js.git"},"engines":{"node":">=0.1.90"},"main":"colors","_npmJsonOpts":{"file":"/Users/maraksquires/.npm/colors/0.5.1/package/package.json","wscript":false,"contributors":false,"serverjs":false},"_id":"colors@0.5.1","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.30","_nodeVersion":"v0.4.10","_defaultsLoaded":true,"dist":{"shasum":"7d0023eaeb154e8ee9fce75dcb923d0ed1667774","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-0.5.1.tgz"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"directories":{}},"0.6.0":{"name":"colors","description":"get colors in your node.js console like what","version":"0.6.0","author":{"name":"Marak Squires"},"repository":{"type":"git","url":"git://github.com/Marak/colors.js.git"},"engines":{"node":">=0.1.90"},"main":"colors","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"_id":"colors@0.6.0","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.4.12","_defaultsLoaded":true,"dist":{"shasum":"07ec10d8ac4f5a2e78f8d820e3e7832b3b463cad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-0.6.0.tgz"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"directories":{}},"0.6.0-1":{"name":"colors","description":"get colors in your node.js console like what","version":"0.6.0-1","author":{"name":"Marak Squires"},"repository":{"type":"git","url":"git://github.com/Marak/colors.js.git"},"engines":{"node":">=0.1.90"},"main":"colors","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"_id":"colors@0.6.0-1","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.4.12","_defaultsLoaded":true,"dist":{"shasum":"6dbb68ceb8bc60f2b313dcc5ce1599f06d19e67a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-0.6.0-1.tgz"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"directories":{}},"0.6.1":{"name":"colors","description":"get colors in your node.js console like what","version":"0.6.1","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"engines":{"node":">=0.1.90"},"main":"colors","_id":"colors@0.6.1","dist":{"shasum":"59c7799f6c91e0e15802980a98ed138b3c78f4e9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-0.6.1.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"directories":{}},"0.6.2":{"name":"colors","description":"get colors in your node.js console like what","version":"0.6.2","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"engines":{"node":">=0.1.90"},"main":"colors","_id":"colors@0.6.2","dist":{"shasum":"2423fe6678ac0c5dae8852e5d0e5be08c997abcc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-0.6.2.tgz"},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"directories":{}},"1.0.0":{"name":"colors","description":"get colors in your node.js console","version":"1.0.0","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"license":"MIT","scripts":{"test":"node tests/basic-test.js && node tests/safe-test.js"},"engines":{"node":">=0.1.90"},"main":"./lib/index","gitHead":"fee9d2475f03729ee6567c38be7686540b7a3cdf","_id":"colors@1.0.0","_shasum":"d907bed5e1dcbdee6a0a5533f76855c7df506580","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.11.13","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"dist":{"shasum":"d907bed5e1dcbdee6a0a5533f76855c7df506580","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-1.0.0.tgz"},"directories":{}},"1.0.1":{"name":"colors","description":"get colors in your node.js console","version":"1.0.1","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"license":"MIT","scripts":{"test":"node tests/basic-test.js && node tests/safe-test.js"},"engines":{"node":">=0.1.90"},"main":"./lib/index","gitHead":"ea942de28794b7a1a1fff0caad30c8268411e9ed","_id":"colors@1.0.1","_shasum":"3414b3ebe708dd2e0e299074af0acfda20dc7764","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.11.13","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"dist":{"shasum":"3414b3ebe708dd2e0e299074af0acfda20dc7764","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-1.0.1.tgz"},"directories":{}},"1.0.2":{"name":"colors","description":"get colors in your node.js console","version":"1.0.2","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"license":"MIT","scripts":{"test":"node tests/basic-test.js && node tests/safe-test.js"},"engines":{"node":">=0.1.90"},"main":"./lib/index","gitHead":"ac1429ddf307c218336fc02a0da818c8a6c6837f","_id":"colors@1.0.2","_shasum":"6788c0d667206b8262ec5de49dd6cc7d662b5b42","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.11.13","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"dist":{"shasum":"6788c0d667206b8262ec5de49dd6cc7d662b5b42","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-1.0.2.tgz"},"directories":{}},"1.0.3":{"name":"colors","description":"get colors in your node.js console","version":"1.0.3","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"license":"MIT","scripts":{"test":"node tests/basic-test.js && node tests/safe-test.js"},"engines":{"node":">=0.1.90"},"main":"./lib/index","gitHead":"e9e6557cc0fa26dba1a20b0d45e92de982f4047c","_id":"colors@1.0.3","_shasum":"0433f44d809680fdeb60ed260f1b0c262e82a40b","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.11.13","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"dist":{"shasum":"0433f44d809680fdeb60ed260f1b0c262e82a40b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-1.0.3.tgz"},"directories":{}},"1.1.0":{"name":"colors","description":"get colors in your node.js console","version":"1.1.0","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"license":"MIT","scripts":{"test":"node tests/basic-test.js && node tests/safe-test.js"},"engines":{"node":">=0.1.90"},"main":"lib","files":["examples","lib","LICENSE","safe.js","themes"],"gitHead":"b9ff17af7ce2548a93e34001dcb75777561cae17","_id":"colors@1.1.0","_shasum":"ea2b7dfd38a7bb631323d29b108fa78fd16dc523","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.11.13","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"dist":{"shasum":"ea2b7dfd38a7bb631323d29b108fa78fd16dc523","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"colors","description":"get colors in your node.js console","version":"1.1.1","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"license":"MIT","scripts":{"test":"node tests/basic-test.js && node tests/safe-test.js"},"engines":{"node":">=0.1.90"},"main":"lib","files":["examples","lib","LICENSE","safe.js","themes"],"gitHead":"5958f1677d827fec37275427476499d84613e4a4","_id":"colors@1.1.1","_shasum":"6fc916ea57eca2edb7aa1771f4a8c21789f79e0b","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.11.13","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"dist":{"shasum":"6fc916ea57eca2edb7aa1771f4a8c21789f79e0b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-1.1.1.tgz"},"directories":{}},"1.1.2":{"name":"colors","description":"get colors in your node.js console","version":"1.1.2","author":{"name":"Marak Squires"},"homepage":"https://github.com/Marak/colors.js","bugs":{"url":"https://github.com/Marak/colors.js/issues"},"keywords":["ansi","terminal","colors"],"repository":{"type":"git","url":"http://github.com/Marak/colors.js.git"},"license":"MIT","scripts":{"test":"node tests/basic-test.js && node tests/safe-test.js"},"engines":{"node":">=0.1.90"},"main":"lib","files":["examples","lib","LICENSE","safe.js","themes"],"gitHead":"8bf2ad9fa695dcb30b7e9fd83691b139fd6655c4","_id":"colors@1.1.2","_shasum":"168a4701756b6a7f51a12ce0c97bfa28c084ed63","_from":".","_npmVersion":"2.1.8","_nodeVersion":"0.11.13","_npmUser":{"name":"marak","email":"marak.squires@gmail.com"},"maintainers":[{"name":"marak","email":"marak.squires@gmail.com"}],"dist":{"shasum":"168a4701756b6a7f51a12ce0c97bfa28c084ed63","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/colors/-/colors-1.1.2.tgz"},"directories":{}}},"name":"colors","time":{"modified":"2017-08-12T15:14:48.778Z","created":"2011-03-15T10:12:18.245Z","0.3.0":"2011-03-15T10:12:18.245Z","0.5.0":"2011-03-15T10:12:18.245Z","0.5.1":"2011-09-25T13:04:44.328Z","0.6.0":"2011-12-09T11:32:57.649Z","0.6.0-1":"2011-12-09T12:35:05.501Z","0.6.1":"2013-07-26T05:49:48.513Z","0.6.2":"2013-08-21T23:14:55.906Z","1.0.0":"2014-10-01T11:29:39.467Z","1.0.1":"2014-10-01T16:07:39.787Z","1.0.2":"2014-10-02T19:55:43.478Z","1.0.3":"2014-10-09T10:03:24.510Z","1.1.0":"2015-04-29T07:15:49.571Z","1.1.1":"2015-06-17T12:52:33.681Z","1.1.2":"2015-06-17T13:03:00.583Z"},"readmeFilename":"ReadMe.md","homepage":"https://github.com/Marak/colors.js"}