-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "hmpo-app",
"version": "4.0.0",
"description": "Bootstrap middleware and templating",
"author": "HMPO",
"license": "MIT",
"private": false,
"engineStrict": true,
"engines": {
"node": "20.x || 22.x"
},
"main": "index.js",
"scripts": {
"pretest": "npm run test:lint",
"test": "npm run test:unit",
"posttest": "npm audit",
"test:lint": "eslint .",
"test:unit": "nyc _mocha",
"prepare": "husky"
},
"dependencies": {
"async": "^3.2.6",
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.6",
"debug": "^4.3.7",
"deep-clone-merge": "^1.5.5",
"express-session": "^1.18.0",
"fakeredis": "^2.0.0",
"frameguard": "^4.0.0",
"helmet": "^8.0.0",
"nocache": "^3.0.4",
"on-finished": "^2.4.1",
"redis": "^4.7.0",
"underscore": "^1.13.7",
"uuid": "^10.0.0"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^9.11.1",
"express": "^4.21.0",
"globals": "^15.11.0",
"govuk-frontend": "^4.8.0",
"hmpo-components": "^7.0.1",
"hmpo-config": "^4.0.0",
"hmpo-i18n": "^7.0.0",
"hmpo-logger": "^8.0.0",
"hmpo-reqres": "^2.0.0",
"husky": "^9.1.6",
"mocha": "^10.7.3",
"nunjucks": "^3.2.4",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0"
},
"optionalDependencies": {
"fsevents": "~2.3.3"
},
"peerDependencies": {
"express": ">=4",
"govuk-frontend": ">=4",
"hmpo-components": ">=7",
"hmpo-config": ">=4",
"hmpo-i18n": ">=7",
"hmpo-logger": ">=8",
"nunjucks": ">=3"
},
"mocha": {
"require": "test/unit/helper",
"spec": "test/unit/**/spec.*.js"
},
"nyc": {
"all": true,
"exclude": [
"example/**",
"coverage/**",
"test/**",
"eslint.config.js"
],
"check-coverage": true,
"skip-full": true,
"temp-directory": "coverage/.nyc_output",
"reporter": [
"text-summary",
"text",
"lcov"
],
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}