-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 KB
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
{
"name": "fib-pool",
"version": "1.6.0",
"description": "Generic resource pooling for fibjs",
"main": "./src",
"types": "typings/index.d.ts",
"type": "module",
"repository": "git://github.com/fibjs/fib-pool.git",
"author": "Liu Hu <lion@9465.net>",
"contributors": [
{
"name": "Richard",
"email": "richardo2016@gmail.com"
}
],
"homepage": "https://github.com/fibjs/fib-pool",
"license": "MIT",
"keywords": [
"pool",
"database",
"fibjs"
],
"scripts": {
"test": "fibjs test",
"typecheck": "tsc --noEmit",
"ci": "npm run typecheck && npm run test"
},
"devDependencies": {
"@fibjs/ci": "^2.3.0",
"@fibjs/types": "^0.27.1",
"fib-typify": "^0.8.4",
"typescript": "^5.9.3"
},
"ci": {
"type": "travis, appveyor",
"version": [
"0.21.0",
"0.22.0",
"0.23.0",
"0.24.0",
"0.25.0",
"0.26.0",
"0.26.1",
"0.27.0",
"0.28.0",
"0.29.0",
"0.30.0"
]
}
}