UNPKG

@arturwojnar/hermes-mongodb

Version:

Production-Ready TypeScript Outbox Pattern for MongoDB

76 lines (75 loc) 1.93 kB
{ "name": "@arturwojnar/hermes-mongodb", "version": "1.0.0-alpha.12", "description": "Production-Ready TypeScript Outbox Pattern for MongoDB", "scripts": { "build": "rollup -c", "build:ts": "tsc -p tsconfig.build.json", "clean": "rm -rf ./lib/", "lint:eslint": "eslint 'src/**/*.ts'", "lint:prettier": "prettier --check \"**/**/!(*.d).{ts,json,md}\"", "lint-fix": "eslint --fix -f unix \"src/**/*.{ts,tsx}\"", "prepare": "husky", "test": "node --experimental-vm-modules ../../node_modules/.bin/jest --colors --coverage --verbose --maxConcurrency=5", "typecheck": "tsc --noEmit", "typedoc": "typedoc" }, "keywords": [ "outbox", "mongo", "mongodb", "microservices", "messaging", "transactional", "events" ], "author": { "name": "Artur Wojnar", "email": "contact@arturwojnar.dev" }, "engines": { "node": ">=18.20.3" }, "repository": { "type": "git", "url": "git+https://github.com/arturwojnar/hermes.git", "directory": "packages/hermes-mongodb" }, "bugs": { "url": "https://github.com/arturwojnar/hermes/issues" }, "homepage": "https://docs.hermesjs.tech", "exports": { ".": { "import": { "types": "./lib/index.d.ts", "default": "./lib/index.mjs" }, "require": { "types": "./lib/index.d.ts", "default": "./lib/index.cjs" } } }, "type": "module", "main": "./lib/index.cjs", "types": "./lib/index.d.ts", "files": [ "lib" ], "publishConfig": { "access": "public" }, "license": "ISC", "devDependencies": { "@jest/globals": "~29.7.0", "mongodb-memory-server": "~10.1.4", "mongoose": "~8.10.1", "ts-essentials": "~10.0.4" }, "peerDependencies": { "@arturwojnar/hermes": "~1.0.0-alpha.8", "mongodb": ">= 6.8.0 || < 7.0.0" }, "gitHead": "ef75ef7688c9cc6f5be9d500f6122540a66b3ba5" }