-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.69 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
{
"name": "react-native-home-indicator",
"version": "0.2.10",
"description": "A declarative approach for hiding the Apple Home Indicator in react-native",
"main": "index.tsx",
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --watch",
"tsc": "tsc",
"eslint": "eslint .",
"codecov": "codecov"
},
"keywords": [
"react-native",
"Home Indicator",
"prefersHomeIndicatorAutoHidden",
"iphoneX",
"Safe Area"
],
"repository": {
"type": "git",
"url": "https://github.com/flowkey/react-native-home-indicator"
},
"author": "flowkey.com",
"contributors": [
{
"name": "Michael Knoch"
}
],
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.41.2"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.1",
"@types/react": "^17.0.44",
"@types/react-native": "^0.67.6",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.2.5",
"codecov": "^3.7.2",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.25.2",
"jest": "^27.2.5",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-native": "^0.66.1",
"react-test-renderer": "^17.0.2",
"typescript": "^4.6.4"
},
"files": [
"ios",
"react-native-home-indicator.podspec"
],
"jest": {
"preset": "react-native"
}
}