2013-08-03 02:16:26 +02:00
|
|
|
{
|
2017-06-20 19:18:21 +02:00
|
|
|
"name": "chalk",
|
2020-06-09 15:43:27 +08:00
|
|
|
"version": "4.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",
|
2020-01-01 19:05:40 +01:00
|
|
|
"funding": "https://github.com/chalk/chalk?sponsor=1",
|
2021-04-16 15:23:29 +07:00
|
|
|
"type": "module",
|
|
|
|
|
"exports": "./source/index.js",
|
2017-06-20 19:18:21 +02:00
|
|
|
"engines": {
|
2021-08-11 15:01:41 +02:00
|
|
|
"node": "^12.17.0 || ^14.13 || >=16.0.0"
|
2017-06-20 19:18:21 +02:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2019-05-03 15:03:53 +07:00
|
|
|
"test": "xo && nyc ava && tsd",
|
2018-09-01 02:50:53 +07:00
|
|
|
"bench": "matcha benchmark.js"
|
2017-06-20 19:18:21 +02:00
|
|
|
},
|
|
|
|
|
"files": [
|
2019-07-12 13:51:07 +07:00
|
|
|
"source",
|
2021-07-30 17:30:19 +02:00
|
|
|
"!source/index.test-d.ts"
|
2017-06-20 19:18:21 +02:00
|
|
|
],
|
|
|
|
|
"keywords": [
|
|
|
|
|
"color",
|
|
|
|
|
"colour",
|
|
|
|
|
"colors",
|
|
|
|
|
"terminal",
|
|
|
|
|
"console",
|
|
|
|
|
"cli",
|
|
|
|
|
"string",
|
|
|
|
|
"ansi",
|
|
|
|
|
"style",
|
|
|
|
|
"styles",
|
|
|
|
|
"tty",
|
|
|
|
|
"formatting",
|
|
|
|
|
"rgb",
|
|
|
|
|
"256",
|
|
|
|
|
"shell",
|
|
|
|
|
"xterm",
|
|
|
|
|
"log",
|
|
|
|
|
"logging",
|
|
|
|
|
"command-line",
|
|
|
|
|
"text"
|
|
|
|
|
],
|
|
|
|
|
"dependencies": {
|
2021-04-22 15:54:42 +12:00
|
|
|
"ansi-styles": "^6.1.0",
|
2021-11-21 19:51:24 +13:00
|
|
|
"supports-color": "^9.1.0"
|
2017-06-20 19:18:21 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-04-16 15:23:29 +07:00
|
|
|
"ava": "^3.15.0",
|
2021-04-22 15:54:42 +12:00
|
|
|
"color-convert": "^2.0.1",
|
2021-07-30 17:30:19 +02:00
|
|
|
"coveralls": "^3.1.1",
|
2021-11-26 16:00:01 +07:00
|
|
|
"execa": "^6.0.0",
|
|
|
|
|
"log-update": "^5.0.0",
|
2017-06-20 19:18:21 +02:00
|
|
|
"matcha": "^0.7.0",
|
2020-10-04 10:56:24 +13:00
|
|
|
"nyc": "^15.1.0",
|
2021-11-26 16:00:01 +07:00
|
|
|
"tsd": "^0.19.0",
|
|
|
|
|
"typescript": "^4.5.2",
|
|
|
|
|
"xo": "^0.47.0",
|
|
|
|
|
"yoctodelay": "^2.0.0"
|
2019-09-27 11:16:49 +07:00
|
|
|
},
|
2021-07-30 17:30:19 +02:00
|
|
|
"types": "./source/index.d.ts",
|
2019-09-27 11:16:49 +07:00
|
|
|
"xo": {
|
|
|
|
|
"rules": {
|
|
|
|
|
"unicorn/prefer-string-slice": "off",
|
2020-04-02 15:56:21 +08:00
|
|
|
"unicorn/better-regex": "off"
|
2019-09-27 11:16:49 +07:00
|
|
|
}
|
2017-06-20 19:18:21 +02:00
|
|
|
}
|
2013-08-03 02:16:26 +02:00
|
|
|
}
|