-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 3.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@softwhere-uz/react-native-myid",
"version": "0.1.7",
"description": "MyID biometric eKYC (face liveness) for React Native & Expo — New Architecture, config plugin, maintained.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "node internal/module_scripts/build.js",
"build:plugin": "tsc --build plugin --force",
"clean": "node internal/module_scripts/clean.js",
"lint": "eslint src plugin/src",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:ci": "jest --ci --runInBand --coverage",
"prepare": "node internal/module_scripts/prepare.js",
"open:ios": "node internal/module_scripts/open-ios.js",
"open:android": "node internal/module_scripts/open-android.js"
},
"keywords": [
"react-native",
"expo",
"expo-config-plugin",
"myid",
"kyc",
"ekyc",
"biometric",
"liveness",
"face-recognition",
"identity-verification",
"uzbekistan",
"ios",
"android",
"face-liveness",
"liveness-detection",
"myid-sdk",
"identification",
"verification",
"uzinfocom",
"expo-module"
],
"repository": {
"type": "git",
"url": "git+https://github.com/softwhere-uz/react-native-myid.git"
},
"bugs": {
"url": "https://github.com/softwhere-uz/react-native-myid/issues"
},
"author": "Kamronbek Juraev <kamuranbek1998@gmail.com> (https://github.com/KAMRONBEK)",
"license": "MIT",
"homepage": "https://github.com/softwhere-uz/react-native-myid#readme",
"publishConfig": {
"access": "public"
},
"files": [
"build",
"plugin/build",
"app.plugin.js",
"ios/MyId.podspec",
"ios/MyIdModule.swift",
"android/build.gradle",
"android/src",
"expo-module.config.json",
"LICENSE",
"NOTICE",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=18"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@expo/config-plugins": "~57.0.5",
"@types/jest": "^29.2.1",
"@types/react": "~19.1.1",
"eslint": "~9.39.4",
"eslint-config-universe": "^15.0.3",
"expo-modules-core": "~57.0.6",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"typescript": "^5.9.2"
},
"jest": {
"testEnvironment": "node",
"roots": [
"<rootDir>/src",
"<rootDir>/plugin/src",
"<rootDir>/internal/module_scripts"
],
"testMatch": [
"**/__tests__/**/*.test.[jt]s?(x)",
"**/*.test.[jt]s?(x)"
],
"collectCoverageFrom": [
"src/**/*.ts",
"plugin/src/**/*.ts",
"internal/module_scripts/verify-pack.js",
"internal/module_scripts/check-sdk-staleness.js",
"!**/__tests__/**",
"!src/MyId.types.ts"
],
"coverageReporters": [
"text-summary",
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"statements": 98,
"branches": 95,
"functions": 100,
"lines": 98
}
},
"transform": {
"^.+\\.[jt]sx?$": [
"babel-jest",
{
"configFile": false,
"babelrc": false,
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
}
]
}
},
"peerDependencies": {
"expo": ">=51.0.0",
"react": ">=18.0.0",
"react-native": ">=0.74.0"
}
}