-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "rediff",
"version": "1.0.4",
"description": "Perceptual difference testing tool based on Pediff",
"author": "Lukasz Blacha <[email protected]>",
"contributors": [
"Wojciech Iskra <[email protected]"
],
"license": "MIT",
"bin": {
"rediff": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Schibsted-Tech-Polska/rediff.git"
},
"scripts": {
"test": "node index.js --config ./examples/config.js --spec all",
"lint-fix": "eslint . --fix",
"prettier": "prettier --tab-width=4 --print-width=120 --single-quote --trailing-comma=es5 --write",
"lint-staged": "lint-staged"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"npm run lint-fix",
"git add"
],
"*.json": [
"npm run prettier",
"git add"
]
},
"dependencies": {
"bluebird": "^3.3.4",
"lodash": "^4.6.1",
"node-fetch": "^1.7.3",
"png-jpg": "0.0.2",
"pngdiff": "0.9.0",
"rmdir-recursive": "0.0.1",
"yargs": "^4.2.0"
},
"devDependencies": {
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-vgno": "^7.0.0",
"eslint-plugin-prettier": "^2.3.1",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4"
}
}