-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "fib-session",
"version": "0.7.0",
"description": "Simple session middleware for fibjs",
"main": "lib/index.js",
"types": "@types/index.d.ts",
"repository": "git://github.com/fibjs/fib-session.git",
"author": "Liu Hu <[email protected]>",
"homepage": "https://github.com/fibjs/fib-session",
"license": "MIT",
"maintainers": [
{
"name": "Richard",
"email": "[email protected]"
}
],
"keywords": [
"session",
"fibjs"
],
"scripts": {
"build": "fib-typify src -o lib",
"ci": "npm run build && npm run test",
"ci-mysql": "npm run build && cross-env FIB_SESSION_TEST_MYSQL=1 npm run test",
"ci-sqlite": "npm run build && npm run test"
},
"ci": {
"type": "actions",
"version": [
"0.34.0",
"0.35.0",
"0.36.0",
"0.37.0"
]
},
"dependencies": {
"fib-jws": "^0.4.1",
"fib-kv": "^1.3.1",
"fib-cache": "^1.2.0"
},
"devDependencies": {
"@fibjs/ci": "^2.7.1",
"@fibjs/detect-port": "^1.0.2",
"@fibjs/types": "^0.35.0",
"cross-env": "^5.2.0",
"fib-pool": "^1.6.0",
"fib-typify": "^0.11.6"
}
}