{
  "name": "mobx-ts-model-form",
  "version": "1.0.10",
  "description": "mobx typescript form control validation (fork from https://github.com/QuantumArt/mobx-form-validation-kit)",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "test:check": "tsc && jest",
    "test:watch": "jest --watch",
    "format": "prettier '{src,test}/**/*.{ts,tsx,js,jsx}' --write",
    "release": "yarn build && yarn publish"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/mindreframer/mobx-ts-model-form"
  },
  "bugs": {
    "url": "https://github.com/mindreframer/mobx-ts-model-form/issues"
  },
  "author": "Vitalii Alferov (company: http://quantumart.ru/)",
  "license": "MIT",
  "dependencies": {
    "tslib": "^2.2.0"
  },
  "peerDependencies": {
    "mobx": "^6.0.0",
    "react": "^17.0.0"
  },
  "devDependencies": {
    "@types/jest": "^26.0.22",
    "@types/node": "^14.14.37",
    "@types/react": "^17.0.3",
    "jest": "^26.6.3",
    "mobx": "^6.1.8",
    "prettier": "^2.2.1",
    "react": "^17.0.2",
    "ts-jest": "^26.5.4",
    "tslint": "^6.1.3",
    "tslint-config-airbnb": "^5.11.2",
    "tslint-config-prettier": "^1.18.0",
    "tslint-plugin-prettier": "^2.3.0",
    "typescript": "^4.2.3"
  },
  "prepublish": "tsc",
  "keywords": [
    "npm",
    "package",
    "validation",
    "mobx",
    "react"
  ],
  "prettier": {
    "semi": true,
    "trailingComma": "es5",
    "singleQuote": true,
    "printWidth": 180
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/**/*.js",
      "src/**/*.ts",
      "src/**/*.jsx",
      "src/**/*.tsx"
    ],
    "coverageReporters": [
      "lcov",
      "text"
    ],
    "transform": {
      "^.+\\.(jsx?|tsx?)$": "ts-jest"
    },
    "testRegex": ".+\\.test\\.(jsx?|tsx?)$",
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/dist/"
    ],
    "moduleFileExtensions": [
      "js",
      "ts",
      "jsx",
      "tsx"
    ]
  }
}
