{
  "name": "react-native-big-list-fixed",
  "version": "1.6.3",
  "description": "A big and fast list implementation for react-native with a recycler API focused on performance and ram usage while processing thousand items on the list.",
  "keywords": [
    "react-native-big-list",
    "react",
    "react-native",
    "javascript",
    "ui-lib",
    "rn",
    "big-list",
    "fast-list",
    "scroll-list",
    "large-list",
    "biglist",
    "fastlist",
    "scrolllist",
    "largelist",
    "fast",
    "scroll",
    "large",
    "bigdata",
    "big",
    "massive",
    "list",
    "performance"
  ],
  "main": "dist/commonjs/index.js",
  "module": "dist/module/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib",
    "dist"
  ],
  "author": "Andrew Yurlov",
  "license": "GPL-3.0-or-later",
  "scripts": {
    "prepare": "bob build && node scripts/dist.js",
    "lint": "eslint --ignore-path .gitignore \"./lib/*.{js,jsx}\"",
    "prettify": "prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
    "format": "yarpm run prettify && yarpm run lint --fix",
    "release": "standard-version"
  },
  "devDependencies": {
    "@react-native-community/eslint-config": "^3.2.0",
    "eslint": "^8.36.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-jest": "^27.2.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-promise": "^6.1.1",
    "eslint-plugin-react": "^7.32.2",
    "eslint-plugin-react-native": "^4.0.0",
    "eslint-plugin-simple-import-sort": "^10.0.0",
    "glob": "^9.3.2",
    "husky": "^8.0.3",
    "lint-staged": "^13.2.0",
    "prettier": "^2.8.7",
    "react-native-builder-bob": "^0.20.4",
    "standard-version": "^9.5.0",
    "typescript": "^4.5.2",
    "yarpm": "^1.2.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "**/*.{ts,tsx,js,jsx}": [
      "eslint --ignore-path .gitignore . --fix"
    ],
    "**/*.{ts,tsx,js,jsx,json}": [
      "prettier --write ."
    ]
  },
  "peerDependencies": {
    "@types/react": "*",
    "@types/react-native": "*",
    "react": "*",
    "react-native": "*"
  },
  "dependencies": {
    "prop-types": "^15.8.1"
  },
  "bit": {
    "env": {},
    "packageManager": "npm"
  },
  "react-native-builder-bob": {
    "source": "lib",
    "output": "dist",
    "targets": [
      "commonjs",
      "module",
      "typescript"
    ]
  },
  "eslintIgnore": [
    "node_modules/",
    "dist/"
  ]
}