{
  "name": "@redux-offline/redux-offline",
  "version": "2.6.0",
  "description": "Redux Offline-First Architecture",
  "main": "lib/index.js",
  "types": "./typings.d.ts",
  "scripts": {
    "build": "rm -rf lib && babel src --out-dir lib --ignore '**/__tests__/**'",
    "flow:start": "flow server",
    "flow:stop": "flow stop",
    "flow": "flow; test $? -eq 0 -o $? -eq 2",
    "lint": "eslint src/",
    "prepublishOnly": "npm run lint && npm run flow && npm run test && npm run build",
    "eslint": "eslint src --fix",
    "prettier": "--config .prettierrc --write",
    "test": "jest",
    "test:watch": "jest --watch",
    "watch": "npm run build -- --watch"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && flow"
    }
  },
  "lint-staged": {
    "*.{js,jsx}": [
      "prettier --config .prettierrc --write",
      "eslint src --fix"
    ]
  },
  "jest": {
    "rootDir": "src"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/redux-offline/redux-offline"
  },
  "author": "",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/redux-offline/redux-offline/issues"
  },
  "homepage": "https://github.com/redux-offline/redux-offline#readme",
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.9.6",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
    "@babel/plugin-transform-flow-strip-types": "^7.9.0",
    "@babel/plugin-transform-runtime": "^7.9.6",
    "@babel/preset-env": "^7.9.6",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^26.0.1",
    "eslint": "^7.0.0",
    "eslint-config-airbnb-base": "^14.1.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-babel": "^5.3.0",
    "eslint-plugin-flowtype": "^4.7.0",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-prettier": "^3.1.3",
    "flow-bin": "^0.124.0",
    "husky": "^4.2.5",
    "jest": "^26.0.1",
    "lint-staged": "^10.2.2",
    "prettier": "^2.0.5",
    "redux": "^4.0.5",
    "redux-devtools-instrument": "^1.9.6",
    "redux-logger": "^3.0.6",
    "redux-persist-node-storage": "^1.0.2",
    "release": "^6.1.0"
  },
  "dependencies": {
    "@babel/runtime": "^7.9.6",
    "redux-persist": "^4.6.0"
  },
  "peerDependencies": {
    "redux": ">=3"
  }
}
