chalk/package.json

64 lines
987 B
JSON
Raw Normal View History

2013-08-03 02:16:26 +02:00
{
2017-06-20 19:18:21 +02:00
"name": "chalk",
2017-08-06 20:51:22 -07:00
"version": "2.1.0",
2017-06-30 17:19:57 +02:00
"description": "Terminal string styling done right",
2017-06-20 19:18:21 +02:00
"license": "MIT",
"repository": "chalk/chalk",
"engines": {
"node": ">=4"
},
"scripts": {
2017-07-23 22:17:33 +02:00
"test": "xo && nyc ava",
2017-06-20 19:18:21 +02:00
"bench": "matcha benchmark.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
2017-06-29 16:46:19 -07:00
"index.js",
"templates.js"
2017-06-20 19:18:21 +02:00
],
"keywords": [
"color",
"colour",
"colors",
"terminal",
"console",
"cli",
"string",
"str",
"ansi",
"style",
"styles",
"tty",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
"dependencies": {
2017-06-20 21:38:49 +02:00
"ansi-styles": "^3.1.0",
"escape-string-regexp": "^1.0.5",
"supports-color": "^4.0.0"
2017-06-20 19:18:21 +02:00
},
"devDependencies": {
2017-07-23 22:17:33 +02:00
"ava": "*",
2017-06-20 19:18:21 +02:00
"coveralls": "^2.11.2",
"execa": "^0.8.0",
2017-06-20 19:18:21 +02:00
"import-fresh": "^2.0.0",
"matcha": "^0.7.0",
"nyc": "^11.0.2",
"resolve-from": "^3.0.0",
"xo": "*"
},
"xo": {
"envs": [
"node",
"mocha"
]
}
2013-08-03 02:16:26 +02:00
}