-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.51 KB
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
64
{
"name": "vx-qa",
"version": "1.0.0",
"description": "VxSuite QA Automation Tool - Automates election QA testing with VxAdmin and VxScan",
"keywords": [
"automation",
"election",
"qa",
"votingworks",
"vxsuite"
],
"author": "VotingWorks",
"license": "GPL-3.0",
"type": "module",
"main": "dist/index.js",
"bin": {
"vx-qa": "./dist/index.js"
},
"scripts": {
"build": "tsgo",
"start": "pnpm build && node dist/index.js",
"lint": "oxfmt --check && oxlint --type-aware",
"lint:fix": "oxfmt && oxlint --type-aware --fix",
"test": "vitest",
"test:coverage": "vitest --coverage",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,js}": [
"oxfmt",
"oxlint --type-aware --fix"
]
},
"dependencies": {
"@playwright/test": "^1.40.0",
"canvas": "^3.2.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"handlebars": "^4.7.8",
"jszip": "^3.10.1",
"ora": "^8.0.1",
"pdf-lib": "^1.17.1",
"pdf-to-img": "^5.0.0",
"simple-git": "^3.22.0",
"tree-kill": "^1.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest-image-snapshot": "^6.4.1",
"@types/node": "^20.10.0",
"@typescript/native-preview": "7.0.0-dev.20260210.1",
"@vitest/coverage-v8": "^4.0.16",
"husky": "^9.1.7",
"jest-image-snapshot": "^6.5.1",
"lint-staged": "^16.2.7",
"oxfmt": "^0.18.0",
"oxlint": "^1.33.0",
"oxlint-tsgolint": "^0.9.1",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20.0.0"
}
}