{
  "name": "mobx-request",
  "version": "0.2.6",
  "repository": {
    "type": "git",
    "url": "https://github.com/whalemare/mobx-request"
  },
  "bugs": {
    "url": "https://github.com/whalemare/mobx-request/issues"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "homepage": "https://github.com/whalemare/mobx-request#readme",
  "description": "Manage async requests with no-effort",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "license": "MIT",
  "keywords": [
    "mobx",
    "mobx-request",
    "promise",
    "async",
    "request",
    "RequestStore",
    "mobx-fog-of-war",
    "mobx-utils"
  ],
  "scripts": {
    "build": "run-p build:*",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "test": "jest",
    "test:coverage": "yarn test --coverage",
    "deploy": "yarn build && npm publish"
  },
  "engines": {
    "node": ">=10"
  },
  "peerDependencies": {
    "mobx": ">=6"
  },
  "dependencies": {
    "real-cancellable-promise": "1.1.1"
  },
  "devDependencies": {
    "@babel/preset-env": "7.16.7",
    "@babel/preset-typescript": "7.16.7",
    "@istanbuljs/nyc-config-typescript": "1.0.1",
    "@react-native-community/eslint-config": "3.0.1",
    "@types/jest": "27.4.0",
    "@types/react": "^17.0.38",
    "@typescript-eslint/eslint-plugin": "5.6.0",
    "@typescript-eslint/parser": "5.6.0",
    "axios": "0.27.2",
    "babel-jest": "27.3.1",
    "eslint": "8.4.1",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-eslint-comments": "3.2.0",
    "eslint-plugin-i18n": "2.1.0",
    "eslint-plugin-import": "2.25.2",
    "eslint-plugin-jest": "25.3.3",
    "eslint-plugin-prettier": "3.4.0",
    "eslint-plugin-react": "7.26.1",
    "eslint-plugin-react-hooks": "4.2.1-alpha-f6abf4b40-20211020",
    "eslint-plugin-unused-imports": "1.1.5",
    "gh-pages": "3.1.0",
    "jest": "27.4.5",
    "mobx": "6.3.7",
    "mobx-react-lite": "^3.2.3",
    "mockttp": "3.1.0",
    "node-notifier": "10.0.0",
    "npm-run-all": "4.1.5",
    "nyc": "15.1.0",
    "prettier": "2.5.1",
    "react": "17.0.2",
    "react-dom": "^17.0.2",
    "standard-version": "9.0.0",
    "ts-node": "9.0.0",
    "typescript": "4.5.4",
    "vscode-generate-index-standalone": "1.6.0"
  },
  "files": [
    "build/main",
    "build/module",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "exclude": [
      "**/*.spec.js"
    ]
  }
}