beavuck-time 3.1.1 → 3.2.2

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/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/beavuck-time.svg) ![npm](https://img.shields.io/npm/dm/beavuck-time.svg)](https://www.npmjs.com/package/beavuck-time)
4
4
 
5
+ [![docker](https://badgen.net/docker/pulls/beavuck/time) ![docker](https://badgen.net/docker/size/beavuck/time)](https://hub.docker.com/repository/docker/beavuck/time)
6
+
5
7
  ## 📊 Status
6
8
 
7
9
  [![Quality gate](https://sonarcloud.io/api/project_badges/quality_gate?project=beavuck-services_time)](https://sonarcloud.io/summary/new_code?id=beavuck-services_time)
@@ -32,7 +32,7 @@
32
32
  },
33
33
  "info": {
34
34
  "title": "beavuck-time",
35
- "version": "3.1.1",
35
+ "version": "3.2.2",
36
36
  "description": "Get time in ISO format, in UTC timezone, from a simple, lightweight node server",
37
37
  "license": {
38
38
  "name": "Unlicense"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beavuck-time",
3
- "version": "3.1.1",
3
+ "version": "3.2.2",
4
4
  "description": "Get time in ISO format, in UTC timezone, from a simple, lightweight node server",
5
5
  "keywords": [
6
6
  "time",
@@ -37,8 +37,7 @@
37
37
  "up-patch": "npm version patch --no-git-tag-version",
38
38
  "up-minor": "npm version minor --no-git-tag-version",
39
39
  "up-major": "npm version major --no-git-tag-version",
40
- "upgrade-dependencies": "ncu --cooldown=7d --format group && ncu -u && npm run safe-install && npm prune --verbose && npm run audit",
41
- "upgrade-dependencies:ci": "ncu --cooldown=7d --format group && ncu -u && npm run safe-install:ci && npm prune --verbose && npm run audit",
40
+ "upgrade-dependencies": "ncu --cooldown=7d --format group && ncu -u --cooldown=7d && npm run safe-install && npm prune --verbose && npm run audit",
42
41
  "audit": "npm audit fix --verbose",
43
42
  "prepublishOnly": "npm run safe-install && npm run build",
44
43
  "safe-install": "npm install --ignore-scripts --allow-git=none --min-release-age=7",
@@ -46,7 +45,7 @@
46
45
  "lint": "eslint --fix --cache --cache-location node_modules/.cache/.eslint_cache --report-unused-disable-directives --ignore-pattern .gitignore src/",
47
46
  "typecheck": "tsc --noEmit",
48
47
  "format": "prettier --write --log-level warn --cache --cache-location node_modules/.cache/.prettier_cache src/",
49
- "clean": "npm run lint && npm run typecheck && npm run format",
48
+ "clean": "node scripts/check-stable-deps.mjs && npm run lint && npm run typecheck && npm run format",
50
49
  "test": "node --env-file=.env.test node_modules/.bin/jest --coverage",
51
50
  "build": "tsoa spec-and-routes && tsc",
52
51
  "start": "node build/server.js",
@@ -56,10 +55,10 @@
56
55
  "@tsoa/runtime": "^6.6.0",
57
56
  "cors": "^2.8.6",
58
57
  "express": "^5.2.1",
59
- "express-rate-limit": "^8.3.2",
58
+ "express-rate-limit": "^8.4.1",
60
59
  "http-status-codes": "^2.3.0",
61
60
  "joi": "^18.1.2",
62
- "tsoa": "^6.6.0",
61
+ "tsoa": "^7.0.0-alpha.0",
63
62
  "winston": "^3.19.0",
64
63
  "winston-daily-rotate-file": "^5.0.0"
65
64
  },
@@ -68,17 +67,17 @@
68
67
  "@types/cors": "^2.8.19",
69
68
  "@types/express": "^5.0.6",
70
69
  "@types/jest": "^30.0.0",
71
- "@types/node": "^25.5.2",
70
+ "@types/node": "^25.6.0",
72
71
  "@types/supertest": "^7.2.0",
73
- "eslint": "^10.2.0",
74
- "globals": "^17.4.0",
72
+ "eslint": "^10.2.1",
73
+ "globals": "^17.5.0",
75
74
  "jest": "^30.3.0",
76
75
  "jest-util": "^30.3.0",
77
76
  "npm-check-updates": "^20.0.0",
78
- "prettier": "3.8.1",
77
+ "prettier": "3.8.3",
79
78
  "supertest": "^7.2.2",
80
79
  "ts-jest": "^29.4.9",
81
- "typescript": "^6.0.2",
80
+ "typescript": "^6.0.3",
82
81
  "typescript-eslint": "^8.58.0"
83
82
  },
84
83
  "engines": {