forked from FormidableLabs/react-native-app-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.58 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.58 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
{
"name": "react-native-app-auth",
"version": "8.1.0",
"description": "React Native bridge for AppAuth for supporting any OAuth 2 provider",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint .",
"build": "expo-module build plugin",
"clean": "expo-module clean plugin",
"lint:plugin": "expo-module lint plugin",
"test:plugin": "expo-module test plugin"
},
"files": [
"android",
"ios",
"plugin/build",
"plugin/src",
"app.plugin.js",
"index.d.ts",
"react-native-app-auth.podspec"
],
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/react-native-app-auth"
},
"bugs": {
"url": "https://github.com/FormidableLabs/react-native-app-auth/issues"
},
"homepage": "https://github.com/FormidableLabs/react-native-app-auth",
"keywords": [
"react",
"react-native",
"auth",
"authentication",
"oauth",
"oauth2",
"appauth"
],
"license": "MIT",
"author": "Nearform Commerce (https://commerce.nearform.com)",
"peerDependencies": {
"react-native": ">=0.63.0"
},
"devDependencies": {
"@expo/config-plugins": "~10.1.2",
"@react-native/babel-preset": "0.79.2",
"@react-native/eslint-config": "^0.81.0",
"@types/node": "^22.0.0",
"expo-module-scripts": "^4.1.10",
"jest": "^29.6.3",
"react": "19.0.0",
"react-native": "0.79.2"
},
"dependencies": {
"invariant": "2.2.4",
"react-native-base64": "0.0.2"
},
"jest": {
"preset": "react-native"
},
"publishConfig": {
"provenance": true
}
}