-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.29 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@themost/pool",
"version": "2.10.1",
"description": "Most Web Framework connection pool adapter",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/themost-framework/pool.git"
},
"keywords": [
"most",
"web",
"data",
"db",
"adapter",
"pool"
],
"author": "Kyriakos Barbounakis <k.barbounakis@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/pool/issues"
},
"homepage": "https://github.com/themost-framework/pool",
"peerDependencies": {
"@themost/common": "^2",
"@themost/query": "^2",
"@themost/events": "^1"
},
"dependencies": {
"generic-pool": "^3.9.0"
},
"devDependencies": {
"@themost/common": "^2",
"@themost/data": "^2.11.5",
"@themost/events": "^1.3.0",
"@themost/json-logger": "^1.1.0",
"@themost/promise-sequence": "^1.0.2",
"@themost/query": "^2.11.4",
"@themost/sqlite": "^2",
"@themost/test": "^2.5.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"dotenv": "^8.2.0",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0"
}
}