UNPKG

1.42 kBJSONView Raw
1{
2 "name": "chalk",
3 "version": "1.1.3",
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 Appelman <jappelman@xebia.com> (jbnicolai.com)",
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 "has-ansi": "^2.0.0",
51 "strip-ansi": "^3.0.0",
52 "supports-color": "^2.0.0"
53 },
54 "devDependencies": {
55 "coveralls": "^2.11.2",
56 "matcha": "^0.6.0",
57 "mocha": "*",
58 "nyc": "^3.0.0",
59 "require-uncached": "^1.0.2",
60 "resolve-from": "^1.0.0",
61 "semver": "^4.3.3",
62 "xo": "*"
63 },
64 "xo": {
65 "envs": [
66 "node",
67 "mocha"
68 ]
69 }
70}