-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.18 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.18 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "DocumentDB",
"version": "0.2.11",
"author": "hackolade",
"engines": {
"hackolade": "6.10.3",
"hackoladePlugin": "1.0.1"
},
"contributes": {
"target": {
"applicationTarget": "DocumentDB",
"title": "DocumentDB",
"versions": [
"3.6.0",
"4.0.0",
"5.0.0"
]
},
"features": {
"nestedCollections": false,
"forwardEngineering": {
"jsonSchema": {
"keepParentType": {
"objectId": {
"type": "string",
"pattern": "^[a-fA-F0-9]{24}$"
},
"regex": "string",
"date": {
"type": "string",
"format": "date-time"
},
"timestamp": {
"type": "string",
"format": "date-time"
},
"binary": {
"type": "string",
"mediaType": "image/png",
"contentEncoding": "base64"
},
"minKey": "number",
"maxKey": "number"
}
}
},
"enableReverseEngineering": true,
"enableForwardEngineering": true,
"enableReverseEngineeringDetectionSchemaByContent": false,
"enableReversingDateTypeAsISODate": true,
"supportInferRelationships": true,
"enableREQueryAndSortCriteria": true,
"relationships": {
"entityNameSeparator": "."
},
"restrictNestedFieldsAsPrimaryKey": false
}
},
"description": "Hackolade plugin for Amazon DocumentDB",
"scripts": {
"lint": "oxlint . || true",
"package": "node esbuild.package.js",
"lint:check": "oxlint --type-aware --type-check . || true",
"format": "prettier --write ."
},
"dependencies": {
"@aws-sdk/client-docdb": "3.1000.0",
"@aws-sdk/credential-providers": "3.1000.0",
"@hackolade/fetch": "1.1.0",
"async": "3.2.6",
"bson": "1.1.6",
"lodash": "4.17.23",
"mongodb": "3.7.3",
"mongodb-collection-sample": "4.5.1"
},
"devDependencies": {
"@hackolade/hck-esbuild-plugins-pack": "0.0.1",
"esbuild": "0.27.3",
"esbuild-node-externals": "1.20.1",
"esbuild-plugin-clean": "1.0.1",
"esbuild-plugin-copy": "2.1.1",
"lint-staged": "16.2.7",
"prettier": "3.8.1",
"simple-git-hooks": "2.13.1",
"oxlint": "1.38.0",
"oxlint-tsgolint": "0.10.1",
"@ianvs/prettier-plugin-sort-imports": "4.7.1"
},
"simple-git-hooks": {
"pre-commit": "npm run package && npx lint-staged --config lint-staged.config.js",
"pre-push": "npm run lint"
},
"overrides": {
"minimatch": "10.2.4",
"fast-xml-parser": "5.3.8"
}
}