{
  "name": "type-guard-helpers",
  "version": "1.1.23",
  "description": "A set of helper functions for type guarding in Typescript.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "module": "module/index.js",
  "repository": "https://github.com/nicobrinkkemper/type-guard-helpers",
  "license": "MIT",
  "keywords": [],
  "scripts": {
    "clean": "rm -rf build lib module tsconfig.lib.tsbuildinfo tsconfig.module.tsbuildinfo",
    "build": "run-s clean build:* fixup",
    "build:spec": "tsc -p tsconfig.json",
    "build:lib": "tsc -p tsconfig.lib.json",
    "build:module": "tsc -p tsconfig.module.json",
    "fixup": "./fixup.sh",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/*.ts\" --write",
    "fix:prettier-spec": "prettier \"spec/*.ts\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "fix:lint-spec": "eslint spec --ext .ts --fix",
    "test": "run-s build test:*",
    "test:lint": "eslint src --ext .ts",
    "test:lint-spec": "eslint spec --ext .ts",
    "test:tsd": "tsd",
    "test:prettier": "prettier \"src/*.ts\" --list-different; exit 0",
    "test:prettier-spec": "prettier \"spec/*.ts\" --list-different; exit 0",
    "spelling": "cspell \"{README.md,.github/*.md,src/*.ts,spec/*.ts}\"",
    "test:unit": "nyc --silent ava",
    "develop": "run-p develop:*",
    "develop:unit": "ava  --verbose --watch",
    "develop:lib": "tsc -p tsconfig.lib.json -w",
    "develop:spec": "tsc -p tsconfig.json -w",
    "check-cli": "run-s test diff-integration-tests check-integration-tests",
    "check-integration-tests": "run-s check-integration-test:*",
    "diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
    "watch:build": "tsc -p tsconfig.lib.json -w",
    "watch:test": "nyc --silent ava --watch",
    "cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
    "cov:html": "nyc report --reporter=html",
    "cov:lcov": "nyc report --reporter=lcov",
    "cov:send": "run-s cov:lcov && codecov",
    "cov:check": "nyc report && nyc check-coverage --lines 95 --functions 80 --branches 70",
    "doc": "run-s doc:html && open-cli build/docs/index.html",
    "doc:html": "typedoc src --exclude spec/ --out build/docs --tsconfig ./tsconfig.json",
    "doc:json": "typedoc src --exclude spec/ --json build/docs/typedoc.json --readme ./README.md  --tsconfig ./tsconfig.json --excludeNotDocumented",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
    "version": "standard-version",
    "reset-hard": "git clean -dfx && git reset --hard && npm i",
    "prepare-dryrun": "npm pack --dry-run",
    "prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish"
  },
  "resolutions": {},
  "devDependencies": {
    "@ava/typescript": "^3.0.1",
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@typescript-eslint/eslint-plugin": "^5.52.0",
    "@typescript-eslint/parser": "^5.52.0",
    "ava": "^5.2.0",
    "codecov": "^3.8.3",
    "cspell": "^6.26.3",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.34.0",
    "eslint-config-prettier": "^8.6.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-functional": "^5.0.4",
    "eslint-plugin-import": "^2.27.5",
    "gh-pages": "^5.0.0",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.1.0",
    "open-cli": "^7.1.0",
    "prettier": "^3.8.1",
    "source-map-support": "^0.5.21",
    "standard-version": "^9.5.0",
    "ts-node": "^10.9.2",
    "tsd": "^0.33.0",
    "typedoc": "^0.28.16",
    "typescript": "^5.9.3"
  },
  "files": [
    "lib",
    "module",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "exports": {
    ".": {
      "import": "./module/index.js",
      "require": "./lib/index.js"
    }
  },
  "tsd": {
    "directory": "./spec"
  },
  "ava": {
    "failFast": true,
    "timeout": "60s",
    "typescript": {
      "rewritePaths": {
        "src/": "lib/"
      },
      "compile": false
    },
    "files": [
      "!src/**",
      "!module/**",
      "!spec/**"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "singleQuote": true
  },
  "nyc": {
    "exclude": [
      "**/spec/**"
    ]
  },
  "dependencies": {
    "ansi-regex": "^6.0.1",
    "commitizen": "^4.3.0"
  }
}
