{
    "name": "valigators",
    "version": "1.4.1",
    "description": "A simple validation library for any data type",
    "main": "dist/bundle.cjs.js",
    "module": "dist/bundle.esm.js",
    "types": "dist/types/src/index.d.ts",
    "sideEffects": false,
    "files": [
        "dist"
    ],
    "scripts": {
        "predev": "rimraf build",
        "dev": "tsc --watch",
        "test": "jest --coverage",
        "updateReadme": "documentation readme src --section=API --parse-extension ts",
        "prebuild": "rimraf dist",
        "build": "npx tsc --emitDeclarationOnly && rollup -c",
        "lint": "eslint --ext .ts .",
        "lint:fix": "eslint --fix --ext .ts .",
        "prepublish": "npm run build"
    },
    "husky": {
        "hooks": {
            "pre-commit": "lint-staged"
        }
    },
    "lint-staged": {
        "*.ts": [
            "npm run lint:fix",
            "git add"
        ]
    },
    "keywords": [
        "validation",
        "validators",
        "validate",
        "check",
        "aligator"
    ],
    "author": "Will Kelly",
    "license": "MIT",
    "devDependencies": {
        "@types/jest": "^26.0.20",
        "@typescript-eslint/eslint-plugin": "^4.14.1",
        "@typescript-eslint/parser": "^4.14.1",
        "check-code-coverage": "^1.10.0",
        "eslint": "^7.19.0",
        "eslint-config-prettier": "^7.2.0",
        "eslint-plugin-prettier": "^3.3.1",
        "husky": "^4.3.8",
        "jest": "^26.6.3",
        "lint-staged": "^10.5.3",
        "prettier": "^2.2.1",
        "prettier-eslint": "^12.0.0",
        "prettier-eslint-cli": "^5.0.0",
        "rimraf": "^3.0.2",
        "rollup": "^2.38.2",
        "rollup-plugin-node-resolve": "^5.2.0",
        "rollup-plugin-typescript": "^1.0.1",
        "ts-jest": "^26.5.0",
        "tslib": "^2.1.0",
        "typescript": "^4.1.3"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/wkelly1/Valigators.git"
    }
}
