-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "mongo2crate",
"version": "0.52.0",
"description": "Sync MongoDB to CrateDB and Convert JSON schema to SQL DDL",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": "git://github.com/smartprocure/mongo2crate.git",
"scripts": {
"prepare": "npm test && npm run lint && npm run build",
"clean": "rm -rf dist",
"build": "npm run clean && tsc --declaration",
"build:watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/**",
"fmt": "prettier --ignore-path .gitignore --write './'"
},
"keywords": [
"mongodb",
"mongo",
"crate",
"cratedb",
"json",
"schema",
"create",
"sql",
"table",
"ddl",
"sync",
"collection",
"change",
"stream"
],
"author": "GovSpend",
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@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",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"typescript": "5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"debug": "^4.3.7",
"dupes-of-hazard": "^0.1.0",
"eventemitter3": "^5.0.1",
"lodash": "^4.17.21",
"minimatch": "^10.0.1",
"mongochangestream": "^0.55.0",
"node-fetch": "^3.3.2",
"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
}
}