forked from colorjs/get-image-colors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 850 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
{
"name": "get-image-colors",
"version": "4.0.0",
"description": "Extract colors from images. Supports GIF, JPG, PNG, and even SVG!",
"main": "index.js",
"scripts": {
"test": "mocha && standard && standard-markdown *.md",
"lint": "standard"
},
"repository": "https://github.com/colorjs/get-image-colors",
"keywords": [
"color",
"palette",
"svg",
"gif",
"png",
"jpg",
"canvas",
"pixels",
"rgb",
"rgba"
],
"author": "zeke",
"license": "MIT",
"devDependencies": {
"mocha": "^8.1.1",
"standard": "^14.3.4",
"standard-markdown": "^6.0.0"
},
"dependencies": {
"pify": "^5.0.0",
"chroma-js": "^2.1.0",
"get-pixels": "^3.3.2",
"get-rgba-palette": "^2.0.1",
"get-svg-colors": "^1.5.1"
},
"standard": {
"env": {
"mocha": true
}
}
}