forked from zoontek/react-native-permissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2 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
79
80
81
82
83
{
"name": "react-native-permissions",
"version": "3.0.4",
"license": "MIT",
"description": "An unified permissions API for React Native on iOS, Android and Windows",
"author": "Mathieu Acthernoene <[email protected]>",
"homepage": "https://github.com/zoontek/react-native-permissions#readme",
"repository": {
"type": "git",
"url": "https://github.com/zoontek/react-native-permissions.git"
},
"keywords": [
"react-native",
"react native",
"react-native-windows",
"permission",
"authorization"
],
"types": "dist/typescript/index.d.ts",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"files": [
"/android",
"!/android/build",
"/dist",
"/ios",
"/windows",
"/src",
"/*.podspec",
"mock.js"
],
"scripts": {
"start": "react-native start",
"prepare": "bob build",
"format": "prettier '**/*.{js,json,md,ts,tsx}' --write",
"lint": "eslint \"./**/*.{js,ts,tsx}\"",
"tscheck": "tsc --project ./ --noEmit"
},
"@react-native-community/bob": {
"source": "src",
"output": "dist",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"prettier --write",
"eslint"
],
"**/*.{json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"peerDependencies": {
"react": ">=16.13.1",
"react-native": ">=0.63.3",
"react-native-windows": ">=0.62.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@react-native-community/bob": "^0.16.2",
"@types/react-native": "^0.63.37",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"react": "16.13.1",
"react-native": "0.63.3",
"typescript": "^4.1.2"
}
}