dbgate/plugins/dbgate-plugin-postgres/package.json

44 lines
1.2 KiB
JSON
Raw Normal View History

2021-04-13 14:17:53 +00:00
{
"name": "dbgate-plugin-postgres",
2021-04-15 18:37:23 +00:00
"main": "src/backend/index.js",
2021-04-17 07:24:46 +00:00
"version": "4.1.1",
2021-04-13 14:17:53 +00:00
"license": "MIT",
"description": "PostgreSQL connector plugin for DbGate",
2021-04-15 15:22:53 +00:00
"homepage": "https://dbgate.org",
2021-04-13 14:17:53 +00:00
"repository": {
"type": "git",
2021-04-15 15:22:53 +00:00
"url": "https://github.com/dbgate/dbgate"
2021-04-13 14:17:53 +00:00
},
"author": "Jan Prochazka",
"keywords": [
"dbgate",
"dbgateplugin",
"postgresql"
],
"files": [
2021-04-15 15:22:53 +00:00
"dist",
2021-04-17 15:31:32 +00:00
"src",
2021-04-15 18:37:23 +00:00
"icon.svg"
2021-04-13 14:17:53 +00:00
],
"scripts": {
"build:frontend": "webpack --config webpack-frontend.config",
2021-04-15 09:00:42 +00:00
"build:frontend:watch": "webpack --watch --config webpack-frontend.config",
2021-04-13 14:17:53 +00:00
"build:backend": "webpack --config webpack-backend.config.js",
"build": "yarn build:frontend && yarn build:backend",
"plugin": "yarn build && yarn pack && dbgate-plugin dbgate-plugin-postgres",
2021-04-15 10:42:34 +00:00
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-postgres",
2021-04-13 14:17:53 +00:00
"plugout": "dbgate-plugout dbgate-plugin-postgres",
"prepublishOnly": "yarn build"
},
"devDependencies": {
2021-04-15 10:42:34 +00:00
"dbgate-plugin-tools": "^1.0.7",
2021-04-15 18:37:23 +00:00
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
2021-04-17 07:24:46 +00:00
"dbgate-tools": "^4.1.1",
2021-04-13 14:17:53 +00:00
"lodash": "^4.17.15",
"pg": "^7.17.0",
2021-04-15 18:37:23 +00:00
"pg-query-stream": "^3.1.1"
2021-04-13 14:17:53 +00:00
}
2021-04-15 18:37:23 +00:00
}