This repository was archived by the owner on Oct 22, 2023. It is now read-only.
forked from OferElfassi/pdf2jsonForElectron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 3.43 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 3.43 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
70
71
72
73
74
75
{
"name": "@crit-tech/pdf2json4electron",
"version": "3.0.6",
"description": "PDF file parser that converts PDF binaries to text based JSON, powered by porting a fork of PDF.JS to Node.js",
"keywords": [
"pdf",
"pdf parser",
"pdf2json",
"convert pdf to json",
"server side PDF parser",
"port pdf.js to node.js",
"PDF binary to text",
"commandline utility to parse pdf to json",
"JSON",
"javascript",
"PDF canvas",
"pdf.js fork"
],
"author": {
"name": "Modesty Zhang",
"email": "modestyz@hotmail.com",
"url": "http://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=62372"
},
"homepage": "https://github.com/crit-tech/pdf2jsonForElectron",
"repository": {
"type": "git",
"url": "git://github.com/crit-tech/pdf2jsonForElectron.git"
},
"main": "./pdfparser.js",
"typings": "./pdfparser.d.ts",
"scripts": {
"test": "cd ./test && bash p2j.forms.sh",
"test-misc": "cd ./test && bash p2j.one.sh misc . \"Expected: 7 success, 3 fail exception with stack trace\" ",
"parse": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form",
"parse-s": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s",
"parse-t": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t",
"parse-c": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t -c",
"parse-m": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t -c -m",
"parse-r": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -t -c -m -r",
"parse-fd": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/fd/form/ -o ./test/target/fd/form -t -c -m -r",
"parse-tb": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i242_testingWithTable.pdf -o ./test/target/misc",
"parse-tc": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i293_pdfpac.pdf -o ./test/target/misc",
"parse-rectFix": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/pr298_rect_fix_from_upstream.pdf -o ./test/target/misc",
"parse-e": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i43_encrypted.pdf -o ./test/target/misc",
"parse-e2": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i243_problem_file_anon.pdf -o ./test/target/misc",
"parse-e3": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i200_test.pdf -o ./test/target/misc"
},
"engines": {
"node": ">=18.12.1",
"npm": ">=8.19.2"
},
"type": "module",
"dependencies": {
"@xmldom/xmldom": "^0.8.8"
},
"devDependencies": {
"@types/node": "^20.3.1"
},
"bundledDependencies": [
"@xmldom/xmldom"
],
"maintainers": [
{
"name": "Modesty Zhang",
"email": "modestyz@hotmail.com",
"url": "http://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=62372"
}
],
"contributors": [],
"bugs": {
"url": "http://github.com/crit-tech/pdf2jsonForElectron/issues"
},
"license": "Apache-2.0",
"readme": "https://github.com/crit-tech/pdf2jsonForElectron/blob/master/readme.md"
}