1{
2	"name": "chalk",
3	"version": "4.1.2",
4	"description": "Terminal string styling done right",
5	"license": "MIT",
6	"repository": "chalk/chalk",
7	"funding": "https://github.com/chalk/chalk?sponsor=1",
8	"main": "source",
9	"engines": {
10		"node": ">=10"
11	},
12	"scripts": {
13		"test": "xo && nyc ava && tsd",
14		"bench": "matcha benchmark.js"
15	},
16	"files": [
17		"source",
18		"index.d.ts"
19	],
20	"keywords": [
21		"color",
22		"colour",
23		"colors",
24		"terminal",
25		"console",
26		"cli",
27		"string",
28		"str",
29		"ansi",
30		"style",
31		"styles",
32		"tty",
33		"formatting",
34		"rgb",
35		"256",
36		"shell",
37		"xterm",
38		"log",
39		"logging",
40		"command-line",
41		"text"
42	],
43	"dependencies": {
44		"ansi-styles": "^4.1.0",
45		"supports-color": "^7.1.0"
46	},
47	"devDependencies": {
48		"ava": "^2.4.0",
49		"coveralls": "^3.0.7",
50		"execa": "^4.0.0",
51		"import-fresh": "^3.1.0",
52		"matcha": "^0.7.0",
53		"nyc": "^15.0.0",
54		"resolve-from": "^5.0.0",
55		"tsd": "^0.7.4",
56		"xo": "^0.28.2"
57	},
58	"xo": {
59		"rules": {
60			"unicorn/prefer-string-slice": "off",
61			"unicorn/prefer-includes": "off",
62			"@typescript-eslint/member-ordering": "off",
63			"no-redeclare": "off",
64			"unicorn/string-content": "off",
65			"unicorn/better-regex": "off"
66		}
67	}
68}
69