-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 906 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 906 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@vtfk/pdf-text-reader",
"version": "1.1.3",
"description": "Pdf reader",
"main": "index.js",
"scripts": {
"test": "standard && node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtfk/pdf-text-reader.git"
},
"keywords": [
"pdf",
"reader"
],
"author": "jorgtho",
"license": "MIT",
"bugs": {
"url": "https://github.com/vtfk/pdf-text-reader/issues"
},
"homepage": "https://github.com/vtfk/pdf-text-reader#readme",
"dependencies": {
"pdfjs-dist": "^4.10.38",
"webpack": "^5.39.0",
"worker-loader": "^3.0.8"
},
"devDependencies": {
"jest": "^29.7.0",
"standard": "16.0.4"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testMatch": [
"**/tests/**/*.[jt]s?(x)",
"**/?(*.)+.(spec|test).[jt]s?(x)"
]
}
}