-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.51 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@cyclic.sh/session-store",
"version": "0.0.5",
"description": "Express middleware that stores sessions in DynamoDB tables for Cyclic apps.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclic-software/session-store.git"
},
"keywords": [
"express-sessions",
"session-store",
"dynamodb",
"aws",
"cyclic",
"cyclic.sh",
"@cyclic.sh",
"dynamodb-store"
],
"author": {
"name": "Cyclic Software",
"url": "https://www.cyclic.sh"
},
"contributors": [
"Mike Korostelev (https://github.com/korostelevm)",
"Kam Lasater (https://github.com/seekayel)"
],
"engines": {
"node": ">=14.20.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclic-software/session-store/issues"
},
"homepage": "https://github.com/cyclic-software/session-store#readme",
"dependencies": {
"@aws-sdk/client-dynamodb": "3.348.0",
"@aws-sdk/lib-dynamodb": "3.82.0",
"express-session": "^1.17.3"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"babel-jest": "^29.3.1",
"husky": "^8.0.2",
"jest": "^29.3.1",
"semantic-release": "^19.0.5",
"uuid": "^9.0.0"
},
"directories": {
"test": "test"
},
"release": {
"branches": [
"main"
]
}
}