UNPKG

1.36 kBJSONView Raw
1{
2 "name": "chalk",
3 "version": "1.1.2",
4 "description": "Terminal string styling done right. Much color.",
5 "license": "MIT",
6 "repository": "chalk/chalk",
7 "maintainers": [
8 "Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
9 "Joshua Boy Nicolai Appelman <joshua@jbna.nl> (jbna.nl)",
10 "JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
11 ],
12 "engines": {
13 "node": ">=0.10.0"
14 },
15 "scripts": {
16 "test": "xo && mocha",
17 "bench": "matcha benchmark.js",
18 "coverage": "nyc npm test && nyc report",
19 "coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
20 },
21 "files": [
22 "index.js"
23 ],
24 "keywords": [
25 "color",
26 "colour",
27 "colors",
28 "terminal",
29 "console",
30 "cli",
31 "string",
32 "str",
33 "ansi",
34 "style",
35 "styles",
36 "tty",
37 "formatting",
38 "rgb",
39 "256",
40 "shell",
41 "xterm",
42 "log",
43 "logging",
44 "command-line",
45 "text"
46 ],
47 "dependencies": {
48 "ansi-styles": "^2.2.1",
49 "escape-string-regexp": "^1.0.2",
50 "supports-color": "^3.1.2"
51 },
52 "devDependencies": {
53 "coveralls": "^2.11.2",
54 "matcha": "^0.6.0",
55 "mocha": "*",
56 "nyc": "^5.2.0",
57 "require-uncached": "^1.0.2",
58 "resolve-from": "^2.0.0",
59 "semver": "^5.1.0",
60 "xo": "*"
61 },
62 "xo": {
63 "envs": [
64 "node",
65 "mocha"
66 ]
67 }
68}