forked from modesty/pdf2json
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.89 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.89 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
{
"name": "pdf2json",
"version": "2.0.1",
"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",
"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/modesty/pdf2json",
"repository": {
"type": "git",
"url": "git://github.com/modesty/pdf2json.git"
},
"main": "./pdfparser.js",
"scripts": {
"test": "cd ./test && sh p2j.forms.sh",
"test-misc": "cd ./test && sh p2j.one.sh misc . \"Expected: 5 success, 3 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 -o ./test/target/fd/form -t -c -m -r",
"parse-242": "node --trace-deprecation --trace-warnings pdf2json.js -f ./test/pdf/misc/i242_testingWithTable.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": ">=14.18.0",
"npm": ">=6.14.15"
},
"bin": {
"pdf2json": "./bin/pdf2json"
},
"dependencies": {
"@xmldom/xmldom": "^0.7.5"
},
"devDependencies": {},
"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/modesty/pdf2json/issues"
},
"license": "Apache-2.0",
"readme": "https://github.com/modesty/pdf2json/blob/master/readme.md"
}