forked from FormidableLabs/react-native-app-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 1.7 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
{
"name": "react-native-app-auth",
"version": "6.4.3",
"description": "React Native bridge for AppAuth for supporting any OAuth 2 provider",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint ."
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"prettier --write",
"git add"
]
},
"files": [
"android",
"ios",
"index.d.ts",
"react-native-app-auth.podspec"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/react-native-app-auth.git"
},
"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"
],
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.63.0"
},
"devDependencies": {
"babel-eslint": "10.0.3",
"eslint": "6.8.0",
"eslint-config-formidable": "4.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jest": "23.3.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"husky": "4.0.1",
"jest": "24.9.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"react": "16.9.0",
"react-native": "0.61.5"
},
"dependencies": {
"invariant": "2.2.4",
"react-native-base64": "0.0.2"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}