{
    "name": "@anishghosh103/mongoose-transactions",
    "version": "2.0.0",
    "description": "Atomicity and Transactions for mongoose",
    "main": "index.js",
    "scripts": {
        "lint": "eslint",
        "lint:fix": "eslint --fix",
        "pretest": "npm run lint",
        "test": "jest --forceExit --runInBand",
        "test:local": "jest --forceExit --runInBand --detectOpenHandles --rootDir=./__tests__",
        "build": "tsc -w false"
    },
    "pre-commit": [
        "test:local"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/anishghosh103/mongoose-transactions.git"
    },
    "keywords": [
        "mongoose",
        "transactions"
    ],
    "author": "Nicola Bonavita @topperblues, Antonio D'Angelo @daton89",
    "license": "Apache-2.0",
    "bugs": {
        "url": "https://github.com/daton89-topperblues/mongoose-transactions/issues"
    },
    "homepage": "https://github.com/daton89-topperblues/mongoose-transactions#readme",
    "peerDependencies": {
        "mongoose": ">=8.0.0"
    },
    "devDependencies": {
        "@eslint/js": "^8.57.0",
        "@types/core-js": "^2.5.3",
        "@types/jest": "^25.1.4",
        "@types/node": "^22.12.0",
        "core-js": "^3.6.4",
        "eslint": "^8.57.0",
        "globals": "^15.8.0",
        "jest": "^29.7.0",
        "mongoose": "^8.5.0",
        "mongoose-delete": "^1.0.2",
        "pre-commit": "^1.2.2",
        "prettier": "^2.0.2",
        "ts-jest": "^29.2.2",
        "typescript": "^5.5.2",
        "typescript-eslint": "^7.16.0"
    },
    "jest": {
        "testEnvironment": "node",
        "moduleFileExtensions": [
            "ts",
            "tsx",
            "js"
        ],
        "transform": {
            "\\.(ts|tsx)$": "ts-jest"
        },
        "testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
        "verbose": true,
        "notify": false,
        "bail": false
    },
    "prettier": {
        "semi": false,
        "singleQuote": true,
        "tabWidth": 4
    },
    "publishConfig": {
        "access": "public"
    }
}
