UNPKG

mongoose-transactions

Version:
70 lines (69 loc) 1.88 kB
{ "name": "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", "build": "tsc -w false" }, "pre-commit": [ "test" ], "repository": { "type": "git", "url": "git+https://github.com/daton89-topperblues/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": "^13.9.3", "core-js": "^3.6.4", "eslint": "^8.57.0", "globals": "^15.8.0", "jest": "^29.7.0", "mongoose": "^8.5.0", "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 } }