forked from BlinkID/blinkid-in-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
{
"name": "@microblink/blinkid-in-browser-sdk",
"version": "5.13.0",
"description": "A simple ID scanning library for WebAssembly-enabled browsers.",
"homepage": "https://github.com/BlinkID/blinkid-in-browser",
"repository": "github:BlinkID/blinkid-in-browser",
"bugs": "https://github.com/BlinkID/blinkid-in-browser/issues",
"keywords": [
"webassembly",
"ocr",
"identity-documents",
"identity-document",
"browser",
"optical-character-recognition",
"mrz",
"mrtd",
"pdf417"
],
"engines": {
"node": ">=12.0.0"
},
"main": "lib/blinkid-sdk.js",
"module": "es/blinkid-sdk.js",
"unpkg": "dist/blinkid-sdk.js",
"types": "types/index.d.ts",
"files": [
"ui/dist",
"ui/loader",
"ui/src",
"dist",
"es",
"lib",
"resources",
"src",
"types"
],
"scripts": {
"build": "rollup -c",
"build:ui": "cd ui && npm install && npm run build",
"check-types": "tsc --noEmit",
"clean": "rimraf dist es lib types",
"lint": "eslint --ext ts -c .eslintrc.json src",
"pretest": "npm run build",
"prepublishOnly": "npm run clean && npm run check-types && npm run lint && npm test",
"test": "echo \"Not implemented!\""
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-node-resolve": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "7.6.0",
"handlebars": "^4.7.7",
"rimraf": "^3.0.2",
"rollup": "^2.15.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"tslib": "^2.0.0",
"typescript": "^3.8.3",
"wasm-feature-detect": "^1.2.9",
"yargs": "^16.2.0"
}
}