forked from ibezkrovnyi/image-quantization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 965 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
{
"author" : "Igor Bezkrovny",
"name" : "image-q",
"version" : "0.1.4",
"description" : "Image Quantization Library in **TypeScript** *(MIT Licensed)*",
"contributors" : [],
"homepage" : "https://github.com/igor-bezkrovny/image-quantization",
"keywords" : [
"image",
"palette",
"quantization",
"quantizer",
"color",
"neuquant",
"rgbquant",
"xiaolin wu",
"cie94 distance",
"ciede2000",
"dithering",
"floyd-steinberg"
],
"engines" : {
"node": ">=0.9.0"
},
"main" : "./_builds/node-iq.js",
"scripts" : {
"prepublish" : "build.cmd"
},
"repository" : {
"type": "git",
"url" : "https://github.com/igor-bezkrovny/image-quantization"
},
"bugs" : {
"url": "https://github.com/igor-bezkrovny/image-quantization/issues"
},
"dependencies" : {},
"preferGlobal" : "false",
"license" : "MIT",
"devDependencies": {
"typedoc": "^0.3.4"
}
}