{
  "name": "inherits-ex",
  "description": "Enhanced inheritance for dynamic inheritance and mixin.",
  "homepage": "https://github.com/snowyu/inherits-ex.js",
  "version": "2.1.0",
  "author": {
    "name": "Riceball LEE",
    "email": "snowyu.lee@gmail.com"
  },
  "main": "./lib/index.js",
  "module": "./src/index.js",
  "files": [
    "README.md",
    "LICENSE-MIT",
    "*.js",
    "*.coffee",
    "test",
    "types",
    "src",
    "lib"
  ],
  "keywords": [
    "inheritance",
    "class",
    "klass",
    "oop",
    "object-oriented",
    "mixin",
    "inherits",
    "browser",
    "coffee",
    "coffeescript",
    "coffee-script",
    "browserify"
  ],
  "repository": "git://github.com/snowyu/inherits-ex.js",
  "bugs": {
    "url": "https://github.com/snowyu/inherits-ex.js/issues"
  },
  "license": "MIT",
  "engines": {
    "node": ">=12"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^0.38.4",
    "@babel/cli": "^7.21.0",
    "@babel/core": "^7.21.4",
    "@babel/plugin-transform-modules-commonjs": "^7.21.2",
    "@babel/register": "^7.21.0",
    "chai": "~4.3.7",
    "eslint": "^8.38.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-tsdoc": "^0.2.17",
    "mocha": "^10.2.0",
    "prettier": "^2.8.7",
    "sinon": "~15.0.3",
    "sinon-chai": "~3.7.0",
    "typedoc": "^0.24.4",
    "typedoc-plugin-markdown": "^3.15.1",
    "typescript": "^5.0.4"
  },
  "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 types lib",
    "clean.doc": "rm -fr web docs",
    "clean.ts": "rm -fr types",
    "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"
  },
  "browser": {
    "./lib/isEmptyFunction.js": "./lib/isEmptyFunction-cli.js"
  }
}
