1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "react-native-safe-area-context",
- "version": "0.3.0",
- "description": "A flexible way to handle safe area, also works on Android and web.",
- "main": "src/index",
- "module": "src/index",
- "sideEffects": false,
- "files": [
- "/android",
- "!/android/build",
- "/ios",
- "/src",
- "/*.podspec"
- ],
- "author": "Janic Duplessis <janicduplessis@gmail.com>",
- "contributors": [
- "Evan Bacon <bacon@expo.io> (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",
- "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"
- },
- "keywords": [
- "react-native",
- "react native",
- "react-native-web",
- "expo-web",
- "safe area",
- "view"
- ],
- "peerDependencies": {
- "react-native": ">=0.59"
- },
- "dependencies": {},
- "devDependencies": {
- "@react-native-community/eslint-config": "^0.0.5",
- "@types/react-native": "^0.60.5",
- "@typescript-eslint/eslint-plugin": "^1.7.0",
- "@typescript-eslint/parser": "^1.7.0",
- "eslint": "5.16.0",
- "eslint-config-prettier": "^4.2.0",
- "eslint-plugin-prettier": "3.0.1",
- "expo": "^34.0.4",
- "metro-react-native-babel-preset": "^0.55.0",
- "prettier": "^1.18.2",
- "react": "^16.8.3",
- "react-dom": "^16.9.0",
- "react-native": "^0.60.5",
- "react-native-web": "^0.11.7",
- "typescript": "^3.5.3"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/th3rdwave/react-native-safe-area-context.git"
- }
- }
|