{"versions":{"0.1.2":{"name":"console-style","version":"0.1.2","description":"Colour and style your console output","keywords":["ansi","terminal","colors"],"license":"MIT","author":{"name":"Daniel Lewis"},"repository":{"type":"git","url":"git+https://github.com/mrdaniellewis/node-console-style.git"},"scripts":{"test":"node test"},"gitHead":"0f79ea9939cc2076a364e600a891f4f14075a6ba","bugs":{"url":"https://github.com/mrdaniellewis/node-console-style/issues"},"homepage":"https://github.com/mrdaniellewis/node-console-style#readme","_id":"console-style@0.1.2","_shasum":"ec49e37808cbaa5d1a64f38e2173fca098d46577","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.1","_npmUser":{"name":"anonymous","email":"npm@mrdaniellewis.co.uk"},"maintainers":[{"name":"anonymous","email":"npm@mrdaniellewis.co.uk"}],"dist":{"shasum":"ec49e37808cbaa5d1a64f38e2173fca098d46577","size":2825,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/console-style/-/console-style-0.1.2.tgz","integrity":"sha512-1wknIqjW/0rr6CodqPo8qjYTpVpy/7L6yKBMr5hGbLoMqMJWySL1U1fmEsNaNU7rqZH+p6ylIvh84R1/559zsA=="},"directories":{},"publish_time":1434314762871,"_hasShrinkwrap":false,"_cnpm_publish_time":1434314762871,"_cnpmcore_publish_time":"2021-12-17T19:13:54.016Z","contributors":[]},"0.1.1":{"name":"console-style","version":"0.1.1","description":"Colour and style your console output","keywords":["ansi","terminal","colors"],"license":"MIT","author":{"name":"Daniel Lewis"},"repository":{"type":"git","url":"https://github.com/mrdaniellewis/node-console-style.git"},"scripts":{"test":"node test"},"bugs":{"url":"https://github.com/mrdaniellewis/node-console-style/issues"},"homepage":"https://github.com/mrdaniellewis/node-console-style","_id":"console-style@0.1.1","_shasum":"4e9ea48692a4f6eb0c0c0a40a34eb35776493223","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"npm@mrdaniellewis.co.uk"},"maintainers":[{"name":"anonymous","email":"npm@mrdaniellewis.co.uk"}],"dist":{"shasum":"4e9ea48692a4f6eb0c0c0a40a34eb35776493223","size":2802,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/console-style/-/console-style-0.1.1.tgz","integrity":"sha512-5U/2/W2gE29BkSJpRDHRBVCXiWbUfsVS870KczrvhjOflUHp/Xrqxaa1Ox9oMi3Ccsn5q+iy1CnJSv8MyMW5bw=="},"directories":{},"publish_time":1408400124322,"_hasShrinkwrap":false,"_cnpm_publish_time":1408400124322,"_cnpmcore_publish_time":"2021-12-17T19:13:54.258Z","contributors":[]},"0.1.0":{"name":"console-style","version":"0.1.0","description":"Colour and style your console output","keywords":["ansi","terminal","colors"],"main":"./lib/console-style.js","license":"MIT","author":{"name":"Daniel Lewis"},"repository":{"type":"git","url":"https://github.com/mrdaniellewis/node-console-style"},"bugs":{"url":"https://github.com/mrdaniellewis/node-console-style/issues"},"homepage":"https://github.com/mrdaniellewis/node-console-style","_id":"console-style@0.1.0","_shasum":"cc55d468c23ee85237e27657058baddc5b4f3ffa","_from":"/Users/Zen/Documents/Code/node/node_modules/console-style","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"npm@mrdaniellewis.co.uk"},"maintainers":[{"name":"anonymous","email":"npm@mrdaniellewis.co.uk"}],"dist":{"shasum":"cc55d468c23ee85237e27657058baddc5b4f3ffa","size":2812,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/console-style/-/console-style-0.1.0.tgz","integrity":"sha512-gQIpnoH1kTJtdhke9Y6bh0figS8upRmE3yUAvf0EXYxJk4XRQdaL2rxHXfgY9Ro7dr8dqk4joh14m72L4FZoyg=="},"directories":{},"publish_time":1406326926688,"_hasShrinkwrap":false,"_cnpm_publish_time":1406326926688,"_cnpmcore_publish_time":"2021-12-17T19:13:54.454Z","contributors":[]}},"dist-tags":{"latest":"0.1.2"},"name":"console-style","time":{"created":"2022-01-27T01:21:18.377Z","modified":"2022-01-27T01:21:18.377Z","0.1.2":"2015-06-14T20:46:02.871Z","0.1.1":"2014-08-18T22:15:24.322Z","0.1.0":"2014-07-25T22:22:06.688Z"},"readme":"# Add colour to the console\n\n[![npm version](https://badge.fury.io/js/console-style.svg)](http://badge.fury.io/js/console-style)\n\nAdd colours and style to the node.js console output.\n\n## Alternatives\n\nhttps://www.npmjs.org/package/colors, but it modifies `String.prototype` and is therefore wrong. \n\n## Intallation\n\n```bash\n$ npm install console-style\n```\n## Usage\n\n```js\nvar style = require('console-style');\n\n// Output bold, underlined and red text\nconsole.log( style.bold.underline.red('Hello world') );\n```\n\nThe arguments applied to the style are passed to [`util.format`](http://nodejs.org/api/util.html#util_util_format_format).  This means objects will be inspected, and placeholders can be used.\n\n```js\n// Alternative syntax\nconsole.log( style( 'Hello world',  [ 'bold', 'underline', 'red' ] ) );\n```\n\nThis syntax does not use `util.format`.\n\n## Options\n\nSee http://en.wikipedia.org/wiki/ANSI_colors#Colors\n\n* bold\n* italic - _not widely supported_\n* underline\n* inverse\n* strikethough - _not widely supported_\n* white\n* black\n* blue\n* cyan\n* green\n* magenta\n* red\n* yellow\n* whiteBG\n* blackBG\n* blueBG\n* cyanBG\n* greenBG\n* magentaBG\n* redBG\n* yellowBG","users":{}}