-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.55 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
58
59
60
61
62
63
{
"name": "to-match-pdf-snapshot",
"version": "0.0.1",
"description": "Test visual regression of PDFs in Playwright.",
"keywords": [
"playwright",
"pdf-snapshot",
"pdf visual regression testing",
"pdf compare",
"pdf comparison"
],
"homepage": "https://github.com/doczilla-app/to-match-pdf-snapshot",
"bugs": {
"url": "https://github.com/doczilla-app/to-match-pdf-snapshot/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/doczilla-app/to-match-pdf-snapshot.git"
},
"license": "MIT",
"author": {
"name": "Doczilla",
"email": "[email protected]",
"url": "https://www.doczilla.app"
},
"exports": {
".": {
"default": "./dist/index.js"
},
"./playwright": {
"default": "./dist/playwright.js"
}
},
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts .",
"test": "jest --passWithNoTests"
},
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp": "^10.1.0",
"pdfjs-dist": "3.11.174"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.43.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.4",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.7.0",
"playwright-core": "^1.43.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.*"
}
}