{
  "name": "sagax",
  "version": "0.1.9",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "license": "MIT",
  "author": "awaw00<awaw0618@outlook.com>",
  "description": "play mobx with saga",
  "repository": "https://github.com/awaw00/sagax",
  "scripts": {
    "build": "rimraf dist && tsc --pretty",
    "build:watch": "rimraf dist && tsc --pretty -w",
    "test": "jest --watch --verbose"
  },
  "devDependencies": {
    "@types/jest": "^22.1.4",
    "@types/node": "^9.4.7",
    "axios": "0.18.0",
    "jest": "^22.4.2",
    "mobx": "^3.6.1",
    "redux": "^3.7.2",
    "redux-saga": "^0.16",
    "rimraf": "^2.6.2",
    "ts-jest": "^22.4.2",
    "tslint": "^5.9.1",
    "tslint-react": "^3.5.1",
    "typescript": "^2.7.2"
  },
  "peerDependencies": {
    "axios": "^0.18.0",
    "mobx": "^3.6.1",
    "redux-saga": "^0.16"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "jest": {
    "collectCoverageFrom": [
      "lib/**/*.{js,jsx,ts,tsx}"
    ],
    "testMatch": [
      "<rootDir>/lib/**/__tests__/**/*.ts?(x)",
      "<rootDir>/lib/**/?(*.)(spec|test).ts?(x)"
    ],
    "testEnvironment": "node",
    "testURL": "http://localhost",
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "transformIgnorePatterns": [
      "[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs|ts|tsx)$"
    ],
    "watchPathIgnorePatterns": [
      "<rootDir>/node_modules/"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json"
    ]
  }
}
