-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
91 lines (91 loc) · 2.49 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@onfido/react-native-sdk",
"title": "React Native Onfido Sdk",
"version": "14.1.0",
"description": "Onfido React Native SDK",
"main": "index.ts",
"scripts": {
"lint": "echo \"Skipping SDK linting...\"",
"test": "echo \"RN SDK testing...\"; jest --coverage",
"updateGradleMultiDex": "node scripts/android_enable_multi_dex.js",
"updateGradleMavenLink": "node scripts/android_add_maven_link.js",
"updateBuildGradle": "npm run updateGradleMultiDex && npm run updateGradleMavenLink",
"updateColors": "node scripts/update_colors.js",
"updateOnfido": "npm run updateBuildGradle && npm run updateColors",
"iOSTest": "cd ios && xcodebuild test-without-building -workspace \"OnfidoSdk.xcworkspace\" -scheme \"OnfidoSdkTests\" -destination \"platform=iOS Simulator,name=iPhone 8,OS=13.3\" -only-testing:OnfidoSdkTests"
},
"publishConfig": {
"access": "public"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"/node_modules/(?!(@react-native|react-native)/).*/"
],
"testPathIgnorePatterns": [
"/TestApp",
"/SampleApp"
],
"globals": {
"__DEV__": true
},
"moduleFileExtensions": [
"js",
"json",
"jsx",
"ts",
"tsx",
"node",
"android.js",
"ios.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/onfido/react-native-sdk.git",
"baseUrl": "https://github.com/onfido/react-native-sdk"
},
"keywords": [
"react-native",
"onfido",
"sdk",
"document",
"capture",
"identity",
"verification"
],
"author": {
"name": "SDK Customer Support",
"email": "[email protected]",
"url": "https://github.com/onfido"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react": ">=17.0.0",
"react-native": ">=0.70.0 <1.0.x"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@react-native-community/cli-platform-android": "^6.3.0",
"@react-native/metro-config": "^0.73.5",
"@types/react-native": "^0.72.1",
"babel-jest": "^29.6.3",
"babel-preset-react-native": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.3",
"metro-react-native-babel-preset": "^0.77.0",
"react": "18.2.0",
"react-native": "0.73.8",
"typescript": "^5.0.4"
},
"dependencies": {
"js-base64": "3.7.5"
},
"engines": {
"node": ">=18"
}
}