-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "color-diff",
"version": "1.4.0",
"description": "Implemets the CIEDE2000 color difference algorithm, conversion between RGB and LAB color and mapping all colors in palette X to the closest or most different color in palette Y based on the CIEDE2000 difference.",
"main": "index.js",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"test": "c8 --reporter=lcov node --test && eslint . --cache && tsc",
"prepack": "rollup index.js --format cjs --file index.cjs"
},
"repository": {
"type": "git",
"url": "git://github.com/markusn/color-diff.git"
},
"type": "module",
"keywords": [
"color",
"diff",
"color-diff",
"pallette",
"closest",
"convert",
"conversion",
"CIEDE2000",
"ciede2000"
],
"author": "markusn kael",
"license": "BSD-3-Clause",
"readmeFilename": "README",
"gitHead": "61269601ac72e65afd111565bfa68a2d13092de0",
"bugs": {
"url": "https://github.com/markusn/color-diff/issues"
},
"devDependencies": {
"@types/node": "^20.5.9",
"c8": "^7.14.0",
"eslint": "^8.24.0",
"eslint-config-exp": "^0.5.0",
"rollup": "^3.23.0",
"typescript": "^5.0.4"
},
"files": [
"README.md",
"COPYING",
"CHANGELOG.md",
"package-lock.json",
"package.json",
"index.js",
"index.cjs",
"lib/"
]
}