{
  "name": "mobx-persist-store",
  "version": "1.1.8",
  "description": "Mobx Persist Store",
  "author": "quarrant",
  "license": "MIT",
  "main": "lib/esm2017/index.js",
  "module": "lib/esm5/index.js",
  "es2015": "lib/esm2015/index.js",
  "files": [
    "lib/"
  ],
  "keywords": [
    "mobx",
    "persist",
    "mobx-persist",
    "react-native",
    "react"
  ],
  "homepage": "https://github.com/quarrant/mobx-persist-store#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/quarrant/mobx-persist-store.git"
  },
  "bugs": {
    "url": "https://github.com/quarrant/mobx-persist-store/issues"
  },
  "scripts": {
    "---------- Building ----------------------------------------------------": "",
    "build": "rm -rf lib && npm run build:esm5 && npm run build:esm2015 && npm run build:esm2017",
    "build:esm5": "tsc --project tsconfig.esm5.json",
    "build:esm2015": "tsc --project tsconfig.esm2015.json",
    "build:esm2017": "tsc --project tsconfig.json",
    "prepublishOnly": "npm run build",
    "npm:release": "bash scripts/make-release-branch.sh",
    "---------- Testing ----------------------------------------------------": "",
    "test": "jest",
    "---------- Linting ----------------------------------------------------": "",
    "ts": "tsc --noEmit",
    "---------- helper commands --------------------------------------------": "",
    "prettier": "npx prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
    "-----------------------------------------------------------------------": ""
  },
  "peerDependencies": {
    "mobx": "*"
  },
  "devDependencies": {
    "@babel/core": "^7.18.2",
    "@babel/plugin-proposal-class-properties": "^7.17.12",
    "@babel/plugin-proposal-decorators": "^7.18.2",
    "@babel/preset-env": "^7.18.2",
    "@babel/preset-react": "^7.17.12",
    "@babel/preset-typescript": "^7.17.12",
    "@babel/runtime": "^7.18.3",
    "@babel/types": "^7.18.4",
    "@types/jest": "^28.1.1",
    "@types/milliseconds": "^0.0.30",
    "@types/node": "^17.0.40",
    "babel-plugin-transform-typescript-metadata": "^0.3.2",
    "jest": "^28.1.0",
    "jest-environment-jsdom": "^28.1.0",
    "jest-localstorage-mock": "^2.4.21",
    "jest-mock-console": "^2.0.0",
    "milliseconds": "^1.0.3",
    "mobx": "^6.3.0",
    "ts-jest": "^28.0.4",
    "typescript": "^4.2.4"
  },
  "jest": {
    "modulePaths": [
      "<rootDir>/src/"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      "^.+\\.ts?$": "ts-jest"
    },
    "testPathIgnorePatterns": [
      "\\.snap$",
      "<rootDir>/node_modules/",
      "<rootDir>/examples/"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!react-native)/"
    ],
    "resetMocks": false,
    "setupFiles": [
      "jest-localstorage-mock"
    ]
  }
}
