-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
53 lines (53 loc) · 1.03 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
{
"name": "color-space",
"description": "Collection of color space conversions",
"version": "2.0.1",
"author": "Dmitry Ivanov <[email protected]>",
"type": "module",
"keywords": [
"color",
"colour",
"rgb",
"hsl",
"hsv",
"lab",
"lch",
"luv",
"lch",
"cie",
"hsluv",
"husl",
"color-convert",
"gamut",
"color-conversions",
"color-space",
"color-translation",
"color-data",
"coloroid",
"cubehelix",
"munsell",
"hcg",
"hsp"
],
"repository": {
"type": "git",
"url": "http://github.com/colorjs/color-space.git"
},
"files": [
"*.js",
"dist"
],
"license": "MIT",
"main": "./index.js",
"devDependencies": {
"almost-equal": "^1.1.0",
"rollup": "^2.66.0",
"terser": "^5.10.0",
"uvu": "^0.5.3"
},
"scripts": {
"test": "node test",
"build": "rollup ./index.js --file dist/color-space.js --format esm",
"minify": "terser ./dist/color-space.js -o ./dist/color-space.min.js --module -c passes=3 -m"
}
}