UNPKG

1.09 kBJSONView Raw
1{
2 "name": "chalk",
3 "version": "2.2.0",
4 "description": "Terminal string styling done right",
5 "license": "MIT",
6 "repository": "chalk/chalk",
7 "engines": {
8 "node": ">=4"
9 },
10 "scripts": {
11 "test": "xo && tsc --project types && nyc ava",
12 "bench": "matcha benchmark.js",
13 "coveralls": "nyc report --reporter=text-lcov | coveralls"
14 },
15 "files": [
16 "index.js",
17 "templates.js",
18 "types/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": "^3.1.0",
45 "escape-string-regexp": "^1.0.5",
46 "supports-color": "^4.0.0"
47 },
48 "devDependencies": {
49 "ava": "*",
50 "coveralls": "^3.0.0",
51 "execa": "^0.8.0",
52 "import-fresh": "^2.0.0",
53 "matcha": "^0.7.0",
54 "nyc": "^11.0.2",
55 "resolve-from": "^4.0.0",
56 "typescript": "^2.5.3",
57 "xo": "*"
58 },
59 "types": "types/index.d.ts",
60 "xo": {
61 "envs": [
62 "node",
63 "mocha"
64 ]
65 }
66}