{
    "name": "kindjs",
    "version": "2.1.0",
    "description": "Precise type-checker for JavaScript",
    "main": "./dist/src/index.js",
    "types": "./dist/src/index.d.ts",
    "files": [
        "dist/**/*"
    ],
    "scripts": {
        "build": "tsc",
        "clean": "git clean -fdx",
        "coverage": "codecov",
        "lint": "eslint ./src/ --fix && yarn typecheck",
        "prepare": "husky install",
        "semantic-release": "semantic-release",
        "test:watch": "jest --watch",
        "test": "jest --coverage",
        "typecheck": "tsc --noEmit"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/patik/kind.git"
    },
    "author": {
        "name": "Craig Patik",
        "email": "craig@patik.com",
        "url": "https://github.com/patik"
    },
    "engines": {
        "node": ">=14.0"
    },
    "keywords": [
        "typeof",
        "javascript",
        "type",
        "type checking",
        "object",
        "typescript"
    ],
    "bugs": {
        "url": "https://github.com/patik/kind/issues"
    },
    "homepage": "https://github.com/patik/kind#readme",
    "license": "ISC",
    "dependencies": {},
    "devDependencies": {
        "@types/jest": "^29.2.5",
        "@types/jsdom": "^20.0.1",
        "@types/node": "^18.11.18",
        "@typescript-eslint/eslint-plugin": "^5.22.0",
        "@typescript-eslint/parser": "^5.22.0",
        "codecov": "^3.8.1",
        "eslint": "^8.15.0",
        "eslint-config-prettier": "^8.3.0",
        "eslint-plugin-node": "^11.1.0",
        "eslint-plugin-prettier": "^4.0.0",
        "husky": "^8.0.2",
        "jest": "^29.3.1",
        "jest-environment-jsdom": "^29.3.1",
        "lint-staged": "^13.1.0",
        "prettier": "^2.2.1",
        "semantic-release": "^19.0.2",
        "ts-jest": "^29.0.3",
        "ts-node": "^10.2.1",
        "typescript": "^4.2.4"
    },
    "lint-staged": {
        "*.ts": "eslint --cache --cache-location .eslintcache --fix"
    },
    "release": {
        "branches": [
            "main"
        ]
    }
}
