beavuck-time 2.5.2 → 2.5.4
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 +1 -1
- package/openapi/swagger.json +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -69,7 +69,7 @@ version.
|
|
|
69
69
|
|
|
70
70
|
When the time comes to go to production, to protect yourself from surprise breaking changes, you should instead point to
|
|
71
71
|
specific minor version tags, such as `beavuck/time:2.0` : those will not get breaking changes, but they will get
|
|
72
|
-
security
|
|
72
|
+
security upgrades and bug fixes while they're active.
|
|
73
73
|
|
|
74
74
|
### Ⓝ NPM
|
|
75
75
|
|
package/openapi/swagger.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beavuck-time",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"description": "Get time in ISO format, in UTC timezone, from a simple, lightweight node server",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"time",
|
|
@@ -37,7 +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
|
-
"
|
|
40
|
+
"upgrade-dependencies": "ncu --format group && ncu -u && npm install --verbose && npm prune --verbose && npm audit fix --verbose",
|
|
41
41
|
"prepublishOnly": "npm install && npm run build",
|
|
42
42
|
"lint": "eslint --fix src/",
|
|
43
43
|
"typecheck": "tsc --noEmit",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"go": "rm -rf build && npm install && npm run build && npm run clean && npm run test && npm run start"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@dotenvx/dotenvx": "^1.
|
|
53
|
-
"cors": "^2.8.
|
|
52
|
+
"@dotenvx/dotenvx": "^1.52.0",
|
|
53
|
+
"cors": "^2.8.6",
|
|
54
54
|
"express": "^5.2.1",
|
|
55
55
|
"express-rate-limit": "^8.2.1",
|
|
56
56
|
"http-status-codes": "^2.3.0",
|
|
@@ -64,19 +64,19 @@
|
|
|
64
64
|
"@types/cors": "^2.8.19",
|
|
65
65
|
"@types/express": "^5.0.6",
|
|
66
66
|
"@types/jest": "^30.0.0",
|
|
67
|
-
"@types/node": "^25.0
|
|
67
|
+
"@types/node": "^25.1.0",
|
|
68
68
|
"@types/supertest": "^6.0.3",
|
|
69
69
|
"eslint": "^9.39.2",
|
|
70
|
-
"globals": "^17.
|
|
70
|
+
"globals": "^17.2.0",
|
|
71
71
|
"jest": "^30.2.0",
|
|
72
72
|
"nodemon": "^3.1.11",
|
|
73
|
-
"npm-check-updates": "^19.3.
|
|
74
|
-
"prettier": "3.8.
|
|
73
|
+
"npm-check-updates": "^19.3.2",
|
|
74
|
+
"prettier": "3.8.1",
|
|
75
75
|
"supertest": "^7.2.2",
|
|
76
76
|
"ts-jest": "^29.4.6",
|
|
77
77
|
"ts-node": "^10.9.2",
|
|
78
78
|
"typescript": "^5.9.3",
|
|
79
|
-
"typescript-eslint": "^8.
|
|
79
|
+
"typescript-eslint": "^8.54.0"
|
|
80
80
|
},
|
|
81
81
|
"engines": {
|
|
82
82
|
"node": ">=18.20.8"
|