-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.94 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
65
66
67
68
69
{
"name": "qa-evidence-reporter",
"version": "0.1.0",
"description": "Herramienta para capturar evidencia de QA manual sobre features Gherkin y generar reportes HTML auto-contenidos.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/quindcode/qa-evidence-reporter.git"
},
"bugs": {
"url": "https://github.com/quindcode/qa-evidence-reporter/issues"
},
"homepage": "https://github.com/quindcode/qa-evidence-reporter#readme",
"bin": {
"qa-evidence-reporter": "dist/adapters/cli/index.js"
},
"files": [
"dist",
"templates",
"branding"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc && npm run build:ui && npm run build:echarts",
"build:ui": "vite build --config src/ui/vite.config.ts",
"build:echarts": "vite build --config templates/default/vite.echarts.config.ts",
"dev:ui": "vite --config src/ui/vite.config.ts",
"test": "vitest run",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@cucumber/gherkin": "^29.0.0",
"@cucumber/messages": "^24.1.0",
"archiver": "^8.0.0",
"commander": "^15.0.0",
"echarts": "^6.1.0",
"express": "^5.2.1",
"handlebars": "^4.7.9",
"jimp": "^1.6.1",
"multer": "^2.2.0",
"open": "^11.0.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"preact": "^10.29.8",
"zod": "^4.4.3"
},
"devDependencies": {
"@preact/preset-vite": "^2.10.6",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/preact": "^3.2.4",
"@types/archiver": "^8.0.0",
"@types/express": "^5.0.6",
"@types/multer": "^2.2.0",
"@types/node": "^22.10.0",
"@types/supertest": "^7.2.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"jsdom": "^30.0.1",
"prettier": "^3.4.2",
"supertest": "^7.2.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^5.4.21",
"vitest": "^2.1.8"
}
}