forked from cheminfo/mrz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "mrz",
"version": "3.1.2",
"description": "Parse MRZ (Machine Readable Zone) from identity documents",
"main": "./src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint builder src",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest",
"build": "npm run buildStates && cheminfo-build",
"prepublishOnly": "npm run buildStates",
"buildStates": "node builder/createStatesJs.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cheminfo/mrz.git"
},
"keywords": [
"mrz",
"machine",
"readable",
"zone",
"identity",
"documents",
"card",
"passport"
],
"author": "Luc Patiny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/mrz/issues"
},
"homepage": "https://github.com/cheminfo/mrz#readme",
"devDependencies": {
"cheminfo-build": "^1.1.9",
"eslint": "^7.20.0",
"eslint-config-cheminfo": "^5.2.3",
"jest": "^26.6.3",
"prettier": "^2.2.1"
}
}