{
  "name": "yaschva",
  "version": "2.6.1",
  "description": "Yet another schema validation",
  "keywords": [
    "schema",
    "validation",
    "type",
    "typescript",
    "json"
  ],
  "type": "module",
  "main": "./index.js",
  "types": "./index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/mmagyar/yaschva.git"
  },
  "scripts": {
    "prepack": "npm run build && npm run build:commonjs",
    "build": "tsc",
    "build:commonjs": "tsc --module \"CommonJS\" -t \"es6\" --outDir \"./cjs\"",
    "watch:commonjs": "tsc --module \"CommonJS\" -t \"es6\" --outDir \"./cjs\" --watch",
    "test": "npm run build:commonjs && jest",
    "clean:test": "jest --clearCache",
    "watch:test": "jest --watchAll",
    "standard": "standardx **/*.ts",
    "standard:fix": "standardx --fix **/*.ts",
    "test:coverage": "npm run build:commonjs && npm run standard && jest --coverage"
  },
  "author": "mmagyar.com",
  "license": "MIT",
  "standardx": {
    "env": [
      "jest",
      "es6"
    ],
    "parser": "@typescript-eslint/parser",
    "plugins": [
      "@typescript-eslint/eslint-plugin"
    ]
  },
  "eslintConfig": {
    "rules": {
      "no-unused-vars": "off",
      "no-use-before-define": "off",
      "@typescript-eslint/no-unused-vars": "error",
      "@typescript-eslint/semi": [
        "error",
        "never"
      ]
    }
  },
  "jest": {
    "roots": [
      "<rootDir>/cjs"
    ]
  },
  "devDependencies": {
    "@babel/plugin-transform-modules-commonjs": "^7.10.4",
    "@types/jest": "^26.0.13",
    "@typescript-eslint/eslint-plugin": "^4.1.1",
    "@typescript-eslint/parser": "^4.1.1",
    "jest": "^26.4.2",
    "standardx": "^5.0.0",
    "typescript": "^4.0.2"
  },
  "dependencies": {
    "randexp": "^0.5.3"
  }
}
