forked from zoontek/react-native-permissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1014 Bytes
/
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
{
"name": "react-native-permissions",
"version": "1.2.0",
"description": "Check user permissions in React Native",
"author": "Yonah Forst <[email protected]>",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/react-native-community/react-native-permissions#readme",
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-permissions.git"
},
"keywords": [
"react-native",
"react native",
"react-permissions",
"permissions",
"authorization"
],
"scripts": {
"precommit": "lint-staged",
"typecheck": "flow .",
"format": "prettier --write '**/*.{js,json,md,ts,tsx}'"
},
"lint-staged": {
"**/*.{js,json,md,ts,tsx}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"flow-bin": "0.98.0",
"husky": "3.0.0",
"lint-staged": "9.2.0",
"prettier": "1.18.2"
},
"peerDependencies": {
"@react-native-community/async-storage": "^1.5.1"
}
}