This repository was archived by the owner on Sep 7, 2021. It is now read-only.
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
65 lines (65 loc) · 1.64 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.64 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
{
"name": "pdf2json",
"version": "1.2.4",
"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": "node pdf2json.js -f ./test/pdf/misc/ -o ./test/target/misc/ -c -m"
},
"engines": {
"node": ">=12.20.0"
},
"bin": {
"pdf2json": "./bin/pdf2json"
},
"dependencies": {
"async": "^3.2.0",
"lodash": "^4.17.21",
"@xmldom/xmldom": "^0.7.0",
"yargs": "^17.0.1"
},
"devDependencies": {},
"bundledDependencies": [
"async",
"lodash",
"@xmldom/xmldom",
"yargs"
],
"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"
}