node-dep-resolver 1.1.3 → 1.1.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.
Files changed (2) hide show
  1. package/README.md +4 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,13 +15,12 @@
15
15
  - **Semver Conflict Detection**: Identifies overlapping or incompatible version constraints requested across different packages.
16
16
  - **Backtracking Resolution Engine**: Evaluates alternative candidate package versions to automatically resolve conflicts.
17
17
  - **CLI & Programmatic Library**: Use instantly via `npx node-dep-resolver` or import into Node.js ES Module projects.
18
- - **Native Unit Testing**: High-reliability codebase verified using Node.js native `node:test` framework.
19
18
 
20
19
  ---
21
20
 
22
21
  ## Installation & CLI Usage
23
22
 
24
- You can run the CLI directly on any `package.json` file without installing:
23
+ You can run the CLI directly on any `package.json` file:
25
24
 
26
25
  ```bash
27
26
  npx node-dep-resolver ./package.json
@@ -57,9 +56,9 @@ Starting resolution...
57
56
 
58
57
  ========== RESOLVED DEPENDENCY SOLUTION ==========
59
58
 
60
- [OK] express@4.18.2
61
- [OK] express-rate-limit@7.5.0
62
- [OK] axios@1.20.0
59
+ [OK] express: 4.18.2 (satisfies requested range '4.18.2')
60
+ [OK] express-rate-limit: 7.5.0 (satisfies requested range '7.5.0')
61
+ [UPGRADE] axios: 1.7.0 -> 1.20.0 (satisfies requested range '^1.7.0')
63
62
  ```
64
63
 
65
64
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-dep-resolver",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "A lightweight CLI tool & library to build dependency graphs and resolve semver conflicts.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",