{
  "name": "ts-util-is",
  "version": "2.1.0",
  "description": "TypeScript typeof utility helper with no dependencies.",
  "keywords": [
    "typescript",
    "util",
    "typeof",
    "type guards",
    "isArray",
    "isBase64",
    "isBoolean",
    "isDate",
    "isDateValid",
    "isDefined",
    "isError",
    "isFunction",
    "isGuid",
    "isInfinity",
    "isNull",
    "isNumber",
    "isObject",
    "isRegExp",
    "isString",
    "isSymbol",
    "isUndefined",
    "isThis",
    "isThat",
    "polyfill"
  ],
  "author": {
    "name": "Justin Lettau",
    "email": "me@justinlettau.com",
    "url": "https://justinlettau.com"
  },
  "license": "MIT",
  "homepage": "https://github.com/justinlettau/ts-util-is",
  "repository": {
    "type": "git",
    "url": "https://github.com/justinlettau/ts-util-is"
  },
  "bugs": {
    "url": "https://github.com/justinlettau/ts-util-is"
  },
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  },
  "type": "module",
  "exports": "./dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/",
    "src/"
  ],
  "scripts": {
    "build": "tsc -p ./tsconfig.json",
    "lint": "eslint . --ext .js,.ts",
    "test": "jest",
    "prepublishOnly": "npm run build",
    "format": "prettier --write ."
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged"
    }
  },
  "devDependencies": {
    "@types/jest": "^27.0.2",
    "@typescript-eslint/eslint-plugin": "^5.2.0",
    "@typescript-eslint/parser": "^5.2.0",
    "eslint": "^8.1.0",
    "eslint-config-prettier": "^8.3.0",
    "jest": "^27.3.1",
    "prettier": "^2.4.1",
    "pretty-quick": "^3.1.1",
    "ts-jest": "^27.0.7",
    "ts-node": "^10.4.0",
    "typescript": "^4.4.4"
  }
}
