chalk/package.json

69 lines
1.3 KiB
JSON
Raw Normal View History

2013-08-03 02:16:26 +02:00
{
"name": "chalk",
2015-08-20 03:10:52 +07:00
"version": "1.1.1",
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",
2015-06-30 19:55:37 +02:00
"repository": "chalk/chalk",
"maintainers": [
2015-05-25 13:18:05 +02:00
"Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
2015-07-01 07:32:17 -06:00
"Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
"JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
],
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": {
"test": "xo && mocha",
"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",
2015-05-25 13:18:05 +02:00
"str",
2013-08-03 02:16:26 +02:00
"ansi",
2015-05-25 13:18:05 +02:00
"style",
2013-08-03 02:16:26 +02:00
"styles",
"tty",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
"dependencies": {
"ansi-styles": "^2.1.0",
2015-02-22 10:32:55 +01:00
"escape-string-regexp": "^1.0.2",
"supports-color": "^3.1.2"
2013-08-03 02:16:26 +02:00
},
"devDependencies": {
"coveralls": "^2.11.2",
"matcha": "^0.6.0",
"mocha": "*",
"nyc": "^5.2.0",
"require-uncached": "^1.0.2",
"resolve-from": "^2.0.0",
"semver": "^5.1.0",
"xo": "*"
},
"xo": {
"envs": [
"node",
"mocha"
]
2013-08-03 02:16:26 +02:00
}
}