@mimik/rediser 2.1.0 → 2.1.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/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@mimik/rediser",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Redis connection helper for mimik microservices",
5
5
  "main": "./index.js",
6
6
  "exports": "./index.js",
7
7
  "engines": {
8
- "node": ">=24"
8
+ "node": ">=24.0.0"
9
9
  },
10
10
  "type": "module",
11
11
  "scripts": {
12
12
  "lint": "eslint . --no-error-on-unmatched-pattern",
13
13
  "docs": "jsdoc2md index.js > README.md",
14
- "test": "mocha --reporter mochawesome --bail --exit --timeout 5000 --node-option loader=esmock test/",
15
- "test-ci": "c8 --reporter=lcov --reporter=text npm test",
14
+ "test": "mocha",
15
+ "test-ci": "c8 npm test",
16
16
  "prepublishOnly": "npm run docs && npm run lint && npm run test-ci",
17
17
  "commit-ready": "npm run docs && npm run lint && npm run test-ci",
18
18
  "prepare": "husky"
@@ -28,19 +28,20 @@
28
28
  "url": "https://bitbucket.org/mimiktech/rediser"
29
29
  },
30
30
  "dependencies": {
31
- "@mimik/lib-filters": "^2.0.7",
32
- "@mimik/sumologic-winston-logger": "^2.1.14",
31
+ "@mimik/lib-filters": "^2.0.8",
32
+ "@mimik/sumologic-winston-logger": "^2.2.2",
33
33
  "redis": "5.11.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@eslint/js": "9.39.3",
37
- "@mimik/eslint-plugin-document-env": "^2.0.8",
38
- "@stylistic/eslint-plugin": "5.9.0",
36
+ "@eslint/js": "10.0.1",
37
+ "@mimik/eslint-plugin-document-env": "^2.0.9",
38
+ "@mimik/eslint-plugin-logger": "^1.0.3",
39
+ "@stylistic/eslint-plugin": "5.10.0",
39
40
  "c8": "11.0.0",
40
- "eslint": "9.39.3",
41
- "eslint-plugin-import": "2.32.0",
42
- "esmock": "^2.7.3",
43
- "globals": "17.3.0",
41
+ "eslint": "10.1.0",
42
+ "eslint-plugin-import-x": "4.16.2",
43
+ "esmock": "2.7.3",
44
+ "globals": "17.4.0",
44
45
  "husky": "9.1.7",
45
46
  "jsdoc-to-markdown": "9.1.3",
46
47
  "mocha": "11.7.5",
@@ -1,11 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(npm install --save-dev mocha esmock)",
5
- "Bash(npm test)",
6
- "Bash(npm run lint)",
7
- "Bash(npm run test-ci)",
8
- "Bash(npm uninstall bluebird)"
9
- ]
10
- }
11
- }