{
  "name": "doumi",
  "version": "1.1.7",
  "description": "Javascript Utilities",
  "repository": {
    "type": "git",
    "url": "https://github.com/janghye0k/doumi"
  },
  "keywords": [
    "util",
    "utilities"
  ],
  "author": "JangHyeok Kim",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/janghye0k/doumi/issues"
  },
  "homepage": "https://janghye0k.github.io/doumi",
  "files": [
    "dist",
    "package.json",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "main": "./dist/doumi.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.esm.js",
      "browser": "./dist/doumi.js"
    }
  },
  "devDependencies": {
    "@babel/cli": "^7.23.4",
    "@babel/core": "^7.23.7",
    "@babel/preset-env": "^7.23.8",
    "@babel/preset-typescript": "^7.23.3",
    "@rollup/plugin-babel": "^6.0.4",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^11.1.6",
    "@testing-library/jest-dom": "^6.2.0",
    "@types/jest": "^29.5.11",
    "@types/node": "^20.10.8",
    "@typescript-eslint/eslint-plugin": "^6.19.0",
    "@typescript-eslint/parser": "^6.19.0",
    "babel-jest": "^29.7.0",
    "core-js": "^3.35.0",
    "eslint-import-resolver-jest": "^3.0.2",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "rollup": "^4.9.4",
    "rollup-plugin-dts": "^6.1.0",
    "rollup-plugin-esbuild": "^6.1.0",
    "standard-version": "^9.5.0",
    "tslib": "^2.6.2",
    "typescript": "^5.3.3"
  },
  "scripts": {
    "clean": "rimraf dist",
    "prebuild": "pnpm clean",
    "build": "rollup -c",
    "lint:prettier": "prettier --list-different .",
    "lint:code": "eslint --cache .",
    "lint": "pnpm lint:prettier && pnpm lint:code",
    "test:only": "jest",
    "test:watch": "jest --watchAll",
    "test:coverage": "jest --collectCoverageFrom=\"src/**/*.js\" --coverage",
    "test": "pnpm test:coverage",
    "prepublish": "pnpm build"
  }
}