{
    "name": "express-route-mounter",
    "version": "1.0.2",
    "description": "A utility to map and validate Express routes with duplicate detection",
    "type": "module",
    "main": "index.js",
    "module": "index.js",
    "types": "index.d.ts",
    "exports": {
        ".": {
            "import": "./index.js",
            "types": "./index.d.ts"
        },
        "./package.json": "./package.json"
    },
    "files": [
        "index.js",
        "index.d.ts",
        "src/",
        "README.md",
        "CHANGELOG.md",
        "LICENSE"
    ],
    "scripts": {
        "test": "jest --config jest.config.cjs",
        "test:watch": "jest --config jest.config.cjs --watch",
        "test:coverage": "jest --config jest.config.cjs --coverage",
        "test:coverage:watch": "jest --config jest.config.cjs --coverage --watch",
        "lint": "eslint .",
        "lint:fix": "eslint . --fix",
        "format:check": "prettier --check .",
        "format:fix": "prettier --write .",
        "type-check": "tsc --noEmit",
        "prepare": "husky"
    },
    "keywords": [
        "express",
        "routes",
        "validation",
        "mapping",
        "router",
        "typescript"
    ],
    "homepage": "https://github.com/kareemaboueid/express-route-mounter#readme",
    "bugs": {
        "url": "https://github.com/kareemaboueid/express-route-mounter/issues"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/kareemaboueid/express-route-mounter.git"
    },
    "license": "MIT",
    "author": "Kareem Aboueid <kareem_aboueid@outlook.com>",
    "dependencies": {
        "chalk": "^5.4.1"
    },
    "peerDependencies": {
        "express": "^4.0.0 || ^5.0.0"
    },
    "devDependencies": {
        "@types/node": "^20.11.16",
        "@typescript-eslint/eslint-plugin": "^6.21.0",
        "@typescript-eslint/parser": "^6.21.0",
        "cross-env": "^7.0.3",
        "eslint": "^8.56.0",
        "express": "^5.1.0",
        "husky": "^9.1.7",
        "jest": "^30.0.4",
        "prettier": "^3.2.5",
        "typescript": "^5.3.3"
    },
    "engines": {
        "node": ">=16.0.0"
    },
    "lint-staged": {
        "*.{js,ts}": [
            "eslint --fix",
            "prettier --write"
        ],
        "*.{md,json}": [
            "prettier --write"
        ]
    }
}
