-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "img-diff-js",
"version": "0.5.4",
"description": "Library to compare 2 images",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "jest",
"test:ci": "jest --coverage",
"prettier": "prettier \"*.md\" \"*.json\" \"*.yml\" \"src/**/*\"",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"lint": "npm run format:check",
"preperf": "tsc",
"perf": "node tool/perf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg-viz/img-diff-js.git"
},
"keywords": [
"diff",
"image",
"compare"
],
"author": "Quramy",
"license": "MIT",
"bugs": {
"url": "https://github.com/reg-viz/img-diff-js/issues"
},
"homepage": "https://github.com/reg-viz/img-diff-js#readme",
"dependencies": {
"decode-tiff": "^0.2.0",
"jpeg-js": "^0.4.2",
"mkdirp": "^1.0.4",
"pixelmatch": "^5.2.1",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/mkdirp": "^1.0.1",
"@types/node": "^20.0.0",
"@types/pixelmatch": "^5.2.2",
"@types/pngjs": "^6.0.0",
"@types/rimraf": "4.0.5",
"cp-file": "11.0.0",
"husky": "9.1.7",
"jest": "29.7.0",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"rimraf": "5.0.10",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
}
}