{
  "name": "@ohnaka0410/minimal-modal",
  "version": "2.1.1",
  "description": "Minimal and Tiny Javascript Library for Modal Dialog",
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "module": "dist/index.esm.js",
  "browser": "dist/minimal-modal.js",
  "files": [
    "package.json",
    "README.md",
    "LICENSE",
    "types",
    "dist"
  ],
  "keywords": [
    "front-end",
    "modal",
    "dialog",
    "vanillajs",
    "typescript"
  ],
  "author": {
    "name": "ohnaka0410",
    "url": "https://twitter.com/ohnaka0410"
  },
  "license": "MIT",
  "scripts": {
    "prebuild": "rimraf dist",
    "build": "rollup -c",
    "lint": "eslint src/**/*.ts",
    "format": "eslint --fix src/**/*.ts",
    "lint-staged": "lint-staged",
    "start": "browser-sync start --config \"./.bs-config.js\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://ohnaka0410@github.com/ohnaka0410/minimal-modal.git"
  },
  "bugs": {
    "url": "https://github.com/ohnaka0410/minimal-modal/issues"
  },
  "homepage": "https://github.com/ohnaka0410/minimal-modal#readme",
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "linters": {
      "*.(html,css)": [
        "prettier --write",
        "git add"
      ],
      "*.(ts,tsx,js,jsx)": [
        "prettier --write",
        "eslint --fix",
        "git add"
      ]
    },
    "ignore": [
      "dist/**/*"
    ]
  },
  "dependencies": {
    "body-scroll-lock": "^3.1.5",
    "core-js": "^3.8.2",
    "focus-trap": "^6.2.3",
    "lodash.merge": "^4.6.2",
    "tslib": "^2.1.0"
  },
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/preset-env": "^7.12.11",
    "@rollup/plugin-babel": "^5.2.2",
    "@rollup/plugin-commonjs": "^17.0.0",
    "@rollup/plugin-node-resolve": "^11.0.1",
    "@rollup/plugin-typescript": "^8.1.0",
    "@types/body-scroll-lock": "^2.6.1",
    "@types/lodash.merge": "^4.6.6",
    "@typescript-eslint/eslint-plugin": "^4.12.0",
    "@typescript-eslint/parser": "^4.12.0",
    "browser-sync": "^2.26.13",
    "eslint": "^7.17.0",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-prettier": "^3.3.1",
    "husky": "^4.3.7",
    "lint-staged": "^10.5.3",
    "lodash.camelcase": "^4.3.0",
    "lodash.upperfirst": "^4.3.1",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.36.1",
    "rollup-plugin-terser": "^7.0.2",
    "typescript": "^4.1.3"
  }
}
