{
  "name": "react-native-tree-themes",
  "version": "0.2.2",
  "description": "Allows you to create and manage themes in react-native using a theme tree",
  "main": "lib/index",
  "types": "./lib/index",
  "files": [
    "lib/**/*"
  ],
  "scripts": {
    "test": "jest",
    "typescript": "npx tsc --noEmit",
    "lint": "eslint \"**/*.{js,ts,tsx}\"",
    "prepare-bob": "npx bob build",
    "release": "dotenv release-it",
    "example": "cd example & npm i & npm start",
    "docs": "rm -rf docs & npx typedocs",
    "pods": "cd example && pod-install --quiet",
    "bootstrap": "yarn example && yarn && yarn pods"
  },
  "keywords": [
    "react-native",
    "theme",
    "style",
    "android",
    "ios",
    "mobile",
    "typescript"
  ],
  "repository": "https://github.com/sacridias/react-native-tree-themes",
  "author": "Steven Cook; <steve@egfbt.com> (https://github.com/sacridias)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sacridias/react-native-tree-themes/issues"
  },
  "homepage": "https://github.com/sacridias/react-native-tree-themes#readme",
  "devDependencies": {
    "@react-native-community/bob": "^0.16.2",
    "@react-native-community/eslint-config": "^2.0.0",
    "@release-it/conventional-changelog": "^1.1.4",
    "@types/jest": "^26.0.8",
    "@types/lodash": "^4.14.159",
    "@types/react": "^16.9.44",
    "@types/react-native": "^0.62.13",
    "@types/react-test-renderer": "^16.9.2",
    "concurrently": "^5.3.0",
    "jest": "^26.0.1",
    "jsdoc-to-markdown": "^6.0.1",
    "pod-install": "^0.1.0",
    "prettier": "^2.0.5",
    "react": "16.11.0",
    "react-native": "0.62.2",
    "release-it": "^13.5.8",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typedoc": "^0.18.0",
    "typedoc-plugin-markdown": "^2.4.0",
    "typescript": "^3.9.7"
  },
  "peerDependencies": {
    "react": "*",
    "react-native": "*"
  },
  "jest": {
    "preset": "react-native",
    "modulePathIgnorePatterns": [
      "<rootDir>/example/node_modules",
      "<rootDir>/lib/"
    ]
  },
  "husky": {
    "hooks": {
      "commit-msg": "commit -E HUSKY_GIT_PARAMS",
      "pre-commit": "yarn lint"
    }
  },
  "release-it": {
    "git": {
      "commitMessage": "chore: release ${version}",
      "tagName": "v${version}"
    },
    "npm": {
      "publish": true
    },
    "github": {
      "release": false
    },
    "plugins": {
      "@release-it/conventional-changelog": {
        "preset": "angular"
      }
    }
  },
  "eslintConfig": {
    "extends": [
      "@react-native-community",
      "prettier"
    ],
    "rules": {
      "prettier/prettier": [
        "error",
        {
          "quoteProps": "consistent",
          "singleQuote": true,
          "tabWidth": 2,
          "trailingComma": "es5",
          "useTabs": false
        }
      ]
    }
  },
  "eslintIgnore": [
    "node_modules/",
    "lib/"
  ],
  "prettier": {
    "quoteProps": "consistent",
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "es5",
    "useTabs": false
  },
  "@react-native-community/bob": {
    "source": "src",
    "output": "lib",
    "targets": [
      "commonjs",
      "module"
    ]
  },
  "dependencies": {
    "lodash": "^4.17.19"
  }
}
