forked from alsenet-labs/mrz-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mrz-detection",
"version": "0.3.3",
"description": "Detect Machine Readable Zones (MRZ) in images of identity documents",
"main": "src/index.js",
"files": [
"src",
"fontData/12x12/mrz/ocrb.json",
"models"
],
"scripts": {
"eslint": "eslint src run",
"eslint-fix": "npm run eslint -- --fix",
"test": "run-s testonly eslint",
"test-travis": "eslint src && jest --coverage && codecov",
"testonly": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/image-js/mrz-detection.git"
},
"keywords": [],
"author": "Jefferson Hernández",
"license": "MIT",
"bugs": {
"url": "https://github.com/image-js/mrz-detection/issues"
},
"homepage": "https://github.com/image-js/mrz-detection#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"codecov": "^3.0.0",
"eslint": "^4.18.0",
"eslint-config-cheminfo": "^1.15.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.12.2",
"jest": "^22.4.4",
"make-promises-safe": "^1.1.0",
"npm-run-all": "^4.1.2",
"papaparse": "^4.3.7",
"rimraf": "^2.6.2",
"tableify": "^1.1.0"
},
"dependencies": {
"bson": "^2.0.4",
"fs-extra": "^6.0.1",
"hog-features": "^1.0.0",
"image-js": "^0.21.0",
"libsvm-js": "^0.2.1",
"lodash.groupby": "^4.6.0",
"lodash.range": "^3.2.0",
"lodash.uniq": "^4.5.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"ml-distance": "^2.1.1",
"ml-kernel": "^2.3.4",
"ml-matrix": "^5.0.1",
"ml-param-grid": "^1.0.0",
"mrz": "^3.1.0",
"ocr-tools": "^0.1.1",
"radians-degrees": "^1.0.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"transformation-matrix": "^1.7.0"
}
}