dbgate/packages/tools/package.json

39 lines
795 B
JSON
Raw Normal View History

2020-06-18 19:18:30 +00:00
{
2020-11-28 07:34:42 +00:00
"version": "1.0.5",
"name": "dbgate-tools",
2020-06-18 19:18:30 +00:00
"main": "lib/index.js",
"typings": "lib/index.d.ts",
2020-11-17 06:37:32 +00:00
"homepage": "https://dbgate.org/",
"repository": {
"type": "git",
"url": "https://github.com/dbshell/dbgate.git"
2020-11-24 18:06:05 +00:00
},
2020-11-17 06:37:32 +00:00
"funding": "https://www.paypal.com/paypalme/JanProchazkaCz/30eur",
"author": "Jan Prochazka",
"license": "GPL",
2020-11-17 06:48:45 +00:00
"keywords": [
"sql",
"dbgate"
],
2020-06-18 19:18:30 +00:00
"scripts": {
"prepare": "yarn build",
"build": "tsc",
"start": "tsc --watch",
2020-11-28 07:37:40 +00:00
"test": "jest",
"prepublishOnly": "yarn build"
2020-06-18 19:18:30 +00:00
},
"files": [
"lib"
],
"devDependencies": {
"@types/node": "^13.7.0",
2020-11-24 18:06:05 +00:00
"dbgate-types": "^1.0.0",
2020-06-18 19:18:30 +00:00
"jest": "^24.9.0",
"ts-jest": "^25.2.1",
"typescript": "^3.7.5"
},
"dependencies": {
2020-11-24 18:06:05 +00:00
"lodash": "^4.17.15"
2020-06-18 19:18:30 +00:00
}
}