dbgate-plugin-redis 4.7.4-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/backend.js +9 -0
- package/dist/frontend.js +9 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dbgate-plugin-redis",
|
|
3
|
+
"main": "dist/backend.js",
|
|
4
|
+
"version": "4.7.4-alpha.1",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"description": "Redis connector plugin for DbGate",
|
|
7
|
+
"homepage": "https://dbgate.org",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/dbgate/dbgate"
|
|
11
|
+
},
|
|
12
|
+
"author": "Jan Prochazka",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"dbgate",
|
|
15
|
+
"dbgateplugin",
|
|
16
|
+
"redis"
|
|
17
|
+
],
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build:frontend": "webpack --config webpack-frontend.config",
|
|
23
|
+
"build:frontend:watch": "webpack --watch --config webpack-frontend.config",
|
|
24
|
+
"build:backend": "webpack --config webpack-backend.config.js",
|
|
25
|
+
"build": "yarn build:frontend && yarn build:backend",
|
|
26
|
+
"plugin": "yarn build && yarn pack && dbgate-plugin dbgate-plugin-redis",
|
|
27
|
+
"plugout": "dbgate-plugout dbgate-plugin-redis",
|
|
28
|
+
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-redis",
|
|
29
|
+
"prepublishOnly": "yarn build"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"dbgate-plugin-tools": "^1.0.7",
|
|
33
|
+
"dbgate-query-splitter": "^4.7.4-alpha.1",
|
|
34
|
+
"dbgate-tools": "^4.7.4-alpha.1",
|
|
35
|
+
"lodash": "^4.17.21",
|
|
36
|
+
"webpack": "^4.42.0",
|
|
37
|
+
"webpack-cli": "^3.3.11"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"async": "^3.2.3",
|
|
41
|
+
"ioredis": "^4.28.5"
|
|
42
|
+
}
|
|
43
|
+
}
|