-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
47 lines (47 loc) · 923 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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "tika",
"version": "1.6.1",
"description": "Apache Tika bridge. Text extraction, metadata extraction, mimetype detection and language detection.",
"scripts": {
"test": "mocha --ui tdd test"
},
"keywords": [
"docx",
"pdf",
"doc",
"xlsx",
"content analysis",
"office"
],
"homepage": "https://github.com/ICIJ/node-tika",
"main": "./tika",
"author": "Matthew Caruana Galizia <[email protected]>",
"contributors": [
{
"name": "Matthias Götzke",
"email": "[email protected]"
},
{
"name": "James Garner",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ICIJ/node-tika.git"
},
"bugs": {
"url": "https://github.com/ICIJ/node-tika/issues"
},
"license": "MIT",
"dependencies": {
"java": "~0.8.0"
},
"devDependencies": {
"mocha": "~3.2.0",
"istanbul": "~0.4.5"
},
"engines" : {
"node" : ">=0.10.0"
}
}