-
Notifications
You must be signed in to change notification settings - Fork 376
/
package.json
114 lines (114 loc) · 3.95 KB
/
package.json
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "pdf2json",
"version": "3.1.5",
"description": "PDF file parser that converts PDF binaries to JSON and text, powered by porting a fork of PDF.JS to Node.js",
"keywords": [
"pdf",
"pdf parser",
"pdf2json",
"convert pdf to json",
"convert pdf form to json",
"server side PDF parser",
"port pdf.js to node.js",
"PDF to text",
"PDF text extractor",
"PDF binary to text",
"PDF form extractor",
"command line utility to parse pdf to json",
"JSON",
"javascript",
"PDF canvas"
],
"author": {
"name": "Modesty Zhang",
"email": "[email protected]",
"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": "./dist/pdfparser.cjs",
"module": "./dist/pdfparser.js",
"typings": "./pdfparser.d.ts",
"scripts": {
"pretest": "npm run build",
"test:jest": "jest --config ./jest.config.json",
"test": "jest --config ./jest.config.json && npm run parse-r && npm run parse-fd",
"test:forms": "cd ./test && sh p2j.forms.sh",
"test:misc": "cd ./test && sh p2j.one.sh misc . \"Expected: 13 success, 4 fail exception with stack trace\" ",
"parse": "./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form",
"parse-s": "./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s",
"parse-t": "./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t",
"parse-c": "./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t -c",
"parse-m": "./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -s -t -c -m",
"parse-r": "./bin/pdf2json.js -f ./test/pdf/fd/form/F1040.pdf -o ./test/target/fd/form -t -c -m -r",
"parse-fd": "./bin/pdf2json.js -f ./test/pdf/fd/form/ -o ./test/target/fd/form -t -c -m -r",
"parse-tb": "./bin/pdf2json.js -f ./test/pdf/misc/i242_testingWithTable.pdf -o ./test/target/misc",
"parse-tc": "./bin/pdf2json.js -f ./test/pdf/misc/i293_pdfpac.pdf -o ./test/target/misc",
"parse-rectFix": "./bin/pdf2json.js -f ./test/pdf/misc/pr298_rect_fix_from_upstream.pdf -o ./test/target/misc",
"parse-e": "./bin/pdf2json.js -f ./test/pdf/misc/i43_encrypted.pdf -o ./test/target/misc",
"build:rollup": "rollup -c ./rollup.config.js",
"build:bundle-pdfjs-base": "node rollup/bundle-pdfjs-base.js",
"build": "npm run build:bundle-pdfjs-base && npm run build:rollup",
"build:clean": "rm -rf node_modules && rm -f package-lock.json && npm i && npm run build"
},
"engines": {
"node": ">=20.18.0",
"npm": ">=10.8.2"
},
"type": "module",
"bin": {
"pdf2json": "./bin/pdf2json.js"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.5"
},
"bundledDependencies": [
"@xmldom/xmldom"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.16.0",
"jest": "^29.7.0",
"rollup": "^4.22.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"tslib": "^2.6.2"
},
"resolutions": {
"typescript": "5.7.0"
},
"maintainers": [{
"name": "Modesty Zhang",
"email": "[email protected]",
"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",
"exports": {
".": {
"types": "./dist/pdfparser.d.ts",
"import": "./dist/pdfparser.js",
"require": "./dist/pdfparser.cjs"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.com/",
"access": "public"
}
}