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

42 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "dbgate-plugin-oracle",
"main": "dist/backend.js",
"version": "5.0.0-alpha.1",
"license": "MIT",
"description": "Oracle connector plugin for DbGate",
"homepage": "https://dbgate.org",
"repository": {
"type": "git",
"url": "https://github.com/dbgate/dbgate"
},
"author": "Rinie Kervel",
"keywords": [
"dbgate",
"dbgateplugin",
"oracle"
],
"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-oracle",
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-oracle",
"plugout": "dbgate-plugout dbgate-plugin-oracle",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"dbgate-plugin-tools": "^1.0.7",
"dbgate-query-splitter": "^4.9.0",
"dbgate-tools": "^5.0.0-alpha.1",
"lodash": "^4.17.21",
"oracledb": "^5.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
}
}