forked from alsenet-labs/mrz-scanner
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.82 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.82 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mrz-scan",
"version": "1.2.0",
"description": "Server side mrz (Machine Readable Zone) scanner.",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"build": "babel src/ --out-dir build/",
"start": "nodemon --exec \"yarn build && node ./test/index.js && echo \"Restarted!\" \" "
},
"repository": {
"type": "git",
"url": "https://github.com/ProjectINT/mrz-scan"
},
"keywords": [
"mrz",
"scanner",
"detect",
"ocr",
"parse"
],
"copyright": "(C) 2022 Kiev",
"author": "admin@somnium.su",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ProjectINT/mrz-scan/issues"
},
"homepage": "https://github.com/ProjectINT/mrz-scan",
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/cli": "^7.0.0-beta.40",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-react-transform": "^3.0.0",
"@babel/preset-flow": "^7.18.6",
"eslint": "^6.0.1",
"eslint-plugin-flowtype": "^3.11.1",
"flow-bin": "^0.183.0",
"flow-remove-types": "^2.193.0",
"nodemon": "^1.19.1"
},
"dependencies": {
"bson": "2.0.4",
"hog-features": "^1.0.0",
"image-js": "^0.35.2",
"libsvm-js": "^0.2.1",
"lockfile-lint": "^4.9.6",
"lodash.groupby": "^4.6.0",
"lodash.range": "^3.2.0",
"lodash.uniq": "^4.5.0",
"luxon": "^3.1.0",
"ml-kernel": "2.3.4",
"ml-matrix": "^6.10.4",
"mrz": "^3.1.4",
"radians-degrees": "^1.0.0",
"transformation-matrix": "^2.14.0"
},
"engines": {
"node": ">=14.0.0"
},
"nodemonConfig": {
"ignore": ["./build/*", "./node_modules/*"],
"delay": "1000",
"verbose": true,
"watch": [
"./src/*",
"./models/*",
"./test/*",
"./index.js",
"./.babelrc",
"./.eslintrc.js"
]
}
}