forked from modesty/pdf2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "pdf2json",
"version": "1.1.6",
"description": "A 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": "[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": "./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": ">=4.0"
},
"bin": {
"pdf2json": "./bin/pdf2json"
},
"dependencies": {
"xmldom": "~0.1.22",
"underscore": "~1.8.3",
"optimist": "~0.6.1",
"async": "~1.5.2"
},
"devDependencies": {
},
"bundledDependencies": [
"xmldom",
"underscore",
"optimist",
"async"
],
"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"
},
"licenses": [
{
"type": "Apache v2",
"url": "https://github.com/modesty/pdf2json/blob/master/license.txt"
}
],
"readme": "https://github.com/modesty/pdf2json/blob/master/readme.md"
}