forked from mapbox/pixelmatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 920 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": "pixelmatch",
"version": "5.2.1",
"description": "The smallest and fastest pixel-level image comparison library.",
"main": "index.js",
"bin": {
"pixelmatch": "bin/pixelmatch"
},
"files": [
"bin/pixelmatch"
],
"dependencies": {
"pngjs": "^6.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-mourner": "^3.0.0",
"tape": "^5.3.0"
},
"scripts": {
"pretest": "eslint index.js bin/pixelmatch test/test.js",
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/pixelmatch.git"
},
"keywords": [
"image",
"comparison",
"diff"
],
"eslintConfig": {
"extends": "mourner"
},
"author": "Vladimir Agafonkin",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/pixelmatch/issues"
},
"homepage": "https://github.com/mapbox/pixelmatch#readme"
}