-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "chalk-template",
"version": "1.1.0",
"description": "Terminal string styling with tagged template literals",
"license": "MIT",
"repository": "chalk/chalk-template",
"funding": "https://github.com/chalk/chalk-template?sponsor=1",
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava test/index.js && cross-env FORCE_COLOR=0 ava test/no-color.js && cross-env FORCE_COLOR=3 TERM=dumb ava test/full-color.js && cross-env FORCE_COLOR=3 TERM=dumb ava test/template.js && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"chalk",
"template",
"templates",
"templating",
"ansi",
"styles",
"color",
"colour",
"colors",
"terminal",
"console",
"string",
"tty",
"escape",
"formatting",
"rgb",
"256",
"shell",
"xterm",
"log",
"logging",
"command-line",
"text"
],
"dependencies": {
"chalk": "^5.2.0"
},
"devDependencies": {
"ava": "^5.2.0",
"cross-env": "^7.0.3",
"tsd": "^0.28.1",
"xo": "^0.54.2"
}
}