mongochangestream
Version:
Sync MongoDB collections via change streams into any database.
85 lines (84 loc) • 2.06 kB
JSON
{
"name": "mongochangestream",
"version": "0.62.0",
"description": "Sync MongoDB collections via change streams into any database.",
"author": "GovSpend",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/smartprocure/mongochangestream.git"
},
"scripts": {
"prepare": "npm run lint && npm run test && npm run build",
"clean": "rm -rf dist",
"build": "npm run fmt && npm run clean && tsc --declaration",
"build:watch": "tsc --watch",
"lint": "eslint src/**",
"fmt": "prettier --ignore-path .gitignore --write './'",
"test": "vitest run",
"test:watch": "DEBUG=* vitest"
},
"keywords": [
"mongodb",
"mongo",
"change",
"stream",
"sync",
"collection",
"database",
"datastore",
"db",
"elasticsearch",
"sql",
"cratedb",
"batch"
],
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"globals": "^16.0.0",
"mongochangestream-testing": "^0.6.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"dependencies": {
"debug": "^4.4.0",
"eventemitter3": "^5.0.1",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"obj-walker": "^2.4.0",
"p-retry": "^6.2.1",
"prom-utils": "^0.16.0",
"simple-machines": "^0.6.0"
},
"peerDependencies": {
"ioredis": ">= 5.4.1",
"mongodb": ">= 6.8.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"^[./]"
],
"importOrderSortSpecifiers": true,
"importOrderCaseInsensitive": true,
"importOrderSeparation": true
}
}