-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 873 Bytes
/
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
{
"name": "pdftk2json",
"version": "1.0.2",
"description": "Convert pdftk output HTML into JSON",
"license": "MIT",
"repository": "RichardLitt/pdftk2json",
"author": {
"name": "Richard Littauer",
"email": "richard.littauer@gmail.com",
"url": "http://www.burntfen.com"
},
"bin": "cli.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"lint": "standard",
"test": "standard && mocha"
},
"files": [
"index.js",
"cli.js"
],
"keywords": [
"cli-app",
"cli",
"pdftk",
"json",
"html",
"xml",
"parse"
],
"dependencies": {
"fs": "0.0.2",
"inline-style-2-json": "^1.0.1",
"meow": "^3.3.0",
"through2": "^2.0.0",
"xml-nodes": "^0.1.4",
"xml-objects": "0.0.1"
},
"devDependencies": {
"assert": "^1.3.0",
"mocha": "^2.3.3",
"standard": "^5.3.1"
}
}