-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1001 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
43
44
{
"name": "gm-palette",
"description": "Dominant color and palette using graphicsmagick.",
"author": "Akash Dathan",
"version": "1.1.0",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akashdathan/gm-palette.git"
},
"keywords": [
"dominant color",
"colors",
"top colors",
"palette",
"image colors",
"gm colors",
"gm palette",
"graphicsmagick"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/akashdathan/gm-palette/issues"
},
"homepage": "https://github.com/akashdathan/gm-palette#readme",
"dependencies": {
"gm": "^1.23.1",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/gm": "^1.17.33",
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.92",
"@types/node": "^9.3.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}