forked from zapolnoch/node-tesseract-ocr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 872 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 872 Bytes
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
{
"name": "node-tesseract-ocr",
"version": "2.2.1",
"description": "A Node.js wrapper for the Tesseract OCR API",
"keywords": [
"ocr",
"tesseract",
"text recognition",
"optical character recognition",
"image to text"
],
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/zapolnoch/node-tesseract-ocr.git"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "npm-run-all test:*",
"test:lint": "eslint .",
"test:tape": "tape test/**/*.js",
"test:audit": "npm audit --audit-level=high"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-silence": "^0.7.1",
"eslint-plugin-prettier": "^3.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rewire": "^5.0.0",
"tape": "^5.2.2"
}
}