-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1005 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@teqfw/db",
"version": "0.23.0",
"description": "Database abstraction and CRUD engine for RDBMS based on Knex.js, optimized for Tequila Framework.",
"type": "module",
"scripts": {
"test": "./node_modules/mocha/bin/_mocha --recursive './test/mod/**/*.test.mjs'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teqfw/db.git"
},
"keywords": [
"database",
"knex",
"rdbms",
"crud",
"tequila framework",
"es6",
"node.js",
"db-connector"
],
"author": "Alex Gusev <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/teqfw/db/issues"
},
"homepage": "https://github.com/teqfw/db#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/teqfw"
},
"dependencies": {
"@teqfw/core": "^0.32.0",
"knex": "^3.1.0"
},
"devDependencies": {
"mocha": "^11.0.1",
"mysql2": "^3.12.0",
"pg": "^8.13.1",
"sqlite3": "^5.1.7"
}
}