-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 867 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
{
"name": "mongo-express-session-store",
"version": "1.0.16",
"repository": {
"type": "git",
"url": "https://github.com/Reiner1210/mongo-express-session-store"
},
"homepage": "https://github.com/Reiner1210/mongo-express-session-store",
"description": "Middleware to store expression session data in mongoDB Database. Using the official mogoDB driver, less dependencies and possibility to reuse the client / database for other database tasks.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"mongodb",
"express",
"session",
"ES6"
],
"author": {
"name": "Reiner Pröls",
"email": "[email protected]"
},
"license": "ISC",
"dependencies": {
"express-session": "^1.17.3",
"mongodb": "^5.1.0"
},
"devDependencies": {
"dotenv": "^16.0.3",
"jest": "^29.4.3"
}
}