{
  "name": "color-thief-react",
  "version": "2.1.0",
  "description": "A React component with hooks for Color Thief. Grab color palette from an image with javascript",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "author": "Jonathan Célio",
  "license": "ISC",
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
    "test": "jest --collectCoverage",
    "test:ci": "jest --collectCoverage && codecov"
  },
  "peerDependencies": {
    "react": ">= 16.8.0",
    "react-dom": ">= 16.8.0"
  },
  "dependencies": {
    "color-convert": "^2.0.1",
    "colorthief": "2.3.2",
    "prop-types": "15.7.2",
    "tslib": "2.3.0",
    "use-current-effect": "2.1.0"
  },
  "devDependencies": {
    "@commitlint/cli": "11.0.0",
    "@commitlint/config-conventional": "11.0.0",
    "@testing-library/react": "10.4.9",
    "@types/color-convert": "^2.0.0",
    "@types/jest": "26.0.20",
    "@types/react": "16.9.46",
    "@types/react-dom": "16.9.8",
    "@typescript-eslint/eslint-plugin": "4.4.1",
    "@typescript-eslint/parser": "4.4.1",
    "canvas": "2.6.1",
    "codecov": "3.8.2",
    "coveralls": "3.1.0",
    "eslint": "7.20.0",
    "eslint-config-prettier": "6.12.0",
    "eslint-plugin-jest": "23.20.0",
    "eslint-plugin-prettier": "3.3.1",
    "eslint-plugin-react": "7.21.4",
    "eslint-plugin-react-hooks": "4.2.0",
    "husky": "4.3.0",
    "jest": "26.4.0",
    "prettier": "2.2.1",
    "react": "17.0.1",
    "react-dom": "17.0.1",
    "semantic-release": "17.2.3",
    "ts-jest": "26.2.0",
    "typescript": "4.3.5"
  },
  "keywords": [
    "color-thief-react",
    "react-color-thief",
    "colorthiefreact",
    "color-thief",
    "color-thief-react-hook",
    "colorthief"
  ],
  "husky": {
    "hooks": {
      "pre-commit": "yarn run lint",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "release": {
    "branches": [
      "master",
      {
        "name": "beta",
        "channel": "beta",
        "prerelease": "beta"
      }
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "subject-case": [
        2,
        "never",
        [
          "start-case",
          "pascal-case"
        ]
      ]
    }
  }
}
