From c8e08f5e7939909b968a847334d7ffd721cf3f8c Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Mon, 25 May 2015 13:18:05 +0200 Subject: [PATCH] minor tweaks --- .gitignore | 2 +- package.json | 6 ++++-- readme.md | 7 ++++--- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 16628a8..1fd04da 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ node_modules coverage -nyc_output +.nyc_output diff --git a/package.json b/package.json index 3d0b3e7..5f1f563 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "license": "MIT", "repository": "sindresorhus/chalk", "maintainers": [ - "Sindre Sorhus (http://sindresorhus.com)", - "Joshua Appelman (http://jbnicolai.com)" + "Sindre Sorhus (sindresorhus.com)", + "Joshua Appelman (jbnicolai.com)" ], "engines": { "node": ">=0.10.0" @@ -28,7 +28,9 @@ "console", "cli", "string", + "str", "ansi", + "style", "styles", "tty", "formatting", diff --git a/readme.md b/readme.md index 75db54c..9862b3c 100644 --- a/readme.md +++ b/readme.md @@ -7,15 +7,16 @@ > Terminal string styling done right -[![Build Status](https://travis-ci.org/sindresorhus/chalk.svg?branch=master)](https://travis-ci.org/sindresorhus/chalk) [![](http://img.shields.io/badge/unicorn-approved-ff69b4.svg)](https://www.youtube.com/watch?v=9auOCbH5Ns4) -[![Coverage Status](https://coveralls.io/repos/sindresorhus/chalk/badge.svg?branch=)](https://coveralls.io/r/sindresorhus/chalk?branch=) +[![Build Status](https://travis-ci.org/sindresorhus/chalk.svg?branch=master)](https://travis-ci.org/sindresorhus/chalk) +[![Coverage Status](https://coveralls.io/repos/sindresorhus/chalk/badge.svg?branch=master)](https://coveralls.io/r/sindresorhus/chalk?branch=master) +[![](http://img.shields.io/badge/unicorn-approved-ff69b4.svg)](https://www.youtube.com/watch?v=9auOCbH5Ns4) [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). Although there are other ones, they either do too much or not enough. **Chalk is a clean and focused alternative.** -![screenshot](https://github.com/sindresorhus/ansi-styles/raw/master/screenshot.png) +![](https://github.com/sindresorhus/ansi-styles/raw/master/screenshot.png) ## Why