-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "image-area-diff",
"version": "1.0.1",
"description": "An efficient JavaScript library used to conditionally compare pixel-level areas in PNG images",
"main": "image-area-diff.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore --fix .",
"test": "mocha test --recursive"
},
"dependencies": {
"pixelmatch": "^4.0.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-mourner": "^2.0.3",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-mocha": "^5.0.0",
"mocha": "^5.1.1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/GuilhermeRossato/image-area-diff.git"
},
"keywords": [
"test",
"image",
"comparision",
"area",
"dif"
],
"engines": {
"node": ">=5.5.1"
},
"author": "Guilherme Rossato <[email protected]> (https://github.com/GuilhermeRossato)",
"license": "MIT",
"bugs": {
"url": "https://github.com/GuilhermeRossato/image-area-diff/issues"
},
"homepage": "https://github.com/GuilhermeRossato/image-area-diff#readme"
}