-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 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
{
"name": "zimablue",
"version": "1.1.6",
"description": "a CLI utility for matching colors to a palette",
"keywords": [
"color",
"match",
"difference",
"palette",
"tailwind",
"css",
"less",
"scss",
"hex",
"rgb"
],
"homepage": "https://github.com/sendsay-ru/color-palette#readme",
"bugs": {
"url": "https://github.com/sendsay-ru/color-palette/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sendsay-ru/color-palette.git"
},
"license": "MIT",
"author": "Aleksey Nikolaev <[email protected]>",
"main": "src/utils.js",
"bin": {
"zimablue": "src/index.js"
},
"scripts": {
"build": "node src/index.js",
"eslint": "npx eslint src",
"eslint:fix": "yarn eslint --fix",
"prettify": "npx prettier -c src",
"prettify:fix": "yarn prettify -w",
"unit": "npx jest"
},
"dependencies": {
"ansi-colors": "4.1.3",
"colord": "2.9.3",
"commander": "11.0.0",
"ejs": "^3.1.9",
"glob": "10.3.3",
"joi": "^17.9.2",
"superstatic": "9.0.3"
}
}