UNPKG

1.33 kBJSONView Raw
1{
2 "name": "looks-same",
3 "version": "5.1.0",
4 "description": "Pure node.js library for comparing PNG-images, taking into account human color perception.",
5 "main": "index.js",
6 "types": "index.d.ts",
7 "directories": {
8 "test": "test"
9 },
10 "dependencies": {
11 "color-diff": "^1.1.0",
12 "concat-stream": "^1.6.2",
13 "lodash": "^4.17.3",
14 "parse-color": "^1.0.0",
15 "pngjs": "^3.3.3"
16 },
17 "devDependencies": {
18 "@types/node": "^10.12.3",
19 "chai": "^4.1.2",
20 "eslint": "^5.3.0",
21 "eslint-config-gemini-testing": "^2.8.0",
22 "gm": "^1.23.1",
23 "matcha": "^0.7.0",
24 "mocha": "^5.2.0",
25 "proxyquire": "^1.7.10",
26 "sinon": "^6.1.5",
27 "temp": "^0.8.3"
28 },
29 "scripts": {
30 "test-unit": "mocha",
31 "lint": "eslint .",
32 "test": "npm run test-unit && npm run lint",
33 "bench": "matcha benchmark/*"
34 },
35 "engines": {
36 "node": ">= 6.0.0"
37 },
38 "author": "Sergey Tatarintsev <sevinf@yandex-team.ru> (https://github.com/SevInf)",
39 "license": "MIT",
40 "repository": {
41 "type": "git",
42 "url": "https://github.com/gemini-testing/looks-same.git"
43 },
44 "keywords": [
45 "png",
46 "compare",
47 "ciede2000",
48 "diff"
49 ],
50 "bugs": {
51 "url": "https://github.com/gemini-testing/looks-same/issues"
52 },
53 "homepage": "https://github.com/gemini-testing/looks-same"
54}