-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"name": "@kth/session",
"version": "3.0.9",
"description": "A Node.js module for setting up session middleware for Express.js apps.",
"main": "index.js",
"author": {
"name": "KTH",
"email": "[email protected]",
"url": "https://github.com/KTH"
},
"bugs": {
"url": "https://github.com/KTH/kth-node-session/issues"
},
"homepage": "https://github.com/KTH/kth-node-session#readme",
"scripts": {
"lint": "eslint \"**/*.js\" --quiet",
"lint-v": "eslint \"**/*.js\" ",
"test": "jest",
"test:watch": "jest --watch",
"build": "./build.sh",
"prepare": "if [ -f ./node_modules/.bin/husky ]; then husky install; fi"
},
"repository": {
"type": "git",
"url": "https://github.com/KTH/kth-node-session"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"connect-redis": "^6.1.3",
"express-session": "^1.17.3",
"redis": "^3.1.2"
},
"devDependencies": {
"@kth/eslint-config-kth": "^3.1.0",
"eslint": "^8.52.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"jest": "^29.7.0"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"files": [
"index.js"
],
"// (jest)": "configuration for jest",
"jest": {
"clearMocks": true,
"notifyMode": "failure-change",
"testEnvironment": "node",
"verbose": true
}
}