{
  "name": "react-native-easy-keyboard",
  "version": "0.2.0",
  "description": "A simple way to create virtual keyboards",
  "main": "lib/commonjs/index",
  "module": "lib/module/index",
  "types": "lib/typescript/index.d.ts",
  "react-native": "src/index",
  "source": "src/index",
  "files": [
    "src",
    "lib",
    "!lib/typescript/example",
    "!android/build",
    "!ios/build",
    "!**/__tests__",
    "!**/__fixtures__",
    "!**/__mocks__"
  ],
  "scripts": {
    "test": "jest",
    "typescript": "tsc --noEmit",
    "lint": "eslint \"**/*.{ts,tsx}\"",
    "prepare": "bob build",
    "release": "release-it",
    "example": "yarn --cwd example",
    "pods": "cd example && pod-install --quiet",
    "bootstrap": "yarn example && yarn && yarn pods",
    "prettier:write": "npx prettier --write **/*.{js,jsx,ts,tsx,json} && npx prettier --write *.{js,jsx,ts,tsx,json}"
  },
  "keywords": [
    "react-native",
    "ios",
    "android",
    "Keyboard",
    "Virtual keyboard",
    "Easy keyboard"
  ],
  "repository": "https://github.com/Mikael-Aberg/react-native-easy-keyboard",
  "author": "Mikael Åberg <mikael.aberg@me.com> (https://github.com/Mikael-Aberg)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Mikael-Aberg/react-native-easy-keyboard/issues"
  },
  "homepage": "https://github.com/Mikael-Aberg/react-native-easy-keyboard#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "17.0.2",
    "@react-native-community/eslint-config": "3.0.2",
    "@release-it/conventional-changelog": "5.0.0",
    "@types/react": "17.0.45",
    "commitlint": "17.0.2",
    "eslint-config-prettier": "8.5.0",
    "husky": "8.0.1",
    "pod-install": "0.1.36",
    "prettier": "2.7.1",
    "react": "17.0.2",
    "react-native": "0.68.2",
    "react-native-builder-bob": "0.18.2",
    "release-it": "15.0.0",
    "@babel/core": "7.18.2",
    "@babel/runtime": "7.18.3",
    "@types/jest": "27.5.2",
    "@types/react-native": "0.67.7",
    "@types/react-test-renderer": "17.0.2",
    "@typescript-eslint/eslint-plugin": "5.28.0",
    "@typescript-eslint/parser": "5.28.0",
    "babel-jest": "28.1.2",
    "eslint": "8.17.0",
    "jest": "28.1.2",
    "metro-react-native-babel-preset": "0.71.1",
    "react-test-renderer": "17.0.2",
    "typescript": "4.7.3"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    },
    "npm": {
      "publish": true
    },
    "github": {
      "release": true
    },
    "plugins": {
      "@release-it/conventional-changelog": {
        "preset": "angular"
      }
    }
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@react-native-community",
      "prettier"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "es5",
          "useTabs": false,
          "bracketSpacing": false,
          "bracketSameLine": true,
          "arrowParens": "avoid",
          "endOfLine": "auto"
        }
      ]
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false,
    "bracketSpacing": false,
    "bracketSameLine": true,
    "arrowParens": "avoid",
    "endOfLine": "auto"
  },
  "react-native-builder-bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "module",
      "commonjs",
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
