-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
51 lines (51 loc) · 990 Bytes
/
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
{
"name": "kleur",
"version": "4.1.5",
"repository": "lukeed/kleur",
"description": "The fastest Node.js library for formatting terminal text with ANSI colors~!",
"module": "index.mjs",
"types": "index.d.ts",
"main": "index.js",
"license": "MIT",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./colors": {
"types": "./colors.d.ts",
"import": "./colors.mjs",
"require": "./colors.js"
}
},
"files": [
"*.d.ts",
"colors.*",
"index.*"
],
"author": {
"name": "Luke Edwards",
"email": "[email protected]",
"url": "https://lukeed.com"
},
"scripts": {
"build": "node build",
"test": "uvu -r esm -i utils -i xyz"
},
"engines": {
"node": ">=6"
},
"keywords": [
"ansi",
"cli",
"color",
"colors",
"console",
"terminal"
],
"devDependencies": {
"esm": "3.2.25",
"uvu": "0.3.3"
}
}