diff options
author | Pawel Zelawski <pawel.zelawski@outlook.com> | 2025-04-10 19:08:03 +0200 |
---|---|---|
committer | Pawel Zelawski <pawel.zelawski@outlook.com> | 2025-04-10 19:08:03 +0200 |
commit | 8978768890b945d36d78eedb0019d877ca327dca (patch) | |
tree | 22f5d82cc0178aebee8f3ea7c4ec1d5ae630a3a8 /package.json | |
parent | 27ee7449f9e21502814000652ee72532439fed57 (diff) |
fix(deps): override elliptic and lodash to fix vulnerabilities
- Add npm overrides for elliptic (^6.6.1) and lodash (^4.17.21) in package.json.
- This resolves multiple security vulnerabilities reported by GitHub Dependabot in these transitive dependencies, inherited via digibyte-message.
- Updates package-lock.json to reflect the overridden versions.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package.json b/package.json index 79849c5..8468c97 100644 --- a/package.json +++ b/package.json @@ -72,5 +72,9 @@ }, "dependencies": { "digibyte-message": "github:digicontributer/bitcore-message#9d9c8ad30158db25f683e2dee746a14a9d7ec8a0" + }, + "overrides": { + "elliptic": "^6.6.1", + "lodash": "^4.17.21" } } |