{
  "name": "@splitsoftware/splitio-redux",
  "version": "2.4.0",
  "description": "A library to easily use Split JS SDK with Redux and React Redux",
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "types": "types/index.d.ts",
  "files": [
    "README.md",
    "CONTRIBUTORS-GUIDE.md",
    "LICENSE",
    "CHANGES.txt",
    "src",
    "cjs",
    "esm",
    "types"
  ],
  "scripts": {
    "build": "rimraf cjs/* esm/* types/* && tsc && tsc -m commonjs --outDir cjs -d true --declarationDir types",
    "postbuild": "./version_replace.sh",
    "check": "npm run check:lint && npm run check:types",
    "check:lint": "eslint 'src/**/*.ts'",
    "check:types": "tsc --noEmit",
    "test": "jest src --silent",
    "test:watch": "npm test -- --watch",
    "test:coverage": "jest src --coverage",
    "test:debug": "node --inspect node_modules/.bin/jest --runInBand",
    "all": "npm run check && npm run build && npm run test",
    "publish:rc": "npm publish --tag rc",
    "publish:stable": "npm publish",
    "prepublishOnly": "npm run check && npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/splitio/redux-client.git"
  },
  "keywords": [
    "splitio",
    "redux",
    "react-redux",
    "sdk"
  ],
  "author": "Split Software",
  "contributors": [
    {
      "name": "Emiliano Sanchez",
      "email": "emiliano.sanchez@split.io",
      "url": "https://github.com/EmilianoSanchez"
    },
    {
      "name": "Nico Zelaya",
      "email": "nicolas.zelaya@split.io",
      "url": "https://github.com/NicoZelaya"
    }
  ],
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/splitio/redux-client/issues"
  },
  "homepage": "https://github.com/splitio/redux-client#readme",
  "dependencies": {
    "@splitsoftware/splitio": "11.11.2",
    "tslib": "^2.3.1"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^5.16.5",
    "@testing-library/react": "^14.0.0",
    "@types/react": "^18.0.0",
    "@types/react-dom": "^18.0.0",
    "@types/redux-mock-store": "^1.0.1",
    "@typescript-eslint/eslint-plugin": "^5.55.0",
    "@typescript-eslint/parser": "^5.55.0",
    "eslint": "^8.36.0",
    "eslint-plugin-compat": "^4.1.2",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-react": "^7.32.2",
    "eslint-plugin-tsdoc": "^0.3.0",
    "husky": "^3.1.0",
    "jest": "^27.5.1",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "react-redux": "9.0.0",
    "redux": "^5.0.1",
    "redux-mock-store": "^1.5.4",
    "redux-thunk": "^3.1.0",
    "replace": "^1.2.1",
    "rimraf": "^3.0.0",
    "ts-jest": "^27.0.5",
    "typescript": "4.9.5"
  },
  "peerDependencies": {
    "react-redux": ">=4.0.0",
    "redux": ">=3.0.0",
    "redux-thunk": ">=2.0.0"
  },
  "peerDependenciesMeta": {
    "react-redux": {
      "optional": true
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run check",
      "pre-push": "npm test && npm run build"
    }
  },
  "sideEffects": false
}
