forked from markusn/color-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1017 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
{
"name": "color-diff",
"version": "1.1.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": "lib/index.js",
"scripts": {
"test": "istanbul cover _mocha && ((cat coverage/lcov.info | coveralls) || exit 0)"
},
"repository": {
"type": "git",
"url": "git://github.com/markusn/color-diff.git"
},
"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": {
"assert": "~1.4.1",
"mocha": "~5.0.4",
"coveralls": "~3.0.0",
"istanbul": "~0.4.5"
}
}