chalk/package.json

53 lines
968 B
JSON
Raw Normal View History

2013-08-03 02:16:26 +02:00
{
"name": "chalk",
2013-12-13 20:30:27 +01:00
"version": "0.4.0",
2013-12-13 20:26:47 +01:00
"description": "Terminal string styling done right. Created because the `colors` module does some really horrible things.",
"license": "MIT",
"repository": "sindresorhus/chalk",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
"engines": {
2014-03-26 16:29:42 +01:00
"node": ">=0.10.0"
2013-12-13 20:26:47 +01:00
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js"
],
2013-08-03 02:16:26 +02:00
"keywords": [
"color",
"colour",
"colors",
"terminal",
"console",
"cli",
"string",
"ansi",
"styles",
"tty",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
"dependencies": {
2014-06-04 01:38:03 +02:00
"ansi-styles": "^1.1.0",
"escape-string-regexp": "^1.0.0",
2014-06-24 21:34:11 +02:00
"has-ansi": "^0.1.0",
2014-06-24 21:34:27 +02:00
"strip-ansi": "^0.3.0",
2014-06-14 03:49:42 +02:00
"supports-color": "^0.2.0"
2013-08-03 02:16:26 +02:00
},
"devDependencies": {
2014-03-26 16:29:42 +01:00
"mocha": "*"
2013-08-03 02:16:26 +02:00
}
}