forked from AppAndFlow/react-native-safe-area-context
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.33 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-native-safe-area-context",
"version": "2.0.0",
"description": "A flexible way to handle safe area, also works on Android and web.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.tsx",
"types": "lib/typescript/src/index.d.ts",
"sideEffects": false,
"files": [
"/src",
"/lib",
"/android",
"/ios",
"/*.podspec"
],
"author": "Janic Duplessis <[email protected]>",
"contributors": [
"Evan Bacon <[email protected]> (https://github.com/evanbacon)"
],
"homepage": "https://github.com/th3rdwave/react-native-safe-area-context#readme",
"license": "MIT",
"scripts": {
"start": "react-native start",
"test": "yarn validate:prettier && yarn validate:eslint && yarn validate:typescript && yarn validate:jest",
"validate:eslint": "eslint \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\"",
"validate:typescript": "tsc --project ./ --noEmit",
"validate:prettier": "prettier \"src/**/*.{js,ts,tsx}\" \"example/**/*.{js,ts,tsx}\" --check",
"validate:jest": "jest",
"prepare": "bob build",
"example:ios": "cd ./example && react-native run-ios",
"example:android": "cd ./example && react-native run-android --no-jetifier",
"example:expo": "expo start --config example/app.json"
},
"keywords": [
"react-native",
"react native",
"react-native-web",
"expo-web",
"safe area",
"view"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {},
"devDependencies": {
"@react-native-community/async-storage": "^1.10.1",
"@react-native-community/bob": "^0.10.1",
"@react-native-community/eslint-config": "^1.1.0",
"@react-native-community/masked-view": "^0.1.10",
"@react-navigation/native": "^5.3.2",
"@react-navigation/stack": "^5.3.6",
"@react-navigation/bottom-tabs": "^5.4.4",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.5",
"@types/react-dom": "^16.9.7",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "3.1.3",
"expo": "^37.0.8",
"expo-cli": "^3.20.1",
"jest": "^25.5.4",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-native": "^0.63.0-rc.0",
"react-native-web": "^0.12.2",
"react-navigation": "^4.3.9",
"react-navigation-stack": "^2.5.0",
"react-navigation-tabs": "^2.8.13",
"react-native-safe-area-view": "1.1.1",
"react-native-gesture-handler": "^1.6.1",
"react-native-screens": "^2.7.0",
"react-native-reanimated": "^1.8.0",
"react-test-renderer": "^16.13.1",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/th3rdwave/react-native-safe-area-context.git"
},
"jest": {
"preset": "react-native",
"testEnvironment": "node",
"clearMocks": true,
"modulePathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}