-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "@shelf/tika-text-extract",
"version": "3.0.0",
"description": "Extract text from documents with Apache Tika",
"repository": "shelfio/tika-text-extract",
"license": "MIT",
"author": "Vlad Holubiev",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"build": "rm -rf lib/ && babel src --out-dir lib --ignore 'src/*.test.ts','src/*.types.ts' --extensions '.ts'",
"coverage": "jest --coverage",
"lint": "eslint . --ext .js,.ts,.json --fix",
"prepublish": "npm run build",
"test": "jest"
},
"babel": {
"extends": "@shelf/babel-config/backend"
},
"prettier": "@shelf/prettier-config",
"jest": {
"rootDir": "src",
"testEnvironment": "node"
},
"dependencies": {
"debug": "^4.0.0",
"get-stream": "^6.0.0",
"got": "11.8.6",
"into-stream": "^3.1.0",
"is-stream": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@shelf/babel-config": "3.0.0",
"@shelf/eslint-config": "3.15.1",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.1.0",
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"@types/node": "16",
"eslint": "8.57.1",
"jest": "29.7.0",
"memorystream": "0.3.1",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}