-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "compare-pdf",
"version": "1.1.8",
"description": "Standalone node module that compares pdfs",
"main": "./functions/comparePdf",
"types": "./types/comparePdf.d.ts",
"scripts": {
"mocha": "node ./node_modules/mocha/bin/mocha",
"test": "mocha --recursive --timeout 600000",
"test-ts": "env TS_NODE_PROJECT=\"tsconfig.testing.json\" mocha --recursive --timeout 600000 --require ts-node/register 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcdacz/compare-pdf.git"
},
"homepage": "https://github.com/marcdacz/compare-pdf#readme",
"keywords": [
"pdf",
"graphicsMagick",
"imageMagick",
"compare pdf",
"test pdf"
],
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"ts-node": "^10.8.1"
},
"dependencies": {
"canvas": "^2.6.1",
"fs-extra": "^8.1.0",
"gm": "^1.23.1",
"lodash": "^4.17.15",
"pdfjs-dist": "^2.8.335",
"pixelmatch": "^5.1.0",
"pngjs": "^3.4.0"
}
}