-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.17 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@companieshouse/node-session-handler",
"version": "5.2.0",
"description": "Node.js session handler for Companies House",
"main": "./lib/index.js",
"engines": {
"node": ">=24.0.0",
"npm": ">=11"
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf ./lib && tsc",
"lint": "eslint 'src/*.ts' 'src/**/*.ts' 'test/**/*.test.ts'",
"lint:fix": "eslint 'src/*.ts' 'src/**/*.ts' 'test/**/*.test.ts' --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"analyse-code": "sonar-scanner",
"prepublishOnly": "[ ! -d node_modules ] && npm install; tsc",
"postpublish": "rm -rf lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/companieshouse/node-session-handler.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/companieshouse/node-session-handler/issues"
},
"homepage": "https://github.com/companieshouse/node-session-handler#readme",
"dependencies": {
"@companieshouse/structured-logging-node": "^2.0.4",
"express-async-handler": "^1.1.4",
"ioredis": "^4.17.3",
"msgpack5": "^6.0.2",
"on-headers": "^1.0.2"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.178.0",
"@types/chai": "^4.2.22",
"@types/cookie-parser": "^1.4.10",
"@types/express": "^4.17.25",
"@types/ioredis": "^4.17.11",
"@types/msgpack5": "^3.4.1",
"@types/on-headers": "^1.0.0",
"@types/sinon": "^17.0.4",
"@types/supertest": "^2.0.16",
"@types/jest": "^29.5.13",
"@types/jest-when": "^3.5.5",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.39.2",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cookie-parser": "^1.4.5",
"express": "^4.22.1",
"sinon": "^21.0.0",
"sonarqube-scanner": "^3.5.0",
"supertest": "^7.1.4",
"ts-node": "10.9.2",
"typescript": "^5.9.3",
"jest": "^29.7.0",
"jest-when": "^3.6.0",
"ts-jest": "^29.1.1"
},
"overrides": {
"diff": "^8.0.3",
"glob": "^12.0.0",
"js-yaml": "^4.1.1",
"minimatch": "10.2.5",
"qs": "^6.14.1",
"test-exclude": "^7.0.1"
}
}