-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
100 lines (100 loc) · 2.09 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
{
"name": "office-text-extractor",
"version": "3.0.3",
"description": "Yet another library to extract text from MS Office and PDF files",
"keywords": [
"text-extraction",
"get-text",
"parser",
"ms-office",
"ms-excel",
"ms-word",
"ms-powerpoint",
"xlsx",
"docx",
"pptx",
"pdf"
],
"author": "Vedant K <https://github.com/gamemaker1>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/gamemaker1/office-text-extractor.git"
},
"bugs": {
"url": "https://github.com/gamemaker1/office-text-extractor/issues"
},
"homepage": "https://github.com/gamemaker1/office-text-extractor#readme",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"license.md",
"readme.md",
"package.json",
"tsconfig.json",
"build/",
"source/"
],
"type": "module",
"engines": {
"node": ">= 16"
},
"scripts": {
"compile": "tsc",
"test": "run-s test:compile test:integration",
"test:compile": "tsc --noEmit",
"test:quality": "xo source/ test/",
"test:integration": "TSIMP_DIAG=ignore ava"
},
"dependencies": {
"buffer": "6.0.3",
"fflate": "0.8.2",
"file-type": "19.3.0",
"got": "14.4.1",
"js-yaml": "4.1.0",
"mammoth": "1.8.0",
"pdf-parse": "1.1.1",
"text-encoding": "0.7.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
"xml2js": "0.6.2"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "20.14.11",
"@types/text-encoding": "0.0.39",
"@types/xml2js": "0.4.14",
"ava": "6.1.3",
"np": "10.0.7",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"tsimp": "2.0.11",
"typescript": "5.5.4",
"xo": "0.59.0"
},
"prettier": {
"semi": false,
"useTabs": true,
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "all",
"proseWrap": "always",
"endOfLine": "lf"
},
"xo": {
"prettier": true,
"rules": {
"capitalized-comments": 0,
"no-await-in-loop": 0,
"@typescript-eslint/no-unsafe-return": 0,
"@typescript-eslint/no-unsafe-call": 0
}
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsimp"
]
}
}