-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
44 lines (44 loc) · 1000 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": "replace-color",
"version": "2.3.0",
"description": "Replace color with another one pixel by pixel.",
"keywords": [
"CIE76",
"CIE94",
"CIEDE2000",
"color difference",
"color replacement",
"Delta E",
"image processing",
"pixel by pixel",
"remove watermark",
"watermark detection"
],
"homepage": "https://github.com/turakvlad/replace-color#readme",
"bugs": "https://github.com/turakvlad/replace-color/issues",
"repository": "turakvlad/replace-color",
"license": "MIT",
"author": "Vladyslav Turak <[email protected]>",
"files": [
"src"
],
"main": "index.js",
"scripts": {
"test": "standard && mocha"
},
"dependencies": {
"color-convert": "^1.9.3",
"delta-e": "0.0.7",
"hex-color-regex": "^1.1.0",
"jimp": "^0.9.3"
},
"devDependencies": {
"mocha": "^5.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"standard": "^12.0.1"
},
"engines": {
"node": ">= 6"
}
}