-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 982 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 982 Bytes
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": "git-image-diff",
"version": "0.0.0",
"description": "A tool for comparing image (snapshot) differences between your branch and master.",
"main": "index.js",
"type": "module",
"bin": {
"git-image-diff": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"keywords": [
"git",
"image",
"snapshot",
"diff",
"difference",
"regression"
],
"author": "Dick Comley",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/dickie81/git-image-diff.git"
},
"dependencies": {
"glob": "^7.1.6",
"jest-image-snapshot": "^4.2.0",
"rimraf": "^3.0.2",
"yargs": "^16.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.3",
"prettier": "^2.1.2"
}
}