-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "pdf2html",
"version": "3.1.0",
"description": "PDF to HTML or Text conversion using Apache Tika. Also generate PDF thumbnail using Apache PDFBox.",
"main": "index.js",
"scripts": {
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"test": "TZ=UTC mocha --timeout 10000",
"postinstall": "node postinstall.js"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"debug": "^4.3.4",
"fs-extra": "^11.1.0",
"gm": "^1.25.0",
"lodash.defaults": "^4.2.0",
"urijs": "^1.19.7"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.2.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/shebinleo/pdf2html.git"
},
"bugs": {
"url": "https://github.com/shebinleo/pdf2html/issues"
},
"keywords": [
"pdftohtml",
"tika",
"pdfbox",
"convert",
"pdf",
"html",
"thumbnail"
],
"author": "Shebin Leo Vincent <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">= 14"
},
"pre-commit": [
"lint"
]
}