-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 953 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
{
"name": "any-text",
"version": "1.2.0",
"description": "Get text content from any file",
"main": "./index.js",
"keywords": [
"text-extract",
"get-text",
"parser",
"file-reader"
],
"scripts": {
"test": "mocha test/**/*.spec.js --timeout 15000"
},
"author": "Abhinaba Ghosh <askabhinaba@gmail.com>",
"license": "MIT",
"dependencies": {
"node-stream-zip": "^1.11.2",
"pdf-parse": "^1.1.1",
"word-extractor": "^1.0.4",
"xlsx": "^0.18.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/abhinaba-ghosh/any-text.git"
},
"bugs": {
"url": "https://github.com/abhinaba-ghosh/any-text/issues"
},
"homepage": "https://github.com/abhinaba-ghosh/any-text#readme"
}