{
    "name": "@tofandel/ziggy-js",
    "version": "1.5.2",
    "description": "Use your Laravel named routes in JavaScript.",
    "keywords": [
        "laravel",
        "routes",
        "ziggy"
    ],
    "homepage": "https://github.com/tofandel/ziggy",
    "bugs": "https://github.com/tofandel/ziggy/issues",
    "license": "MIT",
    "authors": [
        {
            "name": "Daniel Coulbourne",
            "email": "daniel@tighten.co"
        },
        {
            "name": "Jake Bathman",
            "email": "jake@tighten.co"
        },
        {
            "name": "Jacob Baker-Kretzmar",
            "email": "jacob@tighten.co"
        }
    ],
    "files": [
        "src/js",
        "dist"
    ],
    "source": "src/js/index.js",
    "main": "dist/index.js",
    "umd:main": "dist/index.js",
    "unpkg": "dist/index.js",
    "browser": "dist/index.js",
    "module": "dist/index.m.js",
    "esmodule": "dist/index.es.js",
    "repository": {
        "type": "git",
        "url": "https://github.com/tofandel/ziggy.git"
    },
    "scripts": {
        "build": "microbundle --name route --format modern,es,umd --external none --no-sourcemap",
        "build:vue": "microbundle --entry src/js/vue.js --output dist/vue.js --name ZiggyVue --format modern,es,umd --external none --no-sourcemap",
        "watch": "npm run build watch",
        "build:npm": "microbundle --name route --format modern,es,umd --no-sourcemap",
        "build:npm:vue": "microbundle --entry src/js/vue.js --output dist/vue.js --name ZiggyVue --format modern,es,umd --no-sourcemap",
        "test": "npm run lint && jest --verbose",
        "prepublishOnly": "npm run build:npm && npm run build:npm:vue",
        "lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
        "lint:fix": "eslint --ext .ts,.js,.vue --fix --ignore-path .gitignore ."
    },
    "mangle": {
        "regex": "^_(?!query)"
    },
    "dependencies": {
        "qs": "~6.9.7"
    },
    "devDependencies": {
        "@babel/core": "^7.20.12",
        "@babel/eslint-parser": "^7.19.1",
        "babel-preset-power-assert": "^3.0.0",
        "eslint-plugin-import": "^2.27.5",
        "eslint": "^8.32.0",
        "jest": "^29.3.1",
        "jest-environment-jsdom": "^29.3.1",
        "microbundle": "^0.15.1",
        "power-assert": "^1.6.1",
        "lint-staged": "^13.1.0"
    },
    "gitHooks": {
        "pre-commit": "lint-staged"
    },
    "lint-staged": {
        "*.{js,jsx,vue}": [
            "npm run lint:fix"
        ]
    }
}
