forked from loopj/commonjs-ansi-color
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request loopj#10 from vBm/tweaks
Normalize and update package.json
- Loading branch information
Showing
1 changed file
with
21 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,27 @@ | ||
{ | ||
"name": "ansi-color", | ||
"description": "This module provides basic ANSI color code support, to allow you to format your console output with foreground and background colors as well as providing bold, italic and underline support.", | ||
"version": "0.2.1", | ||
"description": "This module provides basic ANSI color code support, to allow you to format your console output with foreground and background colors as well as providing bold, italic and underline support.", | ||
"author": "James Smith <[email protected]>", | ||
"keywords": ["ansi", "color", "console"], | ||
"directories": {"lib": "./lib"}, | ||
"repository": [ | ||
{ | ||
"directories": { | ||
"lib": "./lib" | ||
}, | ||
"main": "./lib/ansi-color.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/loopj/commonjs-ansi-color.git" | ||
} | ||
"url": "https://github.com/loopj/commonjs-ansi-color.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/loopj/commonjs-ansi-color/issues" | ||
}, | ||
"keywords": [ | ||
"ansi", | ||
"color", | ||
"console" | ||
], | ||
"main": "./lib/ansi-color.js" | ||
} | ||
"license": "BSD License", | ||
"contributors": [{ | ||
"name": "vBm", | ||
"email": "[email protected]" | ||
}] | ||
} |