-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
79 lines (79 loc) · 1.83 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
{
"name": "hmpo-form-wizard",
"version": "15.0.0",
"description": "Routing and request handling for a multi-step form processes",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit && npm run test:cover && npm audit --production",
"test:lint": "eslint .",
"test:unit": "nyc --reporter=lcov --reporter=text-summary _mocha",
"test:cover": "nyc check-coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/HMPO/hmpo-form-wizard.git"
},
"author": "HMPO",
"license": "MIT",
"engines": {
"node": "20.x || 22.x"
},
"bugs": {
"url": "https://github.com/HMPO/hmpo-form-wizard/issues"
},
"homepage": "https://github.com/HMPO/hmpo-form-wizard#readme",
"dependencies": {
"body-parser": "^1.20.3",
"csrf": "^3.1.0",
"debug": "^4.3.7",
"deep-clone-merge": "^1.5.5",
"hmpo-model": "^6.0.1",
"moment": "^2.30.1",
"underscore": "^1.13.7"
},
"peerDependencies": {
"express": ">=4",
"json5": ">=2"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^9.12.0",
"express": "^4.21.1",
"json5": "^2.2.3",
"mocha": "^10.7.3",
"nyc": "^17.1.0",
"proxyquire": "^2.1.3",
"hmpo-reqres": "^2.0.0",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"husky": "^9.1.6",
"globals": "^15.11.0"
},
"mocha": {
"require": "test/helpers",
"spec": "test/**/spec.*.js"
},
"nyc": {
"all": true,
"exclude": [
"bin/**",
"coverage/**",
"test/**",
"example/**",
"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
}
}