mevn-orm 2.4.5 → 2.5.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.
Files changed (3) hide show
  1. package/.env.example +1 -1
  2. package/README.md +4 -0
  3. package/package.json +15 -17
package/.env.example CHANGED
@@ -4,6 +4,6 @@ DB_HOST=localhost
4
4
  DB_USER=root
5
5
  DB_PASSWORD=
6
6
  DB_DATABASE=mevn_orm
7
- DB_CLIENT=mysql
7
+ DB_CLIENT=mysql2
8
8
 
9
9
  TESTING_DB=sqlite3
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## This project has been archived
2
+ while I have a vision to create an intuitive ORM, I am not able to contitnue with this project at this time.
3
+ I have to go back to the drawing board and come up with a better tool using the learnings from this.
4
+
1
5
  # Mevn-orm
2
6
  ![npm](https://img.shields.io/npm/v/mevn-orm?style=for-the-badge)
3
7
  [![GitHub license](https://img.shields.io/github/license/stanleymasinde/mevn-orm?style=for-the-badge)](https://github.com/StanleyMasinde/mevn-orm/blob/master/LICENSE)
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "mevn-orm",
3
- "version": "2.4.5",
3
+ "version": "2.5.0",
4
4
  "description": "simple ORM for express js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
7
7
  "pretest": "node initDb",
8
- "test": "mocha --exit",
8
+ "test": "mocha --exit",
9
9
  "init:db": "node initDb",
10
10
  "migrate": "knex migrate:latest",
11
11
  "lint": "eslint --ext .js ./"
12
12
  },
13
13
  "peerDependencies": {
14
- "dotenv": "^16.0.3",
15
- "knex": "^2.3.0",
16
- "mysql": "2.18.1"
14
+ "dotenv": "^16.4.5",
15
+ "knex": "^3.0.0",
16
+ "mysql2": "^3.9.3"
17
17
  },
18
18
  "peerDependenciesMeta": {
19
19
  "dotenv": {
@@ -42,19 +42,17 @@
42
42
  "pluralize": "^8.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@babel/cli": "^7.20.7",
46
- "@babel/core": "^7.20.7",
47
- "@babel/eslint-parser": "^7.19.1",
48
- "@babel/eslint-plugin": "^7.19.1",
49
- "@babel/plugin-proposal-class-properties": "^7.18.6",
50
- "chai": "^4.3.7",
51
- "dotenv": "^16.0.3",
52
- "eslint": "^8.31.0",
53
- "faker": "^5.5.3",
54
- "knex": "^2.3.0",
55
- "mocha": "^10.2.0",
45
+ "@babel/cli": "^7.24.5",
46
+ "@babel/core": "^7.24.5",
47
+ "@babel/eslint-parser": "^7.24.3",
48
+ "@babel/eslint-plugin": "^7.24.0",
49
+ "@faker-js/faker": "^8.4.0",
50
+ "chai": "^4.4.1",
51
+ "dotenv": "^16.4.5",
52
+ "knex": "^3.0.0",
53
+ "mocha": "^10.4.0",
56
54
  "mysql": "^2.18.1",
57
- "sqlite3": "^5.1.4"
55
+ "sqlite3": "^5.1.7"
58
56
  },
59
57
  "directories": {
60
58
  "lib": "lib",