2013-08-03 02:16:26 +02:00
|
|
|
{
|
|
|
|
|
"name": "chalk",
|
2015-02-23 14:41:32 +07:00
|
|
|
"version": "1.0.0",
|
2015-02-17 15:57:40 +07:00
|
|
|
"description": "Terminal string styling done right. Much color.",
|
2013-12-13 20:26:47 +01:00
|
|
|
"license": "MIT",
|
|
|
|
|
"repository": "sindresorhus/chalk",
|
2014-06-26 00:25:40 +02:00
|
|
|
"maintainers": [
|
|
|
|
|
"Sindre Sorhus <sindresorhus@gmail.com> (http://sindresorhus.com)",
|
2015-02-22 10:26:34 +01:00
|
|
|
"Joshua Appelman <jappelman@xebia.com> (http://jbnicolai.com)"
|
2014-06-26 00:25:40 +02:00
|
|
|
],
|
2013-12-13 20:26:47 +01:00
|
|
|
"engines": {
|
2014-03-26 16:29:42 +01:00
|
|
|
"node": ">=0.10.0"
|
2013-12-13 20:26:47 +01:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2014-07-04 22:28:30 +02:00
|
|
|
"test": "mocha",
|
2015-05-25 01:37:33 -07:00
|
|
|
"bench": "matcha benchmark.js",
|
|
|
|
|
"coverage": "nyc npm test && nyc report",
|
|
|
|
|
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
|
2013-12-13 20:26:47 +01:00
|
|
|
},
|
|
|
|
|
"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": {
|
2015-02-22 10:32:55 +01:00
|
|
|
"ansi-styles": "^2.0.1",
|
|
|
|
|
"escape-string-regexp": "^1.0.2",
|
|
|
|
|
"has-ansi": "^1.0.3",
|
|
|
|
|
"strip-ansi": "^2.0.1",
|
2015-02-23 14:03:03 +07:00
|
|
|
"supports-color": "^1.3.0"
|
2013-08-03 02:16:26 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2015-05-25 01:37:33 -07:00
|
|
|
"coveralls": "^2.11.2",
|
2014-11-23 18:56:00 +07:00
|
|
|
"matcha": "^0.6.0",
|
2015-04-26 15:57:41 +07:00
|
|
|
"mocha": "*",
|
2015-05-25 01:37:33 -07:00
|
|
|
"nyc": "^2.1.4",
|
2015-04-26 15:57:41 +07:00
|
|
|
"require-uncached": "^1.0.2",
|
|
|
|
|
"resolve-from": "^1.0.0",
|
|
|
|
|
"semver": "^4.3.3"
|
2013-08-03 02:16:26 +02:00
|
|
|
}
|
|
|
|
|
}
|