-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 2.84 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
109
110
111
112
{
"name": "extract-text",
"version": "3.0.0",
"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.",
"keywords": [
"textract",
"extract",
"html",
"csv",
"text",
"pdf",
"docx",
"doc",
"xls",
"xlsx",
"png",
"jpg",
"gif",
"rtf",
"dxf",
"pptx",
"markdown",
"xml",
"odt",
"ott",
"xlsb",
"xlsm",
"xltx",
"ods",
"ots",
"potx",
"odg",
"otg",
"epub"
],
"homepage": "https://github.com/devmehq/extract-text",
"repository": {
"type": "git",
"url": "https://github.com/devmehq/extract-text"
},
"license": "MIT",
"author": "Mohamed Meabed",
"contributors": [
{
"name": "Mohamed Meabed",
"email": "[email protected]"
}
],
"main": "src/index",
"bin": {
"textract": "bin/textract"
},
"scripts": {
"build": "rm -rf dist && tsc -p . --skipLibCheck",
"lint": "node_modules/.bin/eslint -c .eslintrc.json src",
"lint:fix": "node_modules/.bin/eslint --fix -c .eslintrc.json src",
"mocha": "nyc mocha --report lcovonly -- test/*-test.ts",
"prepare": "yarn husky install",
"prettier": "prettier --write \"test/**/*.{ts,tsx,js,jsx}\" \"src/**/*.{ts,tsx,js,jsx}\" \"scripts/**.{ts,tsx,js,jsx}\"",
"test": "TS_NODE_TRANSPILE_ONLY=1 TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha",
"test-ci": "TS_NODE_TRANSPILE_ONLY=1 TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha"
},
"dependencies": {
"axios": "^1.0.0",
"cheerio": "1.0.0",
"epub2": "3.0.2",
"html-entities": "2.5.2",
"iconv-lite": "0.6.3",
"jschardet": "3.1.4",
"marked": "15.0.3",
"meow": "13.2.0",
"mime": "4.0.4",
"xlsx": "^0.18.5",
"@xmldom/xmldom": "0.9.5",
"xpath": "0.0.34",
"yauzl": "3.2.0"
},
"devDependencies": {
"@types/chai": "5.0.1",
"@types/eslint": "9.6.1",
"@types/eslint-plugin-prettier": "3.1.3",
"@types/marked": "6.0.0",
"@types/mime": "4.0.0",
"@types/mocha": "10.0.10",
"@types/prettier": "3.0.0",
"@types/xmldom": "0.1.34",
"@types/yauzl": "2.10.3",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"chai": "5.1.2",
"co-mocha": "1.2.2",
"eslint": "9.16.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"mocha": "10.8.2",
"nyc": "17.1.0",
"prettier": "3.4.1",
"pretty-quick": "4.0.0",
"should": "13.2.3",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"engines": {
"node": ">=14"
}
}