express-genix 1.1.1 → 1.1.3

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 (1) hide show
  1. package/package.json +43 -29
package/package.json CHANGED
@@ -1,49 +1,63 @@
1
1
  {
2
2
  "name": "express-genix",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Production-grade CLI to generate Express apps with JWT, DB, rate-limiting, automatic formatting, and more",
5
5
  "main": "index.js",
6
6
  "bin": {
7
- "express-genix": "./index.js"
7
+ "express-genix": "./index.js"
8
8
  },
9
9
  "scripts": {
10
- "start": "node index.js",
11
- "test": "jest",
12
- "lint": "eslint .",
13
- "lint:fix": "eslint . --fix"
10
+ "start": "node index.js",
11
+ "test": "jest",
12
+ "lint": "eslint .",
13
+ "lint:fix": "eslint . --fix"
14
14
  },
15
15
  "dependencies": {
16
- "commander": "^12.1.0",
17
- "inquirer": "^10.2.0",
18
- "ejs": "^3.1.9"
16
+ "commander": "^12.1.0",
17
+ "inquirer": "^10.2.0",
18
+ "ejs": "^3.1.9"
19
19
  },
20
20
  "devDependencies": {
21
- "jest": "^29.7.0",
22
- "eslint": "^8.56.0",
23
- "eslint-config-airbnb-base": "^15.0.0",
24
- "eslint-plugin-import": "^2.29.1"
21
+ "jest": "^29.7.0",
22
+ "eslint": "^8.56.0",
23
+ "eslint-config-airbnb-base": "^15.0.0",
24
+ "eslint-plugin-import": "^2.29.1"
25
25
  },
26
26
  "keywords": [
27
- "express",
28
- "cli",
29
- "boilerplate",
30
- "jwt",
31
- "rate-limiting",
32
- "production",
33
- "prettier",
34
- "eslint",
35
- "mongodb",
36
- "postgresql",
37
- "api"
27
+ "express",
28
+ "cli",
29
+ "boilerplate",
30
+ "jwt",
31
+ "rate-limiting",
32
+ "production",
33
+ "prettier",
34
+ "eslint",
35
+ "mongodb",
36
+ "postgresql",
37
+ "api",
38
+ "nodejs",
39
+ "javascript",
40
+ "backend",
41
+ "rest-api",
42
+ "microservices"
38
43
  ],
39
44
  "author": "Joshua Maeba Nyamasege",
40
45
  "license": "MIT",
41
46
  "repository": {
42
- "type": "git",
43
- "url": "https://github.com/yourusername/express-genix.git"
47
+ "type": "git",
48
+ "url": "git+https://github.com/LambdaAI001/express-genix-CLI.git"
44
49
  },
45
50
  "bugs": {
46
- "url": "https://github.com/yourusername/express-genix/issues"
51
+ "url": "https://github.com/LambdaAI001/express-genix-CLI/issues"
47
52
  },
48
- "homepage": "https://github.com/yourusername/express-genix#readme"
49
- }
53
+ "homepage": "https://github.com/LambdaAI001/express-genix-CLI#readme",
54
+ "engines": {
55
+ "node": ">=16.0.0"
56
+ },
57
+ "files": [
58
+ "index.js",
59
+ "lib/",
60
+ "templates/",
61
+ "README.md"
62
+ ]
63
+ }