{
  "name": "bottom-line-utils",
  "version": "0.24.2",
  "repository": "https://github.com/dzek69/bottom-line.git",
  "author": "Jacek Nowacki @dzek69 <git-public@dzek.eu>",
  "license": "MIT",
  "scripts": {
    "test": "NODE_ENV=test jest",
    "test:lodashImports": "node test/lodash-tree.cjs",
    "docs": "typedoc src/index.ts --out docs --includeVersion --pluginPages ./pagesconfig.json",
    "compile": "yarn compile:esm && yarn compile:cjs",
    "compile:esm": "rm -rf esm && tsc --project tsconfig.esm.json && node ./build-scripts/compile.esm.after.mjs",
    "compile:cjs": "rm -rf dist && tsc --project tsconfig.cjs.json && node ./build-scripts/compile.cjs.after.mjs",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts,.tsx,.js,.jsx,.mjs",
    "lint:fix": "yarn lint --fix",
    "prepack": "yarn compile",
    "prepublishOnly": "yarn lint && yarn test && yarn docs",
    "start:dev": "nodemon",
    "start:dev:compatibility": "TS_NODE_FILES=true yarn start:dev",
    "prepare": "husky install"
  },
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "default": "./esm/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./esm/index.d.ts",
  "module": "./esm/index.js",
  "type": "module",
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/preset-env": "^7.12.11",
    "@babel/preset-typescript": "^7.12.7",
    "@dzek69/eslint-config-base": "^2.2.0",
    "@dzek69/eslint-config-typescript": "^1.0.1",
    "@types/jest": "^26.0.23",
    "@types/lodash": "^4.14.168",
    "@typescript-eslint/eslint-plugin": "^5.30.3",
    "@typescript-eslint/parser": "^5.30.3",
    "babel-plugin-module-extension": "^0.1.3",
    "eslint": "^8.18.0",
    "fs-extra": "^9.0.1",
    "husky": "^8.0.1",
    "jest": "^27.5.1",
    "lodash": "^4.17.21",
    "must": "^0.13.4",
    "nodemon": "^2.0.19",
    "ts-node": "^10.9.1",
    "typedoc": "^0.23.8",
    "typescript": "^4.7.4",
    "eslint-plugin-import": "^2.26.0",
    "@dzek69/eslint-config-import": "^1.0.0",
    "@dzek69/eslint-config-import-typescript": "^1.0.0",
    "@knodes/typedoc-plugin-pages": "^0.23.1"
  },
  "husky": {
    "hooks": {
      "pre-push": "yarn prepublishOnly && yarn compile"
    }
  },
  "libraryTemplate": {
    "version": "3.5.3",
    "language": "typescript",
    "fixDefaultForCommonJS": false,
    "jsx": false
  }
}
