dbgate/plugins/dbgate-plugin-postgres/package.json
2021-04-15 20:37:23 +02:00

43 lines
1.2 KiB
JSON

{
"name": "dbgate-plugin-postgres",
"main": "src/backend/index.js",
"version": "1.2.2",
"license": "MIT",
"description": "PostgreSQL connector plugin for DbGate",
"homepage": "https://dbgate.org",
"repository": {
"type": "git",
"url": "https://github.com/dbgate/dbgate"
},
"author": "Jan Prochazka",
"keywords": [
"dbgate",
"dbgateplugin",
"postgresql"
],
"files": [
"dist",
"icon.svg"
],
"scripts": {
"build:frontend": "webpack --config webpack-frontend.config",
"build:frontend:watch": "webpack --watch --config webpack-frontend.config",
"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",
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-postgres",
"plugout": "dbgate-plugout dbgate-plugin-postgres",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"dbgate-plugin-tools": "^1.0.7",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"dbgate-tools": "^4.0.3-rc.1",
"lodash": "^4.17.15",
"pg": "^7.17.0",
"pg-query-stream": "^3.1.1"
}
}