forked from HMPO/hmpo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.11 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
96
97
98
{
"name": "hmpo-app",
"version": "3.0.1",
"description": "Bootstrap middleware and templating",
"author": "HMPO",
"license": "MIT",
"private": false,
"engineStrict": true,
"engines": {
"node": ">=14"
},
"main": "index.js",
"scripts": {
"start": "node app.js",
"pretest": "npm run test:lint",
"test": "npm run test:unit",
"posttest": "npm audit",
"test:lint": "eslint .",
"test:unit": "nyc _mocha"
},
"dependencies": {
"async": "^3.2.4",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.6",
"debug": "^4.3.4",
"deep-clone-merge": "^1.5.5",
"express-session": "^1.17.3",
"fakeredis": "^2.0.0",
"frameguard": "^4.0.0",
"helmet": "^6.1.5",
"nocache": "^3.0.4",
"on-finished": "^2.4.1",
"redis": "^4.6.5",
"underscore": "^1.13.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.39.0",
"express": "^4.18.2",
"govuk-frontend": "^4.6.0",
"hmpo-components": "^6.0.0",
"hmpo-config": "^3.0.0",
"hmpo-i18n": "^6.0.1",
"hmpo-logger": "^7.0.0",
"husky": "^2.7.0",
"mocha": "^10.2.0",
"nunjucks": "^3.2.4",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"reqres": "^3.0.1",
"sinon": "^15.0.4",
"sinon-chai": "^3.7.0"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
},
"peerDependencies": {
"express": ">=4",
"govuk-frontend": ">=4",
"hmpo-components": ">=6",
"hmpo-config": ">=3",
"hmpo-i18n": ">=6",
"hmpo-logger": ">=7",
"nunjucks": ">=3"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"mocha": {
"require": "test/unit/helper",
"spec": "test/unit/**/spec.*.js"
},
"nyc": {
"all": true,
"exclude": [
"example/**",
"coverage/**",
"test/**"
],
"check-coverage": true,
"skip-full": true,
"temp-directory": "coverage/.nyc_output",
"reporter": [
"text-summary",
"text",
"lcov"
],
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}