dbgate/packages/datalib/package.json

28 lines
652 B
JSON
Raw Normal View History

{
2022-05-19 18:52:43 +00:00
"version": "5.0.0-alpha.1",
"name": "dbgate-datalib",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
2022-07-31 06:11:04 +00:00
"test": "jest",
2022-07-31 06:49:25 +00:00
"test:ci": "jest --json --outputFile=result.json --testLocationInResults",
"start": "tsc --watch"
},
"files": [
"lib"
],
"dependencies": {
2022-05-19 18:52:43 +00:00
"dbgate-sqltree": "^5.0.0-alpha.1",
2022-07-28 18:43:03 +00:00
"dbgate-tools": "^5.0.0-alpha.1",
2024-10-01 07:19:32 +00:00
"dbgate-filterparser": "^5.0.0-alpha.1",
"uuid": "^3.4.0"
},
"devDependencies": {
2022-05-19 18:52:43 +00:00
"dbgate-types": "^5.0.0-alpha.1",
"@types/node": "^13.7.0",
2022-07-31 06:11:04 +00:00
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
2021-09-28 10:34:54 +00:00
"typescript": "^4.4.3"
}
}