-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
58 lines (58 loc) · 1.43 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "looks-same",
"version": "9.0.1",
"description": "Pure node.js library for comparing PNG-images, taking into account human color perception.",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"color-diff": "^1.1.0",
"fs-extra": "^8.1.0",
"js-graph-algorithms": "1.0.18",
"lodash": "^4.17.3",
"nested-error-stacks": "^2.1.0",
"parse-color": "^1.0.0",
"sharp": "0.32.6"
},
"devDependencies": {
"@types/node": "^10.12.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^5.3.0",
"eslint-config-gemini-testing": "^3.0.0",
"gm": "^1.23.1",
"mocha": "^5.2.0",
"proxyquire": "^1.7.10",
"sinon": "^6.1.5",
"sinon-chai": "^3.3.0",
"standard-version": "^7.0.0",
"temp": "^0.8.3"
},
"scripts": {
"test-unit": "mocha",
"lint": "eslint .",
"test": "npm run test-unit && npm run lint",
"release": "standard-version"
},
"engines": {
"node": ">= 18.0.0"
},
"author": "Sergey Tatarintsev <[email protected]> (https://github.com/SevInf)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gemini-testing/looks-same.git"
},
"keywords": [
"png",
"compare",
"ciede2000",
"diff"
],
"bugs": {
"url": "https://github.com/gemini-testing/looks-same/issues"
},
"homepage": "https://github.com/gemini-testing/looks-same"
}