hmpo-model 6.0.2 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yaml +1 -1
- package/.nvmrc +1 -0
- package/package.json +11 -6
package/.nvmrc
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v24.14.0
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hmpo-model",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Simple model for interacting with http/rest apis.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"pretest": "npm run lint",
|
|
8
8
|
"test": "npm run unit",
|
|
9
|
-
"posttest": "npm run check-coverage && npm audit --
|
|
9
|
+
"posttest": "npm run check-coverage && npm audit --omit=dev",
|
|
10
10
|
"lint": "eslint .",
|
|
11
11
|
"unit": "nyc --reporter=lcov --reporter=text-summary _mocha test/ --recursive --require test/helper",
|
|
12
12
|
"check-coverage": "nyc check-coverage",
|
|
@@ -19,14 +19,14 @@
|
|
|
19
19
|
"author": "PEX",
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"engines": {
|
|
22
|
-
"node": "
|
|
22
|
+
"node": "24.x"
|
|
23
23
|
},
|
|
24
24
|
"bugs": {
|
|
25
25
|
"url": "https://github.com/HMPO/hmpo-model/issues"
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/HMPO/hmpo-model#readme",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"debug": "4.3.7",
|
|
29
|
+
"debug": "^4.3.7",
|
|
30
30
|
"got": "<12",
|
|
31
31
|
"http-proxy-agent": "^7.0.2",
|
|
32
32
|
"https-proxy-agent": "^7.0.5",
|
|
@@ -35,15 +35,20 @@
|
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"chai": "^4.5.0",
|
|
37
37
|
"eslint": "^9.12.0",
|
|
38
|
-
"hmpo-logger": "^
|
|
38
|
+
"hmpo-logger": "^9.0.0",
|
|
39
39
|
"mocha": "^10.7.3",
|
|
40
40
|
"nyc": "^17.1.0",
|
|
41
41
|
"proxyquire": "^2.1.3",
|
|
42
|
-
"sinon": "^
|
|
42
|
+
"sinon": "^21.0.2",
|
|
43
43
|
"sinon-chai": "^3.7.0",
|
|
44
44
|
"husky": "^9.1.6",
|
|
45
45
|
"globals": "^15.9.0"
|
|
46
46
|
},
|
|
47
|
+
"overrides": {
|
|
48
|
+
"mocha": {
|
|
49
|
+
"serialize-javascript": "^7.0.4"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
47
52
|
"nyc": {
|
|
48
53
|
"all": true,
|
|
49
54
|
"exclude": [
|