chalk/package.json
2018-12-27 19:04:01 +01:00

69 lines
1.1 KiB
JSON

{
"name": "chalk",
"version": "2.4.1",
"description": "Terminal string styling done right",
"license": "MIT",
"repository": "chalk/chalk",
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && nyc ava && tsd-check && flow",
"bench": "matcha benchmark.js"
},
"files": [
"index.js",
"templates.js",
"index.d.ts",
"index.js.flow",
"stderr.js",
"stderr.d.ts"
],
"keywords": [
"color",
"colour",
"colors",
"terminal",
"console",
"cli",
"string",
"str",
"ansi",
"style",
"styles",
"tty",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^6.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.1.1",
"ava": "^1.0.1",
"coveralls": "^3.0.2",
"execa": "^1.0.0",
"flow-bin": "^0.89.0",
"import-fresh": "^3.0.0",
"matcha": "^0.7.0",
"nyc": "^13.1.0",
"resolve-from": "^4.0.0",
"tsd-check": "^0.3.0",
"xo": "^0.23.0"
},
"types": "index.d.ts",
"xo": {
"ignores": [
"test/_flow.js"
]
}
}