{
  "name": "react-native-ama",
  "version": "0.7.5",
  "description": "Accessible Mobile App Library for React Native",
  "main": "dist/commonjs/index",
  "module": "dist/module/index",
  "types": "dist/typescript/index.d.ts",
  "react-native": "lib/index",
  "source": "lib/index",
  "scripts": {
    "prepare": "husky install",
    "test": "jest",
    "ts:check": "tsc --noEmit",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
    "lint:fix": "yarn lint --fix",
    "build": "bob build",
    "example": "yarn --cwd example",
    "fabric": "yarn --cwd FabricExample",
    "pods": "cd example && pod-install --quiet",
    "bootstrap": "yarn example && yarn && yarn pods",
    "postinstall": "./scripts/init.sh",
    "coverage": "yarn run test -- --coverage --watchAll=false",
    "doc": "cd website && yarn start"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "keywords": [
    "react-native",
    "ios",
    "android",
    "a11y",
    "accessibility"
  ],
  "repository": "https://github.com/FormidableLabs/react-native-ama",
  "author": "Alessandro Senese <alessandro.senese@formidable.com> (https://github.com/FormidableLabs)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/FormidableLabs/react-native-ama/issues"
  },
  "homepage": "https://github.com/FormidableLabs/react-native-ama#readme",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "provenance": true
  },
  "devDependencies": {
    "@changesets/cli": "^2.26.2",
    "@commitlint/cli": "^17.0.0",
    "@commitlint/config-conventional": "^17.0.0",
    "@ianvs/prettier-plugin-sort-imports": "^3.4.2",
    "@react-native-community/eslint-config": "^2.0.0",
    "@react-navigation/stack": "^6.2.1",
    "@svitejs/changesets-changelog-github-compact": "^0.1.1",
    "@testing-library/react-hooks": "^8.0.0",
    "@testing-library/react-native": "^9.1.0",
    "@types/jest": "^26.0.0",
    "@types/react": "^17",
    "@types/react-native": "^0.68.0",
    "babel-jest": "^29.2.1",
    "babel-plugin-transform-strip-block": "^0.0.5",
    "commitlint": "^11.0.0",
    "eslint": "^7.2.0",
    "eslint-config-prettier": "^7.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^3.1.3",
    "husky": "^8.0.1",
    "jest": "^26.0.1",
    "pod-install": "^0.1.0",
    "prettier": "^2.0.5",
    "react": "17",
    "react-native": "0.66",
    "react-native-builder-bob": "^0.18.2",
    "react-native-fs": "^2.20.0",
    "react-native-gesture-handler": "^2.4.2",
    "react-native-reanimated": "2.7",
    "react-test-renderer": "17",
    "typescript": "^4.1.3",
    "wcag-color": "^1.1.1"
  },
  "peerDependencies": {
    "react": ">=17",
    "react-native": ">=0.66",
    "react-native-gesture-handler": "*",
    "react-native-reanimated": "*",
    "wcag-color": "^1.1.1"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/dist/",
      "<rootDir>/src/"
    ],
    "collectCoverageFrom": [
      "lib/**/*.{ts,tsx}"
    ],
    "coverageThreshold": {
      "global": {
        "statements": 90,
        "branches": 82,
        "functions": 83,
        "lines": 91
      }
    },
    "setupFilesAfterEnv": [
      "./jest.setup.js"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!(@react-native|react-native|react-native-reanimated/))"
    ],
    "verbose": true
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "react-native-builder-bob": {
    "source": "lib",
    "output": "dist",
    "targets": [
      "commonjs",
      "module",
      [
        "typescript",
        {
          "project": "tsconfig.build.json"
        }
      ]
    ]
  }
}
