-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 909 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 909 Bytes
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
{
"name": "pdfform2csv",
"version": "1.0.0",
"description": "Aplicación web sencilla para extraer datos de formularios PDF y convertirlos en un archivo CSV, directamente desde el navegador. No requiere instalación ni conexión a internet.",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.59.1",
"http-server": "^14.1.1",
"playwright": "^1.59.1",
"start-server-and-test": "^2.0.11"
},
"scripts": {
"serve": "http-server -c-1 -p 9001",
"test:e2e": "playwright test",
"test": "start-server-and-test serve http://localhost:9001 test:e2e",
"test:ci": "CI=true playwright test --reporter=list",
"generate-pdfs": "node tests/fixtures/create-basic-pdf.js && node tests/fixtures/create-complex-pdf.js && node tests/generate-test-pdfs.js"
},
"dependencies": {
"pdf-lib": "^1.17.1"
}
}