{
  "name": "react-native-tableview-simple",
  "description": "React Native component for TableView made with pure CSS",
  "homepage": "https://github.com/Purii/react-native-tableview-simple",
  "version": "4.3.0",
  "author": "Patrick Puritscher <hello@patrickpuritscher.com>",
  "scripts": {
    "clean": "watchman watch-del-all && rm -rf node_modules/ && yarn cache clean && yarn",
    "jest": "jest ./src/",
    "eslint:ci": "eslint index.js ./src/ --ext .js,.jsx,.tsx,.ts -f table",
    "eslint:fix": "eslint index.js ./src/ --fix --ext .js,.jsx,.tsx,.ts -f table",
    "test": "yarn run eslint:ci && yarn run jest && yarn tsc --noEmit",
    "tsc": "tsc --skipLibCheck",
    "build:module": "yarn tsc --outDir ./lib/module  --sourceMap",
    "build:commonjs": "yarn tsc --module commonjs --outDir ./lib/commonjs --sourceMap",
    "build": "rimraf ./lib && yarn build:module && yarn build:commonjs",
    "release:prepare": "yarn build",
    "release": "standard-version"
  },
  "main": "lib/commonjs/index.js",
  "react-native": "src/index.ts",
  "module": "lib/module/index.js",
  "types": "lib/typescript/index.d.ts",
  "files": [
    "/src",
    "/lib",
    "/README.md",
    "/LICENSE"
  ],
  "jest": {
    "preset": "react-native",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "<rootDir>/example/"
    ],
    "modulePathIgnorePatterns": [
      "<rootDir>/example/"
    ]
  },
  "license": "MIT",
  "keywords": [
    "react-native",
    "react-component",
    "tableview",
    "UITableView",
    "crossplatform",
    "ios",
    "android"
  ],
  "peerDependencies": {
    "react": "*",
    "react-native": "^0.64"
  },
  "bugs": {
    "url": "https://github.com/Purii/react-native-tableview-simple/issues"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:Purii/react-native-tableview-simple.git"
  },
  "devDependencies": {
    "@commitlint/cli": "^12.0.1",
    "@commitlint/config-conventional": "^12.0.1",
    "@react-native-community/eslint-config": "^2.0.0",
    "@types/jest": "^26.0.22",
    "@types/react": "^17.0.3",
    "@types/react-native": "^0.64.1",
    "@types/react-test-renderer": "^17.0.1",
    "@typescript-eslint/eslint-plugin": "^4.19.0",
    "@typescript-eslint/parser": "^4.19.0",
    "babel-jest": "26.6.3",
    "babel-preset-react-native": "4.0.1",
    "eslint": "^7.22.0",
    "eslint-config-prettier": "^8.1.0",
    "husky": "^5.2.0",
    "jest": "26.6.3",
    "lint-staged": "^10.5.4",
    "react": "17.0.2",
    "react-native": "^0.64.0",
    "react-test-renderer": "17.0.2",
    "rimraf": "^3.0.2",
    "standard-version": "^9.1.1",
    "typescript": "^4.2.3"
  }
}
