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

42 lines
1.2 KiB
JSON
Raw Normal View History

2021-04-13 14:17:53 +00:00
{
"name": "dbgate-plugin-postgres",
"main": "dist/backend.js",
"version": "1.2.2",
"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",
"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-13 14:17:53 +00:00
"dbgate-tools": "^4.0.3-rc.1",
"lodash": "^4.17.15",
"pg": "^7.17.0",
"pg-query-stream": "^3.1.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}