forked from FormidableLabs/react-native-app-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.73 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
{
"name": "react-native-app-auth",
"version": "5.0.0-rc1",
"description": "React Native bridge for AppAuth for supporting any OAuth 2 provider",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint .",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.ts": [
"prettier --write",
"git add"
]
},
"files": [
"package.json",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE",
"ios",
"android",
"index.js",
"index.d.ts"
],
"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",
"appauth"
],
"author": "kadi.kraman@formidable.com",
"license": "MIT",
"peerDependencies": {
"invariant": "^2.2.2",
"react-native": ">=0.60.0"
},
"devDependencies": {
"all-contributors-cli": "^4.9.1",
"babel-eslint": "^8.0.2",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.1",
"eslint": "4.18.2",
"eslint-config-formidable": "^3.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-filenames": "^1.2.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"invariant": "^2.2.2",
"jest": "^21.2.1",
"lint-staged": "^6.1.0",
"prettier": "1.10.2",
"react": "^16.1.1",
"react-native": "^0.50.3"
},
"dependencies": {}
}