{
    "name": "vue-sweetalert2",
    "version": "3.0.8",
    "description": "Simple Vue sweetalert2 package",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "files": ["src", "nuxt", "dist"],
    "scripts": {
        "build": "tsc -p .",
        "test": "jest --no-cache",
        "test:watch": "jest --watch",
        "test:coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
        "prepublish": "npm run test && npm run build && auto-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": "9.x"
    },
    "homepage": "https://avil13.github.io/vue-sweetalert2/",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/avil13/vue-sweetalert2.git"
    },
    "devDependencies": {
        "@types/jest": "^26.0.10",
        "@types/node": "^14.6.2",
        "@typescript-eslint/eslint-plugin": "^3.10.1",
        "@typescript-eslint/parser": "^3.10.1",
        "@vue/eslint-config-typescript": "^5.1.0",
        "@vue/test-utils": "^1.0.5",
        "auto-changelog": "^2.2.0",
        "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.7.0",
        "eslint-plugin-vue": "^6.2.2",
        "husky": "^4.2.5",
        "jest": "^26.4.2",
        "lint-staged": "^10.2.13",
        "prettier": "^2.1.1",
        "require-hacker": "^3.0.1",
        "ts-jest": "^26.3.0",
        "typescript": "^4.0.2",
        "vue": "^2.6.12",
        "vue-jest": "^3.0.6",
        "vue-template-compiler": "^2.6.12"
    },
    "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",
            "pre-push": "lint-staged && npm test"
        }
    }
}
