chalk/package.json

71 lines
1.1 KiB
JSON
Raw Normal View History

2013-08-03 02:16:26 +02:00
{
2017-06-20 19:18:21 +02:00
"name": "chalk",
2018-04-26 12:15:49 +07:00
"version": "2.4.1",
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": {
2018-09-01 02:50:53 +07:00
"test": "xo && nyc ava && tsc --project types && flow --max-warnings=0",
"bench": "matcha benchmark.js"
2017-06-20 19:18:21 +02:00
},
"files": [
2017-06-29 16:46:19 -07:00
"index.js",
2017-10-17 22:10:43 -05:00
"templates.js",
2018-04-17 00:26:17 -04:00
"types/index.d.ts",
"index.js.flow"
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": {
"ansi-styles": "^3.2.1",
2017-06-20 21:38:49 +02:00
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
2017-06-20 19:18:21 +02:00
},
"devDependencies": {
"ava": "0.25.0",
2017-10-18 10:14:40 +07:00
"coveralls": "^3.0.0",
"execa": "^0.10.0",
"flow-bin": "^0.73.0",
2017-06-20 19:18:21 +02:00
"import-fresh": "^2.0.0",
"matcha": "^0.7.0",
"nyc": "^11.0.2",
2017-10-18 10:14:40 +07:00
"resolve-from": "^4.0.0",
2017-10-17 22:10:43 -05:00
"typescript": "^2.5.3",
"xo": "0.20.3"
2017-06-20 19:18:21 +02:00
},
2017-10-17 22:10:43 -05:00
"types": "types/index.d.ts",
2017-06-20 19:18:21 +02:00
"xo": {
"envs": [
"node",
"mocha"
2018-04-17 00:26:17 -04:00
],
"ignores": [
"test/_flow.js"
2017-06-20 19:18:21 +02:00
]
}
2013-08-03 02:16:26 +02:00
}