-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
41 lines (41 loc) · 994 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
34
35
36
37
38
39
40
41
{
"name": "connect-dynamodb",
"description": "DynamoDB session store for Connect",
"version": "3.0.5",
"author": "Mike Carson <ca98am79@gmail.com> (http://ca98am79.com)",
"contributors": [
{
"name": "Lance Gliser",
"email": "lance@fragmentedthought.com"
}
],
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"test": "mocha --timeout 5000",
"debugtest": "mocha --inspect-brk",
"test:types": "tsd"
},
"dependencies": {},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"express-session": "*",
"mocha": "*",
"prettier": "^2.8.0",
"should": "*",
"sinon": "*",
"tsd": "^0.28.1"
},
"engines": {
"node": "*"
},
"optionalDependencies": {
"@aws-sdk/client-dynamodb": "^3.218.0"
},
"homepage": "/~https://github.com/ca98am79/connect-dynamodb",
"repository": {
"type": "git",
"url": "git://github.com/ca98am79/connect-dynamodb.git"
}
}