forked from frankred/node-ocr-by-image-url
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 797 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
{
"name": "ocr-by-image-url",
"version": "0.0.1",
"description": "Simple to use module to recognize texts in images by an image url",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frankred/node-ocr-by-image-url.git"
},
"keywords": [
"ocr",
"image",
"url",
"tesseract",
"node-tesseract"
],
"author": "Frank Roth",
"license": "MIT",
"bugs": {
"url": "https://github.com/frankred/node-ocr-by-image-url/issues"
},
"homepage": "https://github.com/frankred/node-ocr-by-image-url#readme",
"dependencies": {
"async": "^1.5.0",
"debug": "^2.2.0",
"needle": "^0.11.0",
"node-tesseract": "^0.2.7",
"node-uuid": "^1.4.4"
}
}