forked from hackolade/MariaDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.09 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
{
"name": "MariaDB",
"version": "0.1.67",
"author": "VitaliiBedletskyi",
"engines": {
"hackolade": "6.1.4",
"hackoladePlugin": "1.2.0"
},
"contributes": {
"target": {
"applicationTarget": "MariaDB",
"title": "MariaDB",
"versions": [
"v10.x"
]
},
"features": {
"nestedCollections": false,
"disablePatternField": false,
"disableMultipleTypes": true,
"enableForwardEngineering": true,
"disableReverseEngineering": false,
"disableChoices": true,
"enableJsonType": true,
"useJsonTypesWithComplexTypes": true,
"reverseSchemaIntoOneColumn": true,
"disableDenormalization": true,
"enableComplexTypesNormalization": true,
"views": {
"enabled": true,
"viewLevel": "model",
"disablePipelines": true
},
"relationships": {
"compositeRelationships": true
},
"FEScriptCommentsSupported": true,
"enableFetchSystemEntitiesCheckbox": true,
"discoverRelationships": true
}
},
"description": "Hackolade plugin for MariaDB",
"icon_url": "logo.jpg",
"disabled": false,
"scripts": {
"lint": "eslint . --max-warnings=0",
"build": "node esbuild.bundle.js",
"package": "node esbuild.package.js"
},
"dependencies": {
"mysql": "^2.18.1",
"tunnel-ssh": "^4.1.6"
},
"devDependencies": {
"esbuild": "^0.17.10",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "^11.1.0",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"simple-git-hooks": "^2.8.1"
},
"lint-staged": {
"*.{js,json}": "prettier --write"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npx eslint ."
},
"release": true
}