{
  "name": "util-ex",
  "description": "Browser-friendly enhanced util fully compatible with standard node.js",
  "homepage": "https://github.com/snowyu/util-ex.js",
  "version": "2.2.1",
  "author": {
    "name": "Riceball LEE",
    "email": "snowyu.lee@gmail.com"
  },
  "files": [
    "README.md",
    "LICENSE-MIT",
    "*.js",
    "*.coffee",
    "test",
    "src",
    "types",
    "lib"
  ],
  "keywords": [
    "is",
    "validate",
    "util",
    "browser",
    "browserify"
  ],
  "main": "./lib/index.js",
  "module": "./src/index.js",
  "repository": "git://github.com/snowyu/util-ex.js",
  "bugs": {
    "url": "https://github.com/snowyu/util-ex.js/issues"
  },
  "license": "MIT",
  "engines": {
    "node": ">=8"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^2.11.4",
    "@babel/cli": "^7.24.1",
    "@babel/core": "^7.24.3",
    "@babel/plugin-transform-modules-commonjs": "^7.24.1",
    "@babel/register": "^7.23.7",
    "chai": "~4.3.10",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-tsdoc": "^0.2.17",
    "mocha": "~10.2.0",
    "prettier": "^3.2.5",
    "sinon": "~15.0.3",
    "sinon-chai": "~3.7.0",
    "typedoc": "^0.25.12",
    "typedoc-plugin-markdown": "^3.17.1",
    "typescript": "^5.4.3"
  },
  "pre-commit": [
    "test"
  ],
  "scripts": {
    "build": "npm run build.cjs && npm run build.ts && npm run doc.md",
    "build.cjs": "babel src --out-dir lib --config-file ./.babelrc",
    "build.ts": "tsc --declaration --emitDeclarationOnly --outDir lib",
    "clean": "rm -fr web docs lib",
    "clean.doc": "rm -fr web docs",
    "clean.ts": "rm -fr lib/*.d.ts",
    "clean.lib": "rm -fr lib",
    "doc": "typedoc --plugin none --out web ./src",
    "doc.md": "typedoc --plugin typedoc-plugin-markdown --out docs ./src",
    "lint": "npx eslint --config .eslintrc.yml src",
    "lint.fix": "npm run lint -- --fix",
    "release": "npm run clean && npm run build && git add docs && git ci -m 'docs: update API docs' && npx commit-and-tag-version -s",
    "release.alpha": "npm run release -- --prerelease alpha",
    "test": "mocha"
  },
  "dependencies": {
    "inherits-ex": "^2.1.0"
  }
}
