@minimaltech/node-infra 0.2.29 → 0.2.30

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +17 -19
package/README.md CHANGED
@@ -4,5 +4,5 @@
4
4
 
5
5
  Please checkout these references for more guiding:
6
6
 
7
- - [Project WIKI](https://github.com/phatnt199/lb-infra/wiki)
7
+ - [Project WIKI](https://github.com/phatnt199/node-infra/wiki)
8
8
  - [Loopback 4 Official Documentation](https://loopback.io/doc/en/lb4/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minimaltech/node-infra",
3
- "version": "0.2.29",
3
+ "version": "0.2.30",
4
4
  "description": "NodeJS Infrastructure - Loopback 4 Framework",
5
5
  "keywords": [
6
6
  "web",
@@ -10,10 +10,10 @@
10
10
  "express",
11
11
  "auth",
12
12
  "security",
13
- "postgres",
14
- "postgresql",
15
- "StrongLoop",
13
+ "backend",
16
14
  "framework",
15
+ "backend framework",
16
+ "StrongLoop",
17
17
  "loopback",
18
18
  "loopback-application",
19
19
  "infrastructure"
@@ -21,18 +21,17 @@
21
21
  "main": "dist/index.js",
22
22
  "types": "dist/index.d.ts",
23
23
  "engines": {
24
- "node": ">=18",
25
- "pnpm": ">=8"
24
+ "node": ">=18"
26
25
  },
27
26
  "repository": {
28
27
  "type": "git",
29
- "url": "git+https://github.com/phatnt199/lb-infra.git"
28
+ "url": "git+https://github.com/phatnt199/node-infra.git"
30
29
  },
31
30
  "author": "Minimal Technology <developer@miminaltek.com>",
32
31
  "bugs": {
33
- "url": "https://github.com/phatnt199/lb-infra/issues"
32
+ "url": "https://github.com/phatnt199/node-infra/issues"
34
33
  },
35
- "homepage": "https://github.com/phatnt199/lb-infra/wiki",
34
+ "homepage": "https://github.com/phatnt199/node-infra/wiki",
36
35
  "license": "MIT",
37
36
  "files": [
38
37
  "README.md",
@@ -65,8 +64,8 @@
65
64
  "@node-oauth/oauth2-server": "^5.1.0",
66
65
  "@socket.io/redis-adapter": "^8.3.0",
67
66
  "@socket.io/redis-emitter": "^5.1.0",
68
- "axios": "^1.7.4",
69
- "bullmq": "^5.10.4",
67
+ "axios": "^1.7.7",
68
+ "bullmq": "^5.12.12",
70
69
  "casbin": "^5.30.0",
71
70
  "cron": "^3.1.7",
72
71
  "dayjs": "^1.11.12",
@@ -77,6 +76,7 @@
77
76
  "knex": "^3.1.0",
78
77
  "lodash": "^4.17.21",
79
78
  "minio": "^8.0.1",
79
+ "mocha": "^10.7.3",
80
80
  "mqtt": "^5.9.0",
81
81
  "multer": "^1.4.5-lts.1",
82
82
  "rxjs": "^7.8.0",
@@ -91,7 +91,7 @@
91
91
  "@loopback/build": "^11.0.3",
92
92
  "@loopback/eslint-config": "^15.0.3",
93
93
  "@loopback/testlab": "^7.0.3",
94
- "@minimaltech/eslint-node": "^0.0.10",
94
+ "@minimaltech/eslint-node": "^0.0.11",
95
95
  "@types/express": "^4.17.21",
96
96
  "@types/jsonwebtoken": "^9.0.6",
97
97
  "@types/lodash": "^4.17.7",
@@ -99,9 +99,7 @@
99
99
  "@types/multer": "^1.4.7",
100
100
  "@types/node": "^20.16.2",
101
101
  "eslint": "8.57.0",
102
- "eslint-config-love": "^63.0.0",
103
102
  "eslint-plugin-prettier": "^5.1.3",
104
- "mocha": "^10.7.3",
105
103
  "prettier": "^3.3.2",
106
104
  "source-map-support": "^0.5.21",
107
105
  "ts-node": "^10.9.1",
@@ -116,12 +114,12 @@
116
114
  "eslint": "eslint --report-unused-disable-directives .",
117
115
  "lint": "pnpm eslint && pnpm prettier:cli",
118
116
  "lint:fix": "pnpm eslint --fix && pnpm prettier:fix",
119
- "prettier:cli": "prettier \"**/*.{js,ts}\"",
117
+ "prettier:cli": "prettier \"**/*.{js,ts}\" -l",
120
118
  "prettier:fix": "pnpm prettier:cli --write",
121
- "rebuild": "sh ./scripts/rebuild.sh --no-version",
122
- "rebuild:major": "sh ./scripts/rebuild.sh --major",
123
- "rebuild:minor": "sh ./scripts/rebuild.sh --minor",
124
- "rebuild:patch": "sh ./scripts/rebuild.sh --patch",
119
+ "rebuild": "sh ./scripts/rebuild.sh no-version",
120
+ "rebuild:major": "sh ./scripts/rebuild.sh major",
121
+ "rebuild:minor": "sh ./scripts/rebuild.sh minor",
122
+ "rebuild:patch": "sh ./scripts/rebuild.sh patch",
125
123
  "pretest:dev": "pnpm run rebuild",
126
124
  "test:dev": "NODE_ENV=development mocha -r dotenv-flow/config -r source-map-support/register --timeout 60000 --exit dist/__tests__/index.js"
127
125
  }