123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {
- "name": "react-native-safe-area-context",
- "version": "0.4.1",
- "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",
- "!/android/build",
- "/ios",
- "/*.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",
- "prepare": "bob build"
- },
- "keywords": [
- "react-native",
- "react native",
- "react-native-web",
- "expo-web",
- "safe area",
- "view"
- ],
- "peerDependencies": {
- "react-native": ">=0.59"
- },
- "dependencies": {},
- "devDependencies": {
- "@react-native-community/bob": "^0.7.0",
- "@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"
- },
- "jest": {
- "modulePathIgnorePatterns": [
- "<rootDir>/lib/"
- ]
- },
- "@react-native-community/bob": {
- "source": "src",
- "output": "lib",
- "targets": [
- "commonjs",
- "module",
- "typescript"
- ]
- }
- }
|