forked from shelfio/aws-lambda-tesseract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.13 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
{
"name": "@shelf/aws-lambda-tesseract",
"version": "1.3.2",
"description": "11 MB Tesseract (with English training data) to fit inside AWS Lambda compressed with Brotli",
"license": "MIT",
"repository": "shelfio/aws-lambda-tesseract",
"author": {
"name": "Vlad Holubiev",
"email": "[email protected]",
"url": "shelf.io"
},
"engines": {
"node": ">=8.10"
},
"scripts": {
"lint": "eslint . --fix",
"test": "TZ=UTC jest src"
},
"files": [
"src",
"bin"
],
"main": "src/index.js",
"keywords": [
"lambda",
"ocr",
"tesseract",
"brotli"
],
"dependencies": {
"@shelf/aws-lambda-brotli-unpacker": "0.0.2",
"is-image": "2.0.0"
},
"devDependencies": {
"eslint": "5.10.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.0",
"husky": "1.2.1",
"jest": "23.6.0",
"lint-staged": "8.1.0",
"prettier": "1.15.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"publishConfig": {
"access": "public"
}
}