{
  "name": "colorize",
  "version": "0.1.0",
  "description": "An expressive interface for ANSI colored strings and terminal output.",
  "keywords": [
    "color",
    "ansi",
    "terminal"
  ],
  "author": {
    "name": "Matt Patenaude",
    "email": "matt@mattpatenaude.com",
    "url": "http://mattpatenaude.com"
  },
  "main": "./lib/colorize.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/mattpat/colorize.git"
  },
  "readme": "Colorize\n========\nColorize is an expressive interface for ANSI colored strings and terminal output. There are already a decent handful of string-coloring modules out there, but colorize is different in the way it works.\n\nMost modules will have you use some kind of a colorizing function to return a string with the proper ANSI codes prepended. Colorize, on the other hand, lets you express the colorization inline (it's essentially a set of aliases for the original ANSI codes, plus a stack to allow nesting). So, if you wanted to color a word red, you would do something like:\n\n\tThis word is #red[red].\n\nYou can also nest colorizations:\n\n\t#bold[Welcome to the #green[Green Machine] tool!]\n\nCurrently colorize supports the standard set of 8 ANSI colors (black, red, green, yellow, blue, magenta, cyan, white), along with bold, italic, underline, blink, and a special \"reset\" keyword.\n\nUsage\n-----\nTo use colorize, install it somewhere local and use:\n\n\tvar colorize = require('./colorize');\n\nOr install it using [npm](http://npmjs.org) and use:\n\n\tvar colorize = require('colorize');\n\nYou then use `.ansify` to get a colorized string:\n\n\tvar myStr = colorize.ansify('This word is #blue[blue].');\n\nAlternatively, you can use colorize's alias to the console to output strings directly:\n\n\tvar cconsole = colorize.console;\n\tcconsole.log('A world of #magenta[pretty colors]!');\n",
  "readmeFilename": "README.md",
  "bugs": {
    "url": "https://github.com/mattpat/colorize/issues"
  },
  "_id": "colorize@0.1.0",
  "dist": {
    "shasum": "def1912ba980e080c1baec2b311e920bd0c7fc29"
  },
  "_from": "colorize@~0.1",
  "_resolved": "https://registry.npmjs.org/colorize/-/colorize-0.1.0.tgz"
}
