forked from dbashford/textract
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.33 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
{
"name": "@nosferatu500/textract",
"version": "3.1.3",
"homepage": "https://github.com/nosferatu500/textract",
"description": "Extracting text from files of various type including html, pdf, doc, docx, xls, xlsx, csv, pptx, png, jpg, gif, rtf, text/*, and various open office.",
"contributors": [
{
"name": "David Bashford",
"email": "dbashford@hotmail.com"
},
{
"name": "Vitalii Shvetsov",
"email": "vitalya199529@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/nosferatu500/textract"
},
"keywords": [
"textract",
"extract",
"html",
"csv",
"text",
"pdf",
"docx",
"doc",
"xls",
"xlsx",
"png",
"jpg",
"gif",
"rtf",
"dxf",
"pptx",
"html",
"markdown",
"xml",
"odt",
"ott",
"xlsb",
"xlsm",
"xltx",
"ods",
"ots",
"potx",
"odg",
"otg",
"epub",
"text"
],
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": false,
"bracketSameLine": false,
"tabWidth": 4,
"printWidth": 120
},
"dependencies": {
"@xmldom/xmldom": "0.8.6",
"cheerio": "1.0.0-rc.12",
"epub2": "1.3.8",
"got": "^11.8.6",
"html-entities": "^2.3.3",
"iconv-lite": "0.6.3",
"jschardet": "3.0.0",
"marked": "^4.2.12",
"meow": "^9.0.0",
"mime": "3.0.0",
"pdf-text-extract": "1.5.0",
"xlsx": "^0.18.5",
"xpath": "0.0.32",
"yauzl": "2.10.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-sonarjs": "^0.18.0",
"eslint-plugin-unicorn": "^45.0.2",
"mocha": "^9.2.2",
"prettier": "^2.8.3"
},
"scripts": {
"test": "node_modules/.bin/mocha",
"prettier": "prettier --write '{lib,test}/**/*.js' --cache",
"lint": "yarn prettier && node_modules/.bin/eslint -c .eslintrc.json lib --cache"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16"
},
"bin": {
"textract": "./bin/textract"
},
"main": "./lib/index"
}