-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "mongo2mongo",
"version": "0.32.0",
"description": "Sync one MongoDB collection to another MongoDB collection",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": "git://github.com/smartprocure/mongo2mongo.git",
"scripts": {
"prepare": "npm run lint && npm run build",
"clean": "rm -rf dist",
"build": "npm run clean && tsc --declaration",
"build:develop": "tsc --watch",
"lint": "eslint src/**",
"fmt": "prettier --ignore-path .gitignore --write './'"
},
"keywords": ["mongodb", "mongo", "sync", "collection", "change", "stream"],
"author": "GovSpend",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.17.12",
"@types/node": "^22.7.8",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"dependencies": {
"debug": "^4.3.7",
"eventemitter3": "^5.0.1",
"lodash": "^4.17.21",
"mongochangestream": "^0.55.0",
"obj-walker": "^2.4.0",
"p-retry": "^6.2.0",
"prom-utils": "^0.14.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
}
}