dbgate/packages/tools/package.json

37 lines
743 B
JSON
Raw Normal View History

2020-06-18 19:18:30 +00:00
{
2020-11-16 20:35:18 +00:00
"version": "1.0.0",
"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"
},
"funding": "https://www.paypal.com/paypalme/JanProchazkaCz/30eur",
"author": "Jan Prochazka",
"license": "GPL",
2020-06-18 19:18:30 +00:00
"scripts": {
"prepare": "yarn build",
"build": "tsc",
"start": "tsc --watch",
"test": "jest"
},
"files": [
"lib"
],
"devDependencies": {
"dbgate-types": "^1.0.0",
2020-06-18 19:18:30 +00:00
"@types/node": "^13.7.0",
"jest": "^24.9.0",
"ts-jest": "^25.2.1",
"typescript": "^3.7.5"
},
"dependencies": {
"lodash": "^4.17.15",
"moment": "^2.24.0"
}
}