forked from samuraitruong/connect-dynamodb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.6 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
51
52
53
54
55
56
57
{
"name": "@samuraitruong/connect-dynamodb",
"description": "DynamoDB session store for Connect",
"version": "2.2.0",
"author": "Mike Carson <ca98am79@gmail.com> (http://ca98am79.com), samuraitruong@hotmail.com",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"lint": "eslint . --fix",
"test": "jest --forceExit",
"prepublish": "npm run build",
"release": "standard-version",
"build": "tsc -p tsconfig.build.json",
"prepare": "husky install"
},
"dependencies": {
"connect": "^3.7.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-plugin-jest": "^27.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"husky": "^8.0.1",
"jest": "^29.0.1",
"lint-staged": "^13.0.3",
"standard-version": "^9.5.0",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2",
"yarn-upgrade-all": "^0.7.1"
},
"engines": {
"node": "*"
},
"optionalDependencies": {
"aws-sdk": "*"
},
"homepage": "https://github.com/samuraitruong/connect-dynamodb",
"repository": {
"type": "git",
"url": "git://github.com/samuraitruong/connect-dynamodb.git"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"packageManager": "yarn@3.2.3"
}