-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
{
"name": "@hawcx/react-native-sdk",
"version": "1.1.5",
"description": "React Native SDK that wraps the Hawcx iOS and Android SDKs for secure mobile authentication across V5 and V6 flows.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"source": "src/index.ts",
"react-native": "src/index.ts",
"files": [
"lib/commonjs/",
"lib/module/",
"lib/typescript/*.d.ts",
"lib/typescript/*.d.ts.map",
"src/index.ts",
"src/v6Normalization.ts",
"src/v6State.ts",
"src/v6Types.ts",
"src/v6WebLogin.ts",
"ios/HawcxReactNative.m",
"ios/HawcxReactNative.swift",
"ios/HawcxV6BridgeSupport.swift",
"ios/Frameworks/HawcxFramework.xcframework/",
"android/build.gradle",
"android/consumer-rules.pro",
"android/gradle.properties",
"android/settings.gradle",
"android/src/",
"CHANGELOG.md",
"HawcxReactNative.podspec",
"README.md"
],
"scripts": {
"clean": "rimraf lib",
"lint": "eslint . --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit",
"test": "jest",
"build": "bob build",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run typecheck && npm run build"
},
"keywords": [
"hawcx",
"react-native",
"authentication",
"secure-enclave",
"sdk"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hawcx/react-native-sdk.git"
},
"author": "Hawcx Engineering",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.73.0"
},
"devDependencies": {
"@react-native/eslint-config": "^0.74.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"metro-react-native-babel-preset": "^0.76.8",
"prettier": "2.8.8",
"react": "18.2.0",
"react-native": "0.73.9",
"react-native-builder-bob": "^0.22.0",
"react-test-renderer": "18.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.3"
}
}