This repository has been archived by the owner on Oct 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "image-difference",
"description": "Create image differential between two images",
"version": "2.0.7",
"homepage": "https://github.com/argos-ci/image-difference",
"repository": {
"type": "git",
"url": "git://github.com/argos-ci/image-difference.git"
},
"bugs": {
"url": "https://github.com/argos-ci/image-difference/issues"
},
"licenses": "MIT",
"bin": {
"image-difference": "bin/image-difference"
},
"main": "lib/imageDifference",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"prebuild": "rm -rf lib/",
"build": "NODE_ENV=production babel -d lib src",
"version": "yarn build && pkgfiles",
"prettier": "find . -name \"*.js\" | grep -v -f .eslintignore | xargs prettier --write --no-semi --single-quote --trailing-comma es5 --print-width 100",
"test:unit": "jest",
"lint": "eslint . --cache && echo \"eslint: no lint errors\"",
"test:watch": "yarn test:unit -- --watch",
"test:benchmark": "babel-node test/benchmark/image-diff.js && babel-node test/benchmark/imagemagick1.js && babel-node test/benchmark/imagemagick2.js && babel-node test/benchmark/graphicsmagick.js && babel-node test/benchmark/pixelmatch.js && babel-node test/benchmark/resemble.js && babel-node test/benchmark/looks-same.js"
},
"dependencies": {
"chalk": "^2.0.1",
"commander": "^2.10.0",
"cross-spawn": "^5.1.0",
"gm": "^1.23.0",
"mkdirp": "^0.5.1",
"tmp": "^0.0.31"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.5.2",
"benchmark": "^2.1.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-node": "^0.3.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"get-pixels": "^3.3.0",
"image-diff": "^1.6.3",
"jest": "^20.0.4",
"looks-same": "^3.2.1",
"pixelmatch": "^4.0.2",
"pkgfiles": "^2.3.2",
"pngjs": "^3.2.0",
"prettier": "^1.5.2",
"resemblejs-node": "^1.0.0",
"rimraf": "^2.6.1"
},
"keywords": [
"image",
"difference"
],
"jest": {
"cacheDirectory": "/tmp/jest"
}
}