package.json
1.27 KB
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
58
{
"name": "tesseract.js-core",
"version": "2.2.0",
"description": "Tesseract C++ API in Pure Javascript",
"main": "index.js",
"scripts": {
"test": "mocha ./tests/unit/*.test.js",
"example": "http-server -p 3000"
},
"files": [
"index.js",
"tesseract-core.asm.js",
"tesseract-core.js",
"tesseract-core.wasm",
"tesseract-core.wasm.js"
],
"repository": {
"type": "git",
"url": "https://github.com/naptha/tesseract.js-core.git"
},
"keywords": [
"ocr",
"tesseract",
"javascript",
"emscripten",
"port",
"c++",
"api",
"recognize",
"text",
"computer",
"vision",
"vision",
"language",
"multilingual",
"english"
],
"author": "antimatter15",
"contributors": [
"jeromewu"
],
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/naptha/tesseract.js-core/issues"
},
"homepage": "https://github.com/naptha/tesseract.js-core",
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"expect.js": "^0.3.1",
"http-server": "^0.11.1",
"mocha": "^5.2.0",
"tesseract.js-utils": "^1.0.0-beta.8"
}
}