{
  "name": "vue-sweetalert2",
  "version": "4.3.1",
  "description": "Simple Vue sweetalert2 package",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "src",
    "nuxt",
    "dist"
  ],
  "scripts": {
    "build": "tsc -p .",
    "test": "jest --runInBand",
    "test:watch": "jest --watch",
    "test:coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
    "changelog": "auto-changelog git add ./CHANGELOG.md",
    "prepublish": "npm run test && npm run build && npm run changelog",
    "__postpublish": "npm run test:coveralls",
    "lint:prettier": "prettier --write src/*.ts",
    "lint:ts": "tsc --noEmit --skipLibCheck",
    "lint": "npm run lint:prettier && npm run lint:ts"
  },
  "keywords": [
    "sweetalert",
    "sweetalert2",
    "alert",
    "prompt",
    "ssr"
  ],
  "author": "Aleksey Pivkin @avil13",
  "license": "MIT",
  "dependencies": {
    "sweetalert2": "10.x"
  },
  "homepage": "https://avil13.github.io/vue-sweetalert2/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/avil13/vue-sweetalert2.git"
  },
  "nodemonConfig": {
    "watch": [
      "src"
    ],
    "exec": "npm run prepublish",
    "delay": 2500
  },
  "lint-staged": {
    "*.{js,html,vue,md,json}": [
      "npm run lint:prettier"
    ],
    "*.{ts}": [
      "npm run lint:prettier && npm run lint:ts"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && npm test && npm run changelog",
      "pre-push": "lint-staged && npm test"
    }
  },
  "peerDependencies": {
    "vue": "*"
  },
  "devDependencies": {
    "@types/jest": "^26.0.22",
    "@types/node": "^14.14.37",
    "@typescript-eslint/eslint-plugin": "^4.22.0",
    "@typescript-eslint/parser": "^4.22.0",
    "@vue/eslint-config-typescript": "^7.0.0",
    "@vue/test-utils": "^1.1.4",
    "auto-changelog": "^2.2.1",
    "babel-core": "^6.26.3",
    "babel-eslint": "^10.1.0",
    "babel-polyfill": "^6.26.0",
    "babel-preset-env": "^1.7.0",
    "babel-preset-stage-3": "^6.24.1",
    "babel-preset-vue": "^2.0.2",
    "coveralls": "^3.1.0",
    "eslint": "^7.24.0",
    "eslint-plugin-vue": "^7.9.0",
    "husky": "^4.3.8",
    "jest": "^26.6.3",
    "lint-staged": "^10.5.4",
    "prettier": "^2.2.1",
    "require-hacker": "^3.0.1",
    "ts-jest": "^26.5.4",
    "typescript": "^4.2.4",
    "vue": "^2.6.12",
    "vue-jest": "^3.0.7",
    "vue-template-compiler": "^2.6.12"
  }
}
