forked from marcdacz/compare-pdf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "compare-pdf",
"version": "2.0.5",
"description": "Standalone node module that compares pdfs",
"type": "module",
"exports": "./functions/ComparePdf.js",
"types": "./types/comparePdf.d.ts",
"scripts": {
"mocha": "node ./node_modules/mocha/bin/mocha",
"test": "mocha --recursive --timeout 20000",
"lint": "eslint . --fix",
"pretty": "prettier --write .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcdacz/compare-pdf.git"
},
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"homepage": "https://github.com/marcdacz/compare-pdf#readme",
"keywords": ["pdf", "graphicsMagick", "imageMagick", "compare pdf", "test pdf"],
"devDependencies": {
"@eslint/js": "^9.21.0",
"@prettier/plugin-xml": "^3.4.1",
"@stylistic/eslint-plugin": "^4.0.1",
"chai": "^5.2.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"mocha": "^11.1.0",
"nock": "^14.0.1",
"prettier": "^3.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"yaml-eslint-parser": "^1.2.3"
},
"dependencies": {
"canvas": "^2.11.2",
"fs-extra": "^11.3.0",
"gm": "humphreyn/gm",
"lodash": "^4.17.21",
"pdfjs-dist": "4.7.76",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0"
},
"lint-staged": {
"**/*": ["eslint --cache --fix", "prettier --cache --write --ignore-unknown"]
}
}