chalk/package.json
2018-09-18 14:32:14 +07:00

66 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 && tsc --project types && flow --max-warnings=0",
"bench": "matcha benchmark.js"
},
"files": [
"index.js",
"templates.js",
"types/index.d.ts",
"index.js.flow"
],
"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": "^5.5.0"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"execa": "^1.0.0",
"flow-bin": "^0.81.0",
"import-fresh": "^2.0.0",
"matcha": "^0.7.0",
"nyc": "^13.0.1",
"resolve-from": "^4.0.0",
"typescript": "^3.0.3",
"xo": "^0.23.0"
},
"types": "types/index.d.ts",
"xo": {
"ignores": [
"test/_flow.js"
]
}
}