@mojaloop/central-ledger 19.8.6 → 19.8.8
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.
- package/CHANGELOG.md +20 -0
- package/migrations/310405_participantPositionChange-positionChange.js +56 -0
- package/package.json +2 -2
- package/{sbom-v19.8.5.csv → sbom-v19.8.7.csv} +20 -20
- package/src/domain/fx/cyril.js +2 -2
- package/src/domain/position/abort.js +2 -2
- package/src/domain/position/fulfil.js +2 -2
- package/src/domain/position/fx-prepare.js +1 -1
- package/src/domain/position/fx-timeout-reserved.js +2 -2
- package/src/domain/position/prepare.js +1 -1
- package/src/domain/position/timeout-reserved.js +1 -1
- package/src/models/position/facade.js +3 -2
- package/src/models/transfer/facade.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [19.8.8](https://github.com/mojaloop/central-ledger/compare/v19.8.7...v19.8.8) (2025-09-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Chore
|
|
9
|
+
|
|
10
|
+
* bump stream ([#1204](https://github.com/mojaloop/central-ledger/issues/1204)) ([fdfb7be](https://github.com/mojaloop/central-ledger/commit/fdfb7be5b7acb03eb3287738e03be0c28d472586))
|
|
11
|
+
* **sbom:** update sbom [skip ci] ([85992f6](https://github.com/mojaloop/central-ledger/commit/85992f682223b9b1519737a5518063c2771f9bb2))
|
|
12
|
+
|
|
13
|
+
### [19.8.7](https://github.com/mojaloop/central-ledger/compare/v19.8.6...v19.8.7) (2025-09-03)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* rename column 'change' and fix datatype on participantPositionChange table ([#1203](https://github.com/mojaloop/central-ledger/issues/1203)) ([fd898b0](https://github.com/mojaloop/central-ledger/commit/fd898b08d1d291b0c203f7cb95972b127fd50a24))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Chore
|
|
22
|
+
|
|
23
|
+
* **sbom:** update sbom [skip ci] ([fb35f03](https://github.com/mojaloop/central-ledger/commit/fb35f0374264c8d23673e04db86ca72130271652))
|
|
24
|
+
|
|
5
25
|
### [19.8.6](https://github.com/mojaloop/central-ledger/compare/v19.8.5...v19.8.6) (2025-09-03)
|
|
6
26
|
|
|
7
27
|
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/*****
|
|
2
|
+
License
|
|
3
|
+
--------------
|
|
4
|
+
Copyright © 2020-2025 Mojaloop Foundation
|
|
5
|
+
The Mojaloop files are made available by the Mojaloop Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
10
|
+
|
|
11
|
+
Contributors
|
|
12
|
+
--------------
|
|
13
|
+
This is the official list of the Mojaloop project contributors for this file.
|
|
14
|
+
Names of the original copyright holders (individuals or organizations)
|
|
15
|
+
should be listed with a '*' in the first column. People who have
|
|
16
|
+
contributed from an organization can be listed under the organization
|
|
17
|
+
that actually holds the copyright for their contributions (see the
|
|
18
|
+
Mojaloop Foundation for an example). Those individuals should have
|
|
19
|
+
their names indented and be marked with a '-'. Email address can be added
|
|
20
|
+
optionally within square brackets <email>.
|
|
21
|
+
|
|
22
|
+
* Mojaloop Foundation
|
|
23
|
+
- Name Surname <name.surname@mojaloop.io>
|
|
24
|
+
|
|
25
|
+
* ModusBox
|
|
26
|
+
- Shashikant Hirugade <shashi.mojaloop@gmail.com>
|
|
27
|
+
--------------
|
|
28
|
+
******/
|
|
29
|
+
|
|
30
|
+
'use strict'
|
|
31
|
+
|
|
32
|
+
exports.up = async (knex) => {
|
|
33
|
+
return knex.schema.hasTable('participantPositionChange').then(async (exists) => {
|
|
34
|
+
if (exists) {
|
|
35
|
+
await knex.schema.alterTable('participantPositionChange', (t) => {
|
|
36
|
+
t.renameColumn('change', 'positionChange')
|
|
37
|
+
})
|
|
38
|
+
await knex.schema.alterTable('participantPositionChange', (t) => {
|
|
39
|
+
t.decimal('positionChange', 18, 4).notNullable().alter()
|
|
40
|
+
})
|
|
41
|
+
}
|
|
42
|
+
})
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
exports.down = async (knex) => {
|
|
46
|
+
return knex.schema.hasTable('participantPositionChange').then(async (exists) => {
|
|
47
|
+
if (exists) {
|
|
48
|
+
await knex.schema.alterTable('participantPositionChange', (t) => {
|
|
49
|
+
t.renameColumn('positionChange', 'change')
|
|
50
|
+
})
|
|
51
|
+
await knex.schema.alterTable('participantPositionChange', (t) => {
|
|
52
|
+
t.decimal('change', 18, 2).notNullable().alter()
|
|
53
|
+
})
|
|
54
|
+
}
|
|
55
|
+
})
|
|
56
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/central-ledger",
|
|
3
|
-
"version": "19.8.
|
|
3
|
+
"version": "19.8.8",
|
|
4
4
|
"description": "Central ledger hosted by a scheme to record and settle transfers",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "ModusBox",
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"@mojaloop/central-services-logger": "11.9.1",
|
|
94
94
|
"@mojaloop/central-services-metrics": "12.6.0",
|
|
95
95
|
"@mojaloop/central-services-shared": "18.30.8",
|
|
96
|
-
"@mojaloop/central-services-stream": "11.8.
|
|
96
|
+
"@mojaloop/central-services-stream": "11.8.5",
|
|
97
97
|
"@mojaloop/database-lib": "11.3.2",
|
|
98
98
|
"@mojaloop/event-sdk": "14.6.1",
|
|
99
99
|
"@mojaloop/inter-scheme-proxy-cache-lib": "2.6.0",
|
|
@@ -2,7 +2,7 @@ type,bom_ref,license-id,group,author,name,version,purl,path,description,vcs-url,
|
|
|
2
2
|
application,,,,,npm,10.9.0,,,,,,,,,,,,,,,,,
|
|
3
3
|
application,,Apache-2.0,@cyclonedx,Jan Kowalleck,cyclonedx-npm,3.0.0,,,Create CycloneDX Software Bill of Materials (SBOM) from NPM projects.,git+https://github.com/CycloneDX/cyclonedx-node-npm.git,"as detected from PackageJson property ""repository.url""",https://github.com/CycloneDX/cyclonedx-node-npm#readme,"as detected from PackageJson property ""homepage""",https://github.com/CycloneDX/cyclonedx-node-npm/issues,"as detected from PackageJson property ""bugs.url""",,,,,,,,
|
|
4
4
|
library,,Apache-2.0,@cyclonedx,Jan Kowalleck,cyclonedx-library,8.5.0,,,Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser).,git+https://github.com/CycloneDX/cyclonedx-javascript-library.git,"as detected from PackageJson property ""repository.url""",https://github.com/CycloneDX/cyclonedx-javascript-library#readme,"as detected from PackageJson property ""homepage""",https://github.com/CycloneDX/cyclonedx-javascript-library/issues,"as detected from PackageJson property ""bugs.url""",,,,,,,,
|
|
5
|
-
application,@mojaloop/central-ledger@19.8.
|
|
5
|
+
application,@mojaloop/central-ledger@19.8.7,Apache-2.0,@mojaloop,ModusBox,central-ledger,19.8.7,pkg:npm/%40mojaloop/central-ledger@19.8.7?vcs_url=git%2Bssh%3A%2F%2Fgit%40github.com%2Fmojaloop%2Fcentral-ledger.git,,Central ledger hosted by a scheme to record and settle transfers,git+ssh://git@github.com/mojaloop/central-ledger.git,"as detected from PackageJson property ""repository.url""",https://github.com/mojaloop/central-ledger#readme,"as detected from PackageJson property ""homepage""",https://github.com/mojaloop/central-ledger/issues,"as detected from PackageJson property ""bugs.url""",,,,,,active,Active in npm registry,2025-09-03T11:02:34.737Z
|
|
6
6
|
library,@hapi/basic@7.0.2,BSD-3-Clause,@hapi,,basic,7.0.2,pkg:npm/%40hapi/basic@7.0.2,node_modules/@hapi/basic,Basic authentication plugin,git://github.com/hapijs/basic.git,"as detected from PackageJson property ""repository.url""",https://github.com/hapijs/basic#readme,"as detected from PackageJson property ""homepage""",https://github.com/hapijs/basic/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@hapi/basic/-/basic-7.0.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,91da6c982107543948612b516eccd2cb2ffdf9dab92a47d62d7e408ee1c63f0b73bae668a599e1915bcc655e39850f2103c57fc1e0a832cd27cd727b242036a3,,active,Active in npm registry,2023-06-09T15:35:54.543Z
|
|
7
7
|
library,@hapi/boom@10.0.1,BSD-3-Clause,@hapi,,boom,10.0.1,pkg:npm/%40hapi/boom@10.0.1,node_modules/@hapi/boom,HTTP-friendly error objects,git://github.com/hapijs/boom.git,"as detected from PackageJson property ""repository.url""",https://github.com/hapijs/boom#readme,"as detected from PackageJson property ""homepage""",https://github.com/hapijs/boom/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@hapi/boom/-/boom-10.0.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,11170265a123747dce812265ca3564f291c815ebacf750a328fdeff8ca6004da7922f1b33f697f6d1883efc9ea61c28f69975b2a42b9bc30553ddda8847065b0,,active,Active in npm registry,2023-02-11T17:40:56.116Z
|
|
8
8
|
library,@hapi/hoek@11.0.7,BSD-3-Clause,@hapi,,hoek,11.0.7,pkg:npm/%40hapi/hoek@11.0.7,node_modules/@hapi/hoek,General purpose node utilities,git://github.com/hapijs/hoek.git,"as detected from PackageJson property ""repository.url""",https://github.com/hapijs/hoek#readme,"as detected from PackageJson property ""homepage""",https://github.com/hapijs/hoek/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.7.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,1d5e6e9dd5a42b3701e11654baca8ea5c83139aaba54e007ef386122bda0dc6f0d17f32514eef94a33abd8d7ee4b1d0c878d3ed45a8291a80a2c94729145a815,,active,Active in npm registry,2024-11-14T15:54:32.587Z
|
|
@@ -103,17 +103,17 @@ library,stack-trace@0.0.10,MIT,,Felix Geisendörfer,stack-trace,0.0.10,pkg:npm/s
|
|
|
103
103
|
library,winston-transport@4.9.0,MIT,,Charlie Robbins,winston-transport,4.9.0,pkg:npm/winston-transport@4.9.0,node_modules/winston-transport,Base stream implementations for winston@3 and up.,git+ssh://git@github.com/winstonjs/winston-transport.git,"as detected from PackageJson property ""repository.url""",https://github.com/winstonjs/winston-transport#readme,"as detected from PackageJson property ""homepage""",https://github.com/winstonjs/winston-transport/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/winston-transport/-/winston-transport-4.9.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,f1dacc278ae481a3e8d4c7b8cc3ff758b7c8ff33dd03da36222a4a383ba79c60dcbaa6c7c23b1b07bf7296fd382c2186cd4d3143abd3ce738ca5019a2e1866e8,charlie.robbins@gmail.com,active,Active in npm registry,2024-11-10T02:38:39.262Z
|
|
104
104
|
library,winston-transport@4.9.0|readable-stream@3.6.2,MIT,,,readable-stream,3.6.2,pkg:npm/readable-stream@3.6.2,node_modules/winston-transport/node_modules/readable-stream,Streams3~ a user-land copy of the stream library from Node.js,git://github.com/nodejs/readable-stream.git,"as detected from PackageJson property ""repository.url""",https://github.com/nodejs/readable-stream#readme,"as detected from PackageJson property ""homepage""",https://github.com/nodejs/readable-stream/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,f6efec9e20ab6370f959db04447cc71381b66025eaa06e454c7522082e1221bafa5dc2d9058d39c9af442a361e93d3b9c4e0308c6abed497460404bb43d49ca0,,active,Active in npm registry,2025-01-07T09:15:39.036Z
|
|
105
105
|
library,@mojaloop/central-services-metrics@12.6.0,Apache-2.0,@mojaloop,ModusBox,central-services-metrics,12.6.0,pkg:npm/%40mojaloop/central-services-metrics@12.6.0,node_modules/@mojaloop/central-services-metrics,Shared code for metrics generation,git+https://github.com/mojaloop/central-services-metrics.git,"as detected from PackageJson property ""repository.url""",https://github.com/mojaloop/central-services-metrics#readme,"as detected from PackageJson property ""homepage""",https://github.com/mojaloop/central-services-metrics/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@mojaloop/central-services-metrics/-/central-services-metrics-12.6.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,82dad36cda7bfde99bf14aa91a758a919e45ee9c5ee77e11fa039bd0faf7625b5df2db3c318c83ed37a276a2392fa2041d8a4d7f5fd76ee1a90717747ef0686a,,active,Active in npm registry,2025-05-14T14:18:54.584Z
|
|
106
|
-
library,@typescript-eslint/eslint-plugin@8.32.1,MIT,@typescript-eslint,,eslint-plugin,8.32.1,pkg:npm/%40typescript-eslint/eslint-plugin@8.32.1#packages/eslint-plugin,node_modules/@typescript-eslint/eslint-plugin,TypeScript plugin for ESLint,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/eslint-plugin,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/eslint-plugin,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,eaee8f960f673ff275191a5efef7238da6e8e947396103c0331b20432182fc8d11bae9221b5c087b7f95b60dc8ad20952439aa2b78fc69daedcd7484351b4582,,active,Active in npm registry,2025-09-
|
|
106
|
+
library,@typescript-eslint/eslint-plugin@8.32.1,MIT,@typescript-eslint,,eslint-plugin,8.32.1,pkg:npm/%40typescript-eslint/eslint-plugin@8.32.1#packages/eslint-plugin,node_modules/@typescript-eslint/eslint-plugin,TypeScript plugin for ESLint,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/eslint-plugin,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/eslint-plugin,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,eaee8f960f673ff275191a5efef7238da6e8e947396103c0331b20432182fc8d11bae9221b5c087b7f95b60dc8ad20952439aa2b78fc69daedcd7484351b4582,,active,Active in npm registry,2025-09-03T12:07:01.082Z
|
|
107
107
|
library,@typescript-eslint/eslint-plugin@8.32.1|ignore@7.0.4,MIT,,kael,ignore,7.0.4,pkg:npm/ignore@7.0.4,node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore,Ignore is a manager and filter for .gitignore rules~ the one used by eslint~ gitbook and many others.,git+ssh://git@github.com/kaelzhang/node-ignore.git,"as detected from PackageJson property ""repository.url""",https://github.com/kaelzhang/node-ignore#readme,"as detected from PackageJson property ""homepage""",https://github.com/kaelzhang/node-ignore/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/ignore/-/ignore-7.0.4.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,809cf393e3d03739f3f32b11ac2d1a3a404d551043b44d67e7722acaa11fdcf5eb630a2616ce6ae2918c8b304c245fb2921d378a7b09dbb841f204ab0f61e7f0,,active,Active in npm registry,2025-05-31T02:18:53.593Z
|
|
108
108
|
library,@eslint-community/regexpp@4.12.1,MIT,@eslint-community,Toru Nagashima,regexpp,4.12.1,pkg:npm/%40eslint-community/regexpp@4.12.1,node_modules/@eslint-community/regexpp,Regular expression parser for ECMAScript.,git+https://github.com/eslint-community/regexpp.git,"as detected from PackageJson property ""repository.url""",https://github.com/eslint-community/regexpp#readme,"as detected from PackageJson property ""homepage""",https://github.com/eslint-community/regexpp/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,0826420c9b9db81f4e524164636220a69359322da5050803daacf05e41226b5e9c81eda98a363f6978bde8224caae0cc9f79c97653d5d40e4aac9117c1f2cdcd,,active,Active in npm registry,2024-10-28T00:38:34.716Z
|
|
109
|
-
library,@typescript-eslint/parser@8.32.1,MIT,@typescript-eslint,,parser,8.32.1,pkg:npm/%40typescript-eslint/parser@8.32.1#packages/parser,node_modules/@typescript-eslint/parser,An ESLint custom parser which leverages TypeScript ESTree,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/parser,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/parser,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,2ca32b9b008fa0b84ce39674d0ed6e95bea3c3256bda4af75c9a7e1beb5211971b6ae36749c7b0710c2d26a5c38577983c312367c0b54a35e6d35e428ab1261a,,active,Active in npm registry,2025-09-
|
|
110
|
-
library,@typescript-eslint/scope-manager@8.32.1,MIT,@typescript-eslint,,scope-manager,8.32.1,pkg:npm/%40typescript-eslint/scope-manager@8.32.1#packages/scope-manager,node_modules/@typescript-eslint/scope-manager,TypeScript scope analyser for ESLint,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/scope-manager,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/scope-manager,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,ec8b086880de667ee47df93ba970b7a3a67851b95924a577501a64bd1369af9352c8b8e2eedbd372f9a730d62e60bca1dba98df16ef6df1a68de2e0c943df7bc,,active,Active in npm registry,2025-09-
|
|
111
|
-
library,@typescript-eslint/types@8.32.1,MIT,@typescript-eslint,,types,8.32.1,pkg:npm/%40typescript-eslint/types@8.32.1#packages/types,node_modules/@typescript-eslint/types,Types for the TypeScript-ESTree AST spec,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/types,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/types/-/types-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,626c9bc175097201aa800a7a6c4b20a4f5c483a75c0b23f2092af408002e79a711fc20818b6e46dd5f20190da447341104da25ed54249f132cf47bd56bd46f7e,,active,Active in npm registry,2025-09-
|
|
112
|
-
library,@typescript-eslint/visitor-keys@8.32.1,MIT,@typescript-eslint,,visitor-keys,8.32.1,pkg:npm/%40typescript-eslint/visitor-keys@8.32.1#packages/visitor-keys,node_modules/@typescript-eslint/visitor-keys,Visitor keys used to help traverse the TypeScript-ESTree AST,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/visitor-keys,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,6abd2d8d07ce6f3852696dc2dd03664dce687e3d210e8350e575ab0b2eb30f269b76bd135a10a40a5a7eaf2c06363fe8740141573cc9acae2d12ae4ce079aee3,,active,Active in npm registry,2025-09-
|
|
109
|
+
library,@typescript-eslint/parser@8.32.1,MIT,@typescript-eslint,,parser,8.32.1,pkg:npm/%40typescript-eslint/parser@8.32.1#packages/parser,node_modules/@typescript-eslint/parser,An ESLint custom parser which leverages TypeScript ESTree,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/parser,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/parser,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,2ca32b9b008fa0b84ce39674d0ed6e95bea3c3256bda4af75c9a7e1beb5211971b6ae36749c7b0710c2d26a5c38577983c312367c0b54a35e6d35e428ab1261a,,active,Active in npm registry,2025-09-03T12:06:49.425Z
|
|
110
|
+
library,@typescript-eslint/scope-manager@8.32.1,MIT,@typescript-eslint,,scope-manager,8.32.1,pkg:npm/%40typescript-eslint/scope-manager@8.32.1#packages/scope-manager,node_modules/@typescript-eslint/scope-manager,TypeScript scope analyser for ESLint,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/scope-manager,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/scope-manager,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,ec8b086880de667ee47df93ba970b7a3a67851b95924a577501a64bd1369af9352c8b8e2eedbd372f9a730d62e60bca1dba98df16ef6df1a68de2e0c943df7bc,,active,Active in npm registry,2025-09-03T12:06:42.876Z
|
|
111
|
+
library,@typescript-eslint/types@8.32.1,MIT,@typescript-eslint,,types,8.32.1,pkg:npm/%40typescript-eslint/types@8.32.1#packages/types,node_modules/@typescript-eslint/types,Types for the TypeScript-ESTree AST spec,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/types,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/types/-/types-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,626c9bc175097201aa800a7a6c4b20a4f5c483a75c0b23f2092af408002e79a711fc20818b6e46dd5f20190da447341104da25ed54249f132cf47bd56bd46f7e,,active,Active in npm registry,2025-09-03T12:06:24.397Z
|
|
112
|
+
library,@typescript-eslint/visitor-keys@8.32.1,MIT,@typescript-eslint,,visitor-keys,8.32.1,pkg:npm/%40typescript-eslint/visitor-keys@8.32.1#packages/visitor-keys,node_modules/@typescript-eslint/visitor-keys,Visitor keys used to help traverse the TypeScript-ESTree AST,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/visitor-keys,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,6abd2d8d07ce6f3852696dc2dd03664dce687e3d210e8350e575ab0b2eb30f269b76bd135a10a40a5a7eaf2c06363fe8740141573cc9acae2d12ae4ce079aee3,,active,Active in npm registry,2025-09-03T12:06:30.508Z
|
|
113
113
|
library,@typescript-eslint/visitor-keys@8.32.1|eslint-visitor-keys@4.2.0,Apache-2.0,,Toru Nagashima,eslint-visitor-keys,4.2.0,pkg:npm/eslint-visitor-keys@4.2.0,node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys,Constants and utilities about visitor keys to traverse AST.,git+https://github.com/eslint/js.git,"as detected from PackageJson property ""repository.url""",https://github.com/eslint/js/blob/main/packages/eslint-visitor-keys/README.md,"as detected from PackageJson property ""homepage""",https://github.com/eslint/js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,5322e749e84db7ad851614b08d994799ea24a512b9f6b733dbd8fe175fda0e06e46d14e4ef021cf57cdda1ab0c51b44d283334a90b7ff8127806ba4578005e9b,,active,Active in npm registry,2025-06-09T15:45:53.017Z
|
|
114
|
-
library,@typescript-eslint/type-utils@8.32.1,MIT,@typescript-eslint,,type-utils,8.32.1,pkg:npm/%40typescript-eslint/type-utils@8.32.1#packages/type-utils,node_modules/@typescript-eslint/type-utils,Type utilities for working with TypeScript + ESLint together,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/type-utils,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,9aff58a50180f2222c9792b250f8be1462e6efe6c0e1f81769e45c14a4434700ccbb88b0ad21de0cf8a9c2e78d5e174821996dc0226ff8d9317ed1026c86567c,,active,Active in npm registry,2025-09-
|
|
115
|
-
library,@typescript-eslint/typescript-estree@8.32.1,MIT,@typescript-eslint,,typescript-estree,8.32.1,pkg:npm/%40typescript-eslint/typescript-estree@8.32.1#packages/typescript-estree,node_modules/@typescript-eslint/typescript-estree,A parser that converts TypeScript source code into an ESTree compatible form,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/typescript-estree,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/typescript-estree,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,63700ff4421f63005be245866feb229af3daa90a13e6826ecf38fd9b48ba14263a48fbe5a26636122e1410c9bbf855ed94d25ba2bf34c629b2b25cda405eb186,,active,Active in npm registry,2025-09-
|
|
116
|
-
library,@typescript-eslint/utils@8.32.1,MIT,@typescript-eslint,,utils,8.32.1,pkg:npm/%40typescript-eslint/utils@8.32.1#packages/utils,node_modules/@typescript-eslint/utils,Utilities for working with TypeScript + ESLint together,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/utils,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/utils,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,0ec48534880b4ab73cf60a6ad4b241ec79b5629ba12b4f3a0d10c948dadec1c1af625a165b5bd92c705322f6ab2990dc00e448cbfb96371f0669dfb8a0ca6448,,active,Active in npm registry,2025-09-
|
|
114
|
+
library,@typescript-eslint/type-utils@8.32.1,MIT,@typescript-eslint,,type-utils,8.32.1,pkg:npm/%40typescript-eslint/type-utils@8.32.1#packages/type-utils,node_modules/@typescript-eslint/type-utils,Type utilities for working with TypeScript + ESLint together,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/type-utils,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,9aff58a50180f2222c9792b250f8be1462e6efe6c0e1f81769e45c14a4434700ccbb88b0ad21de0cf8a9c2e78d5e174821996dc0226ff8d9317ed1026c86567c,,active,Active in npm registry,2025-09-03T12:06:54.982Z
|
|
115
|
+
library,@typescript-eslint/typescript-estree@8.32.1,MIT,@typescript-eslint,,typescript-estree,8.32.1,pkg:npm/%40typescript-eslint/typescript-estree@8.32.1#packages/typescript-estree,node_modules/@typescript-eslint/typescript-estree,A parser that converts TypeScript source code into an ESTree compatible form,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/typescript-estree,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/typescript-estree,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,63700ff4421f63005be245866feb229af3daa90a13e6826ecf38fd9b48ba14263a48fbe5a26636122e1410c9bbf855ed94d25ba2bf34c629b2b25cda405eb186,,active,Active in npm registry,2025-09-03T12:06:36.655Z
|
|
116
|
+
library,@typescript-eslint/utils@8.32.1,MIT,@typescript-eslint,,utils,8.32.1,pkg:npm/%40typescript-eslint/utils@8.32.1#packages/utils,node_modules/@typescript-eslint/utils,Utilities for working with TypeScript + ESLint together,git+https://github.com/typescript-eslint/typescript-eslint.git#packages/utils,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://typescript-eslint.io/packages/utils,"as detected from PackageJson property ""homepage""",https://github.com/typescript-eslint/typescript-eslint/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.32.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,0ec48534880b4ab73cf60a6ad4b241ec79b5629ba12b4f3a0d10c948dadec1c1af625a165b5bd92c705322f6ab2990dc00e448cbfb96371f0669dfb8a0ca6448,,active,Active in npm registry,2025-09-03T12:06:49.066Z
|
|
117
117
|
library,debug@4.4.1,MIT,,Josh Junon,debug,4.4.1,pkg:npm/debug@4.4.1,node_modules/debug,Lightweight debugging utility for Node.js and the browser,git://github.com/debug-js/debug.git,"as detected from PackageJson property ""repository.url""",https://github.com/debug-js/debug#readme,"as detected from PackageJson property ""homepage""",https://github.com/debug-js/debug/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/debug/-/debug-4.4.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,29c282aa27ed049719afefbbca4a03204c126b75d6a304df34fa3dd816318d78b260456b51087668bca1c410b0c30fa17a8aed505c44258711ce8b2cb5310161,,active,Active in npm registry,2025-05-13T20:56:36.586Z
|
|
118
118
|
library,eslint@8.57.1,MIT,,Nicholas C. Zakas,eslint,8.57.1,pkg:npm/eslint@8.57.1,node_modules/eslint,An AST-based pattern checker for JavaScript.,git+https://github.com/eslint/eslint.git,"as detected from PackageJson property ""repository.url""",https://eslint.org,"as detected from PackageJson property ""homepage""",https://github.com/eslint/eslint/issues/,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,ca9a30c83c69552629917afd58fbf63c0642b4d8a9d4cbf92935b4482bab5efffd88ea5cac7f4f6aa504964b2a101ea90a1a87183442153cab6651a19cb34688,nicholas+npm@nczconsulting.com,deprecated,This version is no longer supported. Please see https://eslint.org/version-support for other options.,2025-08-22T20:39:49.550Z
|
|
119
119
|
library,eslint@8.57.1|ajv@6.12.6,MIT,,Evgeny Poberezkin,ajv,6.12.6,pkg:npm/ajv@6.12.6,node_modules/eslint/node_modules/ajv,Another JSON Schema Validator,git+https://github.com/ajv-validator/ajv.git,"as detected from PackageJson property ""repository.url""",https://github.com/ajv-validator/ajv,"as detected from PackageJson property ""homepage""",https://github.com/ajv-validator/ajv/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,8f77d52e0bd3a39dbb6a7c98c893864d825b1bebe79d062f1349b99a691cd532be9f1029a6408b3082f4699e1d6e55423681928619be933138654ca4068320e2,,active,Active in npm registry,2025-06-09T04:08:01.833Z
|
|
@@ -128,7 +128,7 @@ library,eslint@8.57.1|type-fest@0.20.2,,,Sindre Sorhus,type-fest,0.20.2,pkg:npm/
|
|
|
128
128
|
library,eslint@8.57.1|minimatch@3.1.2,ISC,,Isaac Z. Schlueter,minimatch,3.1.2,pkg:npm/minimatch@3.1.2,node_modules/eslint/node_modules/minimatch,a glob matcher in javascript,git://github.com/isaacs/minimatch.git,"as detected from PackageJson property ""repository.url""",https://github.com/isaacs/minimatch#readme,"as detected from PackageJson property ""homepage""",https://github.com/isaacs/minimatch/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,27ba7ade1462023c35343130c355bb8b7efe07222b3963b95d0400cd9dd539c2f43cdc9bc297e657f374e73140cf043d512c84717eaddd43be2b96aa0503881f,i@izs.me,active,Active in npm registry,2025-06-12T20:19:28.018Z
|
|
129
129
|
library,eslint@8.57.1|strip-ansi@6.0.1,MIT,,Sindre Sorhus,strip-ansi,6.0.1,pkg:npm/strip-ansi@6.0.1,node_modules/eslint/node_modules/strip-ansi,Strip ANSI escape codes from a string,git+https://github.com/chalk/strip-ansi.git,"as detected from PackageJson property ""repository.url""",https://github.com/chalk/strip-ansi#readme,"as detected from PackageJson property ""homepage""",https://github.com/chalk/strip-ansi/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,637f153d21dcaa416b0a916743dbee4979aabaebf9a1738aa46793e9a1abaf7a3719cf409556ba2417d448e0a76f1186645fbfd28a08ecaacfb944b3b54754e4,sindresorhus@gmail.com,active,Active in npm registry,2023-05-28T09:55:04.460Z
|
|
130
130
|
library,ts-api-utils@2.1.0,MIT,,JoshuaKGoldberg,ts-api-utils,2.1.0,pkg:npm/ts-api-utils@2.1.0,node_modules/ts-api-utils,Utility functions for working with TypeScript's API. Successor to the wonderful tsutils. 🛠️️,git+https://github.com/JoshuaKGoldberg/ts-api-utils.git,"as detected from PackageJson property ""repository.url""",https://github.com/JoshuaKGoldberg/ts-api-utils#readme,"as detected from PackageJson property ""homepage""",https://github.com/JoshuaKGoldberg/ts-api-utils/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,09481364bd62af0f2edbd6f3ace0ff9c7f398eac9cef80fa4ac84582e8ce200ee8b26d91cfb7581fbeda824c7b1f81413710eaec28dff888da5fff33c055be65,npm@joshuakgoldberg.com,active,Active in npm registry,2025-03-20T12:24:50.789Z
|
|
131
|
-
library,@eslint-community/eslint-utils@4.7.0,MIT,@eslint-community,Toru Nagashima,eslint-utils,4.7.0,pkg:npm/%40eslint-community/eslint-utils@4.7.0,node_modules/@eslint-community/eslint-utils,Utilities for ESLint plugins.,git+https://github.com/eslint-community/eslint-utils.git,"as detected from PackageJson property ""repository.url""",https://github.com/eslint-community/eslint-utils#readme,"as detected from PackageJson property ""homepage""",https://github.com/eslint-community/eslint-utils/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,772c9b6f701c6a30bbba16ba0af85d55126a68aca7ef0d982aa2b200ddfb34a620653dfac3e8916f40f29a6739a84279e3d73f4b7d5c30c48577be5bb5e0a90b,,active,Active in npm registry,2025-
|
|
131
|
+
library,@eslint-community/eslint-utils@4.7.0,MIT,@eslint-community,Toru Nagashima,eslint-utils,4.7.0,pkg:npm/%40eslint-community/eslint-utils@4.7.0,node_modules/@eslint-community/eslint-utils,Utilities for ESLint plugins.,git+https://github.com/eslint-community/eslint-utils.git,"as detected from PackageJson property ""repository.url""",https://github.com/eslint-community/eslint-utils#readme,"as detected from PackageJson property ""homepage""",https://github.com/eslint-community/eslint-utils/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,772c9b6f701c6a30bbba16ba0af85d55126a68aca7ef0d982aa2b200ddfb34a620653dfac3e8916f40f29a6739a84279e3d73f4b7d5c30c48577be5bb5e0a90b,,active,Active in npm registry,2025-09-03T06:20:59.909Z
|
|
132
132
|
library,graphemer@1.4.0,MIT,,Matt Davies,graphemer,1.4.0,pkg:npm/graphemer@1.4.0,node_modules/graphemer,A JavaScript library that breaks strings into their individual user-perceived characters (including emojis!),git+https://github.com/flmnt/graphemer.git,"as detected from PackageJson property ""repository.url""",https://github.com/flmnt/graphemer,"as detected from PackageJson property ""homepage""",https://github.com/flmnt/graphemer/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,12d2b0a0eea4c422fd58ee718a98874d9952cc19bb58b4fadbb4ea0bfb9545dd072a6abc357c9e6e7358c43a018bbc2df1e4d6ad4aca5c2395685abdc759206a,matt@filament.so,active,Active in npm registry,2023-06-22T16:32:15.232Z
|
|
133
133
|
library,natural-compare@1.4.0,MIT,,Lauri Rooden,natural-compare,1.4.0,pkg:npm/natural-compare@1.4.0,node_modules/natural-compare,Compare strings containing a mix of letters and numbers in the way a human being would in sort order.,git://github.com/litejs/natural-compare-lite.git,"as detected from PackageJson property ""repository.url""",https://github.com/litejs/natural-compare-lite#readme,"as detected from PackageJson property ""homepage""",https://github.com/litejs/natural-compare-lite/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,396343f1e8b756d342f61ed5eb4a9f7f7495a1b1ebf7de824f0831b9b832418129836f7487d2746eec8408d3497b19059b9b0e6a38791b5d7a45803573c64c4b,,active,Active in npm registry,2023-06-22T16:33:03.092Z
|
|
134
134
|
library,fast-glob@3.3.3,MIT,,Denis Malinochkin,fast-glob,3.3.3,pkg:npm/fast-glob@3.3.3,node_modules/fast-glob,It's a very fast and efficient glob library for Node.js,git+https://github.com/mrmlnc/fast-glob.git,"as detected from PackageJson property ""repository.url""",https://github.com/mrmlnc/fast-glob#readme,"as detected from PackageJson property ""homepage""",https://github.com/mrmlnc/fast-glob/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,ecca6d2fc53472a705773233c0e4c7a22957f71e41acdab27bb67f2ee0bb9023118a8d44312caa44adc1100503eec5d1ab8893e00cd356e65d8604364c2bd82e,,active,Active in npm registry,2025-01-05T10:38:42.437Z
|
|
@@ -170,7 +170,7 @@ library,clone@2.1.2,MIT,,Paul Vorbach,clone,2.1.2,pkg:npm/clone@2.1.2,node_modul
|
|
|
170
170
|
library,convict@6.2.4,Apache-2.0,,Lloyd Hilaiel,convict,6.2.4,pkg:npm/convict@6.2.4#master,node_modules/convict,Featureful configuration management library for Node.js (nested structure~ schema validation~ etc.),git+https://github.com/mozilla/node-convict.git#master,"as detected from PackageJson property ""repository.url""",https://github.com/mozilla/node-convict,"as detected from PackageJson property ""homepage""",https://github.com/mozilla/node-convict/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/convict/-/convict-6.2.4.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,a8deb4040c1d3157687dc917ec0968855276c7d52f8d33682955c22f62f1164d65efbe7b109a9fd67c9274c90f41eaf46edf244399508b267dff636fac506ec1,lloyd@hilaiel.com,active,Active in npm registry,2024-05-15T17:34:06.869Z
|
|
171
171
|
library,lodash.clonedeep@4.5.0,MIT,,John-David Dalton,lodash.clonedeep,4.5.0,pkg:npm/lodash.clonedeep@4.5.0,node_modules/lodash.clonedeep,The lodash method `_.cloneDeep` exported as a module.,git+https://github.com/lodash/lodash.git,"as detected from PackageJson property ""repository.url""",https://lodash.com/,"as detected from PackageJson property ""homepage""",https://github.com/lodash/lodash/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,1f9661085db9ae215df6e0795029152a8eb59b74bfc59935c78c00eb2a7f2f74453fa67f7871f5ca641c18ba3b27718c3df9b457fee6d6daf21ee195c69a8405,john.david.dalton@gmail.com,active,Active in npm registry,2022-06-19T13:34:08.112Z
|
|
172
172
|
library,yargs-parser@21.1.1,ISC,,Ben Coe,yargs-parser,21.1.1,pkg:npm/yargs-parser@21.1.1,node_modules/yargs-parser,the mighty option parser used by yargs,git+https://github.com/yargs/yargs-parser.git,"as detected from PackageJson property ""repository.url""",https://github.com/yargs/yargs-parser#readme,"as detected from PackageJson property ""homepage""",https://github.com/yargs/yargs-parser/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,b55a6c256ec376379c0221696c80757b7ab1210b04e8da0f739fde4ddadb6c80b88742d5b16867a1ade0fa6d87725048ba31f3b31678549540f8652e736fcb07,ben@npmjs.com,active,Active in npm registry,2025-05-26T20:12:01.075Z
|
|
173
|
-
library,dotenv@17.2.1,BSD-2-Clause,,,dotenv,17.2.1,pkg:npm/dotenv@17.2.1,node_modules/dotenv,Loads environment variables from .env file,git://github.com/motdotla/dotenv.git,"as detected from PackageJson property ""repository.url""",https://github.com/motdotla/dotenv#readme,"as detected from PackageJson property ""homepage""",https://github.com/motdotla/dotenv/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/dotenv/-/dotenv-17.2.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,91084360a65e72a9ccd1f0a7cc8e5e22fe4be1c01efe2448f87a8c6cefe16d175301e5c31be33d1638a953135f6c046e120e221c86e19e1b3bf0108735b4b111,,active,Active in npm registry,2025-
|
|
173
|
+
library,dotenv@17.2.1,BSD-2-Clause,,,dotenv,17.2.1,pkg:npm/dotenv@17.2.1,node_modules/dotenv,Loads environment variables from .env file,git://github.com/motdotla/dotenv.git,"as detected from PackageJson property ""repository.url""",https://github.com/motdotla/dotenv#readme,"as detected from PackageJson property ""homepage""",https://github.com/motdotla/dotenv/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/dotenv/-/dotenv-17.2.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,91084360a65e72a9ccd1f0a7cc8e5e22fe4be1c01efe2448f87a8c6cefe16d175301e5c31be33d1638a953135f6c046e120e221c86e19e1b3bf0108735b4b111,,active,Active in npm registry,2025-09-02T21:09:37.224Z
|
|
174
174
|
library,env-var@7.5.0,MIT,,Evan Shortiss,env-var,7.5.0,pkg:npm/env-var@7.5.0,node_modules/env-var,Verification~ sanitization~ and type coercion for environment variables in Node.js,git+https://github.com/evanshortiss/env-var.git,"as detected from PackageJson property ""repository.url""",https://github.com/evanshortiss/env-var,"as detected from PackageJson property ""homepage""",https://github.com/evanshortiss/env-var/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/env-var/-/env-var-7.5.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,98a64eccb44dd044f36aed96d905de7db163a39105e325aadbc3b229bf4809d78d847265384fe91c79f3e2175827d70d6577091e8e71378393e29cee48748dbc,,active,Active in npm registry,2024-05-20T17:32:44.866Z
|
|
175
175
|
library,event-stream@4.0.1,MIT,,Dominic Tarr,event-stream,4.0.1,pkg:npm/event-stream@4.0.1,node_modules/event-stream,construct pipes of streams of events,git://github.com/dominictarr/event-stream.git,"as detected from PackageJson property ""repository.url""",http://github.com/dominictarr/event-stream,"as detected from PackageJson property ""homepage""",https://github.com/dominictarr/event-stream/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/event-stream/-/event-stream-4.0.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,a8009776effd5473c1cdcca174e591e7f21a86118c7f4ae84de6497f3cf4efb1b0ca570377dd323872e8ba19afec62795f33e2e9e91a41677c02f3cfda73afa4,dominic.tarr@gmail.com,active,Active in npm registry,2022-11-08T10:38:35.230Z
|
|
176
176
|
library,immutable@5.1.3,MIT,,Lee Byron,immutable,5.1.3,pkg:npm/immutable@5.1.3,node_modules/immutable,Immutable Data Collections,git://github.com/immutable-js/immutable-js.git,"as detected from PackageJson property ""repository.url""",https://immutable-js.com,"as detected from PackageJson property ""homepage""",https://github.com/immutable-js/immutable-js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/immutable/-/immutable-5.1.3.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,f9c8507437efb1c485d5226abf6827e1244ed99c92df12f7afb216ff0584133af32e2b273a52a242ee72b42fc154d712d790b7f564f61e0fdb8ca8c331cbbece,,active,Active in npm registry,2025-06-11T21:49:21.916Z
|
|
@@ -308,7 +308,7 @@ library,fresh@0.5.2,MIT,,TJ Holowaychuk,fresh,0.5.2,pkg:npm/fresh@0.5.2,node_mod
|
|
|
308
308
|
library,merge-descriptors@1.0.3,MIT,,Jonathan Ong,merge-descriptors,1.0.3,pkg:npm/merge-descriptors@1.0.3,node_modules/merge-descriptors,Merge objects using descriptors,git+https://github.com/sindresorhus/merge-descriptors.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/merge-descriptors#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/merge-descriptors/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,81a36f012ed367cf7bfeb55a6749ccb40cb13728bfa5d6e36c0c14a4542937bd06aa755f3a25e979450c291066cd769243c0dd4d7e3fd26b3adabd8afa113a99,me@jongleberry.com,active,Active in npm registry,2023-11-17T16:22:01.206Z
|
|
309
309
|
library,methods@1.1.2,MIT,,,methods,1.1.2,pkg:npm/methods@1.1.2,node_modules/methods,HTTP methods that node supports,git+https://github.com/jshttp/methods.git,"as detected from PackageJson property ""repository.url""",https://github.com/jshttp/methods#readme,"as detected from PackageJson property ""homepage""",https://github.com/jshttp/methods/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/methods/-/methods-1.1.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,89c9401de36a366ebccc5b676747bed4bdb250876fccda1ab8a53858103756f1ffbcf162785eea7d197051953e0c0f4ff5b3d7212f74ba5c68528087db7b15db,,active,Active in npm registry,2025-05-14T14:56:00.308Z
|
|
310
310
|
library,ee-first@1.1.1,MIT,,Jonathan Ong,ee-first,1.1.1,pkg:npm/ee-first@1.1.1,node_modules/ee-first,return the first event in a set of ee/event pairs,git+https://github.com/jonathanong/ee-first.git,"as detected from PackageJson property ""repository.url""",https://github.com/jonathanong/ee-first#readme,"as detected from PackageJson property ""homepage""",https://github.com/jonathanong/ee-first/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,58cc26f4b851528f9651a44dfaf46e113a86f3d22066985548d91d16079beac4bf1383ab0c837bb78f0201ec121d773a0bc95e7c3f0a29faf9bd8eb56eb425a3,me@jongleberry.com,active,Active in npm registry,2022-06-16T05:43:33.978Z
|
|
311
|
-
library,path-to-regexp@0.1.12,MIT,,,path-to-regexp,0.1.12,pkg:npm/path-to-regexp@0.1.12,node_modules/path-to-regexp,Express style path to RegExp utility,git+https://github.com/pillarjs/path-to-regexp.git,"as detected from PackageJson property ""repository.url""",https://github.com/pillarjs/path-to-regexp#readme,"as detected from PackageJson property ""homepage""",https://github.com/pillarjs/path-to-regexp/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,440d468d454c9ef605c6eaa8beb12a668c715b935466a6f02ad633fd3b7b9d77ab9342db2db9509abb2075e3b15794851dfd140e08234bf6d278e670b75a6611,,active,Active in npm registry,2025-
|
|
311
|
+
library,path-to-regexp@0.1.12,MIT,,,path-to-regexp,0.1.12,pkg:npm/path-to-regexp@0.1.12,node_modules/path-to-regexp,Express style path to RegExp utility,git+https://github.com/pillarjs/path-to-regexp.git,"as detected from PackageJson property ""repository.url""",https://github.com/pillarjs/path-to-regexp#readme,"as detected from PackageJson property ""homepage""",https://github.com/pillarjs/path-to-regexp/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,440d468d454c9ef605c6eaa8beb12a668c715b935466a6f02ad633fd3b7b9d77ab9342db2db9509abb2075e3b15794851dfd140e08234bf6d278e670b75a6611,,active,Active in npm registry,2025-09-02T21:13:13.949Z
|
|
312
312
|
library,proxy-addr@2.0.7,MIT,,Douglas Christopher Wilson,proxy-addr,2.0.7,pkg:npm/proxy-addr@2.0.7,node_modules/proxy-addr,Determine address of proxied request,git+https://github.com/jshttp/proxy-addr.git,"as detected from PackageJson property ""repository.url""",https://github.com/jshttp/proxy-addr#readme,"as detected from PackageJson property ""homepage""",https://github.com/jshttp/proxy-addr/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,96542c30b4940d43d3e388ddad4fcedfbaa59e27e2b433fe670ae699972848ac8b2afb59c69c95d27dbf6c3fcde2d040019fe024475953b28cadaa0ad7e5d802,doug@somethingdoug.com,active,Active in npm registry,2025-05-14T14:56:25.085Z
|
|
313
313
|
library,forwarded@0.2.0,MIT,,,forwarded,0.2.0,pkg:npm/forwarded@0.2.0,node_modules/forwarded,Parse HTTP X-Forwarded-For header,git+https://github.com/jshttp/forwarded.git,"as detected from PackageJson property ""repository.url""",https://github.com/jshttp/forwarded#readme,"as detected from PackageJson property ""homepage""",https://github.com/jshttp/forwarded/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,6ee446d1fa41b511d24c238049eea10f6e7cb44b9b16844b6f864d03a3713151cdc3680e7301e8f70c9a6e5ccccce039cfdc40f4bd4a36393f36de8c4fd698a3,,active,Active in npm registry,2025-05-14T14:56:18.151Z
|
|
314
314
|
library,ipaddr.js@1.9.1,MIT,,whitequark,ipaddr.js,1.9.1,pkg:npm/ipaddr.js@1.9.1,node_modules/ipaddr.js,A library for manipulating IPv4 and IPv6 addresses in JavaScript.,git://github.com/whitequark/ipaddr.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/whitequark/ipaddr.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/whitequark/ipaddr.js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,d0a23feb4ef1a31493a07ec68cdd457d26cba14d3e6ed4e2723b1049642587f859ca437c2a998c7fbb98c0f5b747e6a467a47fc35f199574870585e26143cede,whitequark@whitequark.org,active,Active in npm registry,2024-04-20T01:36:57.028Z
|
|
@@ -481,7 +481,7 @@ library,require-directory@2.1.1,MIT,,Troy Goode,require-directory,2.1.1,pkg:npm/
|
|
|
481
481
|
library,set-blocking@2.0.0,ISC,,Ben Coe,set-blocking,2.0.0,pkg:npm/set-blocking@2.0.0,node_modules/set-blocking,set blocking stdio and stderr ensuring that terminal output does not truncate,git+https://github.com/yargs/set-blocking.git,"as detected from PackageJson property ""repository.url""",https://github.com/yargs/set-blocking#readme,"as detected from PackageJson property ""homepage""",https://github.com/yargs/set-blocking/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,2a22814bc0275861322f3a1f15f9af2b0a5d3f3aa2cb5e8bbd07cadf2bff7d51fb063d77ff097725247527eadf81113dabbc5424ae2abe04bcada48e78b51e87,ben@npmjs.com,active,Active in npm registry,2022-06-26T18:18:15.201Z
|
|
482
482
|
library,which-module@2.0.1,ISC,,nexdrew,which-module,2.0.1,pkg:npm/which-module@2.0.1,node_modules/which-module,Find the module object for something that was require()d,git+https://github.com/nexdrew/which-module.git,"as detected from PackageJson property ""repository.url""",https://github.com/nexdrew/which-module#readme,"as detected from PackageJson property ""homepage""",https://github.com/nexdrew/which-module/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,881759e7b443be7391f4018184c2f6bc565fee1f2f9818e1a1a66a3832411561d5b4a90398ab876a2ddcc793e054cad7e580cda76ec0a1f61b03072d492faf85,,active,Active in npm registry,2023-07-23T04:47:01.895Z
|
|
483
483
|
library,yaml@2.8.1,ISC,,Eemeli Aro,yaml,2.8.1,pkg:npm/yaml@2.8.1,node_modules/yaml,JavaScript parser and stringifier for YAML,git+https://github.com/eemeli/yaml.git,"as detected from PackageJson property ""repository.url""",https://eemeli.org/yaml/,"as detected from PackageJson property ""homepage""",https://github.com/eemeli/yaml/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,95c61c3315f63cef57306bc02642773ac34cc3effb14a7aceff8607ab1946162285aee63ffe610a9c66be499cf656cceb0406031b49b8924e7fddbffebd324a7,eemeli@gmail.com,active,Active in npm registry,2025-08-05T13:19:29.169Z
|
|
484
|
-
library,@mojaloop/central-services-stream@11.8.
|
|
484
|
+
library,@mojaloop/central-services-stream@11.8.4,Apache-2.0,@mojaloop,ModusBox,central-services-stream,11.8.4,pkg:npm/%40mojaloop/central-services-stream@11.8.4,node_modules/@mojaloop/central-services-stream,Streaming library code for central services.,git+https://github.com/mojaloop/central-services-stream.git,"as detected from PackageJson property ""repository.url""",https://github.com/mojaloop/central-services-stream#readme,"as detected from PackageJson property ""homepage""",https://github.com/mojaloop/central-services-stream/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@mojaloop/central-services-stream/-/central-services-stream-11.8.4.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,43acefeaa3416c1f192b957bd772b61190eaabaeb4c2d778f71e05c1670391f487d47c768742d8840f74c1e686037ed3e7fbc4af145ac5f2e64587cc8e12fbd0,,active,Active in npm registry,2025-09-02T21:35:35.443Z
|
|
485
485
|
library,events@3.3.0,MIT,,Irakli Gozalishvili,events,3.3.0,pkg:npm/events@3.3.0,node_modules/events,Node's event emitter for all engines.,git://github.com/Gozala/events.git,"as detected from PackageJson property ""repository.url""",https://github.com/Gozala/events#readme,"as detected from PackageJson property ""homepage""",http://github.com/Gozala/events/issues/,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/events/-/events-3.3.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,990c3ed9f9106c02f343b574318d08a9d9d734e793b4fe2bd2537dcfb0006b009782a79aedb0e28b6d0062b201ac577f1f1d0cd8e733e92d75d4268591471bd1,rfobic@gmail.com,active,Active in npm registry,2023-07-12T19:04:56.658Z
|
|
486
486
|
library,node-rdkafka@3.3.1,MIT,,,node-rdkafka,3.3.1,pkg:npm/node-rdkafka@3.3.1,node_modules/node-rdkafka,Node.js bindings for librdkafka,git+ssh://git@github.com/Blizzard/node-rdkafka.git,"as detected from PackageJson property ""repository.url""",https://github.com/Blizzard/node-rdkafka#readme,"as detected from PackageJson property ""homepage""",https://github.com/Blizzard/node-rdkafka/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/node-rdkafka/-/node-rdkafka-3.3.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,771e2f1efb75464a06b0e56a190069bbbd96471ffbfb5172799301f9fddfad03834650059d480584afa1f9d5ae2fd31a8f1d0515d815c7c55e84e8094fabc6af,,active,Active in npm registry,2025-08-18T23:55:50.991Z
|
|
487
487
|
library,bindings@1.5.0,MIT,,Nathan Rajlich,bindings,1.5.0,pkg:npm/bindings@1.5.0,node_modules/bindings,Helper module for loading your native module's .node file,git://github.com/TooTallNate/node-bindings.git,"as detected from PackageJson property ""repository.url""",https://github.com/TooTallNate/node-bindings,"as detected from PackageJson property ""homepage""",https://github.com/TooTallNate/node-bindings/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,a76abfb7f9a1bee3a3fd478b955eb9eba183fe0ba8c25af4847c42948d16f66ecc59890bd45d212e8fb401ec6cf4748f0ad4754974344c3dcc30aad765a8db89,nathan@tootallnate.net,active,Active in npm registry,2023-07-10T23:17:17.195Z
|
|
@@ -508,7 +508,7 @@ library,@protobufjs/float@1.0.2,BSD-3-Clause,@protobufjs,Daniel Wirtz,float,1.0.
|
|
|
508
508
|
library,@protobufjs/path@1.1.2,BSD-3-Clause,@protobufjs,Daniel Wirtz,path,1.1.2,pkg:npm/%40protobufjs/path@1.1.2,node_modules/@protobufjs/path,A minimal path module to resolve Unix~ Windows and URL paths alike.,git+https://github.com/dcodeIO/protobuf.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/dcodeIO/protobuf.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/dcodeIO/protobuf.js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,e8939c2794e6d3c74e1c06dd4771abbcffb25147e48c6e5e3ec1d87333052eadd998c9000fdf1c0e0713da2035949f4d57015de2d1ff8924a87b8e185a496d10,dcode+protobufjs@dcode.io,active,Active in npm registry,2022-06-12T22:53:40.342Z
|
|
509
509
|
library,@protobufjs/pool@1.1.0,BSD-3-Clause,@protobufjs,Daniel Wirtz,pool,1.1.0,pkg:npm/%40protobufjs/pool@1.1.0,node_modules/@protobufjs/pool,A general purpose buffer pool.,git+https://github.com/dcodeIO/protobuf.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/dcodeIO/protobuf.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/dcodeIO/protobuf.js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,d2410b6864880c12af7204b8ce48f3d4f79d75ab6b8d87263163a502e00fc0079c714acf1dd52aa3f27a2e2ca61c7122253e4dac5d54570c58d787fe7f2e1643,dcode+protobufjs@dcode.io,active,Active in npm registry,2022-06-12T22:53:40.490Z
|
|
510
510
|
library,@protobufjs/utf8@1.1.0,BSD-3-Clause,@protobufjs,Daniel Wirtz,utf8,1.1.0,pkg:npm/%40protobufjs/utf8@1.1.0,node_modules/@protobufjs/utf8,A minimal UTF8 implementation for number arrays.,git+https://github.com/dcodeIO/protobuf.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/dcodeIO/protobuf.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/dcodeIO/protobuf.js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,56f9f7cd9ae1419924044f0b4ae5b77a6f7c73417080ee27c73bfa39d4b13ca24810a6366c66c79fe9a11883deaf3238b7077168ff3fd3ed3a1c1a707f7e392f,dcode+protobufjs@dcode.io,active,Active in npm registry,2022-06-12T22:53:40.734Z
|
|
511
|
-
library,@types/node@22.15.21,MIT,@types,,node,22.15.21,pkg:npm/%40types/node@22.15.21#types/node,node_modules/@types/node,TypeScript definitions for node,git+https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/node,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node,"as detected from PackageJson property ""homepage""",https://github.com/DefinitelyTyped/DefinitelyTyped/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@types/node/-/node-22.15.21.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,115ff7ed377a73e3202806e470b1babea676cc46070fb6ef4abceaaacd912216c0eb0df1f83ab3f0c64cdec3fa9064de2eb7683a02997be5e36bbb540760cd91,,active,Active in npm registry,2025-
|
|
511
|
+
library,@types/node@22.15.21,MIT,@types,,node,22.15.21,pkg:npm/%40types/node@22.15.21#types/node,node_modules/@types/node,TypeScript definitions for node,git+https://github.com/DefinitelyTyped/DefinitelyTyped.git#types/node,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node,"as detected from PackageJson property ""homepage""",https://github.com/DefinitelyTyped/DefinitelyTyped/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@types/node/-/node-22.15.21.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,115ff7ed377a73e3202806e470b1babea676cc46070fb6ef4abceaaacd912216c0eb0df1f83ab3f0c64cdec3fa9064de2eb7683a02997be5e36bbb540760cd91,,active,Active in npm registry,2025-09-03T10:02:29.934Z
|
|
512
512
|
library,serialize-error@8.1.0,MIT,,Sindre Sorhus,serialize-error,8.1.0,pkg:npm/serialize-error@8.1.0,node_modules/serialize-error,Serialize/deserialize an error into a plain object,git+https://github.com/sindresorhus/serialize-error.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/serialize-error#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/serialize-error/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/serialize-error/-/serialize-error-8.1.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,dcd9ee59f33abc1628cb981916f1e262c55b69fbc8f6f66fffe8e52228059f8a0fe338cd3cadcb85c634c520a079bd5ae4bf233bbd4c8adf4b94da22d947c30d,sindresorhus@gmail.com,active,Active in npm registry,2025-01-05T00:36:44.679Z
|
|
513
513
|
library,serialize-error@8.1.0|type-fest@0.20.2,,,Sindre Sorhus,type-fest,0.20.2,pkg:npm/type-fest@0.20.2,node_modules/serialize-error/node_modules/type-fest,A collection of essential TypeScript types,git+https://github.com/sindresorhus/type-fest.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/type-fest#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/type-fest/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,35ef9e138af4fe25a7a40c43f39db3dc0f8dd01b7944dfff36327045dd95147126af2c317f9bec66587847a962c65e81fb0cfff1dfa669348090dd452242372d,sindresorhus@gmail.com,active,Active in npm registry,2025-05-06T07:20:19.520Z
|
|
514
514
|
library,traceparent@1.0.0,MIT,,Stephen Belanger,traceparent,1.0.0,pkg:npm/traceparent@1.0.0,node_modules/traceparent,Context management helper for the w3c traceparent header format,git+https://github.com/elastic/node-traceparent.git,"as detected from PackageJson property ""repository.url""",https://github.com/elastic/node-traceparent#readme,"as detected from PackageJson property ""homepage""",https://github.com/elastic/node-traceparent/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/traceparent/-/traceparent-1.0.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,6ff8406e0c79ee900d43a720d9e060b98de8c43e851952c8d420b6aa88b4d5198747b018a501cf5d38a0f459336d6a2112c56e1c43591cfd3d697bb0dff2ccfb,stephen.belanger@elastic.co,active,Active in npm registry,2024-06-28T18:07:05.572Z
|
|
@@ -518,7 +518,7 @@ library,@mojaloop/ml-number@11.3.0,Apache-2.0,@mojaloop,ModusBox,ml-number,11.3.
|
|
|
518
518
|
library,bignumber.js@9.3.1,MIT,,Michael Mclaughlin,bignumber.js,9.3.1,pkg:npm/bignumber.js@9.3.1,node_modules/bignumber.js,A library for arbitrary-precision decimal and non-decimal arithmetic,git+https://github.com/MikeMcl/bignumber.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/MikeMcl/bignumber.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/MikeMcl/bignumber.js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.3.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,2a8d2e5f5e682144bbc09dd16f7d05b3a4a455b2e63c100a7659bbabdf9a93d6db21e15fd0cc2e06c415eb3efe5fbebcfdc1ec7e0f96972b03589726b618ec8d,M8ch88l@gmail.com,active,Active in npm registry,2025-07-11T16:38:38.896Z
|
|
519
519
|
library,@mojaloop/object-store-lib@12.1.0,Apache-2.0,@mojaloop,ModusBox,object-store-lib,12.1.0,pkg:npm/%40mojaloop/object-store-lib@12.1.0,node_modules/@mojaloop/object-store-lib,Mojaloop library for common object store,git+ssh://git@github.com/mojaloop/object-store-lib.git,"as detected from PackageJson property ""repository.url""",https://github.com/mojaloop/object-store-lib#readme,"as detected from PackageJson property ""homepage""",https://github.com/mojaloop/object-store-lib/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@mojaloop/object-store-lib/-/object-store-lib-12.1.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,b18de2c5ab08372db41d6ba92240e0a83cfd3b29e85e90a367034605e38864018500f8381915e6e259007e7f45f1bebf0b202181f34589ee06deba0a9cfd19d3,,active,Active in npm registry,2025-05-19T14:41:54.796Z
|
|
520
520
|
library,mongoose@8.15.1,MIT,,Guillermo Rauch,mongoose,8.15.1,pkg:npm/mongoose@8.15.1,node_modules/mongoose,Mongoose MongoDB ODM,git://github.com/Automattic/mongoose.git,"as detected from PackageJson property ""repository.url""",https://mongoosejs.com,"as detected from PackageJson property ""homepage""",https://github.com/Automattic/mongoose/issues/new,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/mongoose/-/mongoose-8.15.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,4614380f39818b904d19c4b4c38bb5bdd31120a72d7974c23730edd63ed745c756601cf5323323ba50613da782e630421ce0f5ca29ee3854d348e58b2c67b15b,guillermo@learnboost.com,active,Active in npm registry,2025-08-22T14:42:08.769Z
|
|
521
|
-
library,mongoose@8.15.1|mongodb@6.16.0,Apache-2.0,,The MongoDB NodeJS Team,mongodb,6.16.0,pkg:npm/mongodb@6.16.0,node_modules/mongoose/node_modules/mongodb,The official MongoDB driver for Node.js,git+ssh://git@github.com/mongodb/node-mongodb-native.git,"as detected from PackageJson property ""repository.url""",https://github.com/mongodb/node-mongodb-native,"as detected from PackageJson property ""homepage""",https://jira.mongodb.org/projects/NODE/issues/,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/mongodb/-/mongodb-6.16.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,0f53cd71d4f4cb81ab868bb9662fea822a59398796ae12c4a64df79f79e6e8b1adcfad63bcef3c5a5ad608afdb8a0323a6739d01428a430b06225d0db5633263,dbx-node@mongodb.com,active,Active in npm registry,2025-
|
|
521
|
+
library,mongoose@8.15.1|mongodb@6.16.0,Apache-2.0,,The MongoDB NodeJS Team,mongodb,6.16.0,pkg:npm/mongodb@6.16.0,node_modules/mongoose/node_modules/mongodb,The official MongoDB driver for Node.js,git+ssh://git@github.com/mongodb/node-mongodb-native.git,"as detected from PackageJson property ""repository.url""",https://github.com/mongodb/node-mongodb-native,"as detected from PackageJson property ""homepage""",https://jira.mongodb.org/projects/NODE/issues/,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/mongodb/-/mongodb-6.16.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,0f53cd71d4f4cb81ab868bb9662fea822a59398796ae12c4a64df79f79e6e8b1adcfad63bcef3c5a5ad608afdb8a0323a6739d01428a430b06225d0db5633263,dbx-node@mongodb.com,active,Active in npm registry,2025-09-03T00:15:58.191Z
|
|
522
522
|
library,bson@6.10.3,Apache-2.0,,The MongoDB NodeJS Team,bson,6.10.3,pkg:npm/bson@6.10.3,node_modules/bson,A bson parser for node.js and the browser,git+https://github.com/mongodb/js-bson.git,"as detected from PackageJson property ""repository.url""",https://github.com/mongodb/js-bson#readme,"as detected from PackageJson property ""homepage""",https://jira.mongodb.org/projects/NODE/issues/,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/bson/-/bson-6.10.3.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,313c46b2a8184f07ec85859345d999442f8cec59c6d5be32ed13bba769375f6e16ab4cafd66efb5ac8f407394fcddfc8a3080449fb2bb900944e86bbbdb3a93d,dbx-node@mongodb.com,active,Active in npm registry,2025-06-02T20:56:41.269Z
|
|
523
523
|
library,kareem@2.6.3,Apache-2.0,,Valeri Karpov,kareem,2.6.3,pkg:npm/kareem@2.6.3,node_modules/kareem,Next-generation take on pre/post function hooks,git://github.com/mongoosejs/kareem.git,"as detected from PackageJson property ""repository.url""",https://github.com/mongoosejs/kareem#readme,"as detected from PackageJson property ""homepage""",https://github.com/mongoosejs/kareem/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/kareem/-/kareem-2.6.3.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,0b78877ee1945cadaef3f8a9abd2df8c57d7171019310249abbbcb4b8e6bdc3f58db143f9b84bccda478ccc2c55a1f40b0d3d799c15f50385310ef14202fd5e9,val@karpov.io,active,Active in npm registry,2024-04-05T20:57:21.900Z
|
|
524
524
|
library,@mongodb-js/saslprep@1.2.2,MIT,@mongodb-js,Dmitry Tsvettsikh,saslprep,1.2.2,pkg:npm/%40mongodb-js/saslprep@1.2.2,node_modules/@mongodb-js/saslprep,SASLprep: Stringprep Profile for User Names and Passwords~ rfc4013,git+https://github.com/mongodb-js/devtools-shared.git,"as detected from PackageJson property ""repository.url""",https://github.com/mongodb-js/devtools-shared/tree/main/packages/saslprep,"as detected from PackageJson property ""homepage""",https://jira.mongodb.org/projects/COMPASS/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.2.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,101d0edd209235150593aea2442a48f9c5f322376cc1f0acec5ea7382dd100627bc6be5885a89cbec47027d7b2cd8bd84650920d43bf73b838c8dba5c4a0b558,me@reklatsmasters.com,active,Active in npm registry,2025-06-12T15:31:24.592Z
|
|
@@ -552,7 +552,7 @@ library,buffer-equal-constant-time@1.0.1,BSD-3-Clause,,GoInstant Inc.~ a salesfo
|
|
|
552
552
|
library,ecdsa-sig-formatter@1.0.11,Apache-2.0,,D2L Corporation,ecdsa-sig-formatter,1.0.11,pkg:npm/ecdsa-sig-formatter@1.0.11,node_modules/ecdsa-sig-formatter,Translate ECDSA signatures between ASN.1/DER and JOSE-style concatenation,git+ssh://git@github.com/Brightspace/node-ecdsa-sig-formatter.git,"as detected from PackageJson property ""repository.url""",https://github.com/Brightspace/node-ecdsa-sig-formatter#readme,"as detected from PackageJson property ""homepage""",https://github.com/Brightspace/node-ecdsa-sig-formatter/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,9da825dd162b6cdbfa91091e248a6de8d259cbcb702c1ff6bedcfac8df59e2f44a1cde3f41924811baa88402d283029d9e4b2e63793901d769e6583cb15a1571,,active,Active in npm registry,2022-06-16T04:36:24.613Z
|
|
553
553
|
library,@opentelemetry/auto-instrumentations-node@0.62.2,Apache-2.0,@opentelemetry,OpenTelemetry Authors,auto-instrumentations-node,0.62.2,pkg:npm/%40opentelemetry/auto-instrumentations-node@0.62.2#packages/auto-instrumentations-node,node_modules/@opentelemetry/auto-instrumentations-node,Metapackage which bundles opentelemetry node core and contrib instrumentations,git+https://github.com/open-telemetry/opentelemetry-js-contrib.git#packages/auto-instrumentations-node,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/packages/auto-instrumentations-node#readme,"as detected from PackageJson property ""homepage""",https://github.com/open-telemetry/opentelemetry-js-contrib/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@opentelemetry/auto-instrumentations-node/-/auto-instrumentations-node-0.62.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,2297ba5fb75dac2891b2e7b0c9353cdc8bca892153e298aa9aff73f0ebe0d44eeff7ca5d4e3d69504eac0eb1d5e74ce5effca977e70e34182df8461266ee2ef5,,active,Active in npm registry,2025-09-01T15:13:12.862Z
|
|
554
554
|
library,@opentelemetry/core@2.0.1,Apache-2.0,@opentelemetry,OpenTelemetry Authors,core,2.0.1,pkg:npm/%40opentelemetry/core@2.0.1,node_modules/@opentelemetry/core,OpenTelemetry Core provides constants and utilities shared by all OpenTelemetry SDK packages.,git+https://github.com/open-telemetry/opentelemetry-js.git,"as detected from PackageJson property ""repository.url""",https://github.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-core,"as detected from PackageJson property ""homepage""",https://github.com/open-telemetry/opentelemetry-js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@opentelemetry/core/-/core-2.0.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,31a664f522480e0a35a5e29ebe56e13faf88c0888d3cd9acc0d2f8005d1669024b6c75e3afd4ab64c812d76fa2aabf53a15e19568b0271cd1ff1183aecb5e3c7,,active,Active in npm registry,2025-07-22T15:14:13.658Z
|
|
555
|
-
library,@opentelemetry/semantic-conventions@1.34.0,Apache-2.0,@opentelemetry,OpenTelemetry Authors,semantic-conventions,1.34.0,pkg:npm/%40opentelemetry/semantic-conventions@1.34.0,node_modules/@opentelemetry/semantic-conventions,OpenTelemetry semantic conventions,git+https://github.com/open-telemetry/opentelemetry-js.git,"as detected from PackageJson property ""repository.url""",https://github.com/open-telemetry/opentelemetry-js/tree/main/semantic-conventions,"as detected from PackageJson property ""homepage""",https://github.com/open-telemetry/opentelemetry-js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.34.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,68a70e932ae8ac11a56a38d1755a095874f17f13b5bc23472c95654836911c321d8d4fa95fc21840fbcf0e4622ba328b6d19d653ed5307012dd104604a6e1218,,active,Active in npm registry,2025-
|
|
555
|
+
library,@opentelemetry/semantic-conventions@1.34.0,Apache-2.0,@opentelemetry,OpenTelemetry Authors,semantic-conventions,1.34.0,pkg:npm/%40opentelemetry/semantic-conventions@1.34.0,node_modules/@opentelemetry/semantic-conventions,OpenTelemetry semantic conventions,git+https://github.com/open-telemetry/opentelemetry-js.git,"as detected from PackageJson property ""repository.url""",https://github.com/open-telemetry/opentelemetry-js/tree/main/semantic-conventions,"as detected from PackageJson property ""homepage""",https://github.com/open-telemetry/opentelemetry-js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.34.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,68a70e932ae8ac11a56a38d1755a095874f17f13b5bc23472c95654836911c321d8d4fa95fc21840fbcf0e4622ba328b6d19d653ed5307012dd104604a6e1218,,active,Active in npm registry,2025-09-03T00:00:26.716Z
|
|
556
556
|
library,@opentelemetry/instrumentation-amqplib@0.50.0,Apache-2.0,@opentelemetry,OpenTelemetry Authors,instrumentation-amqplib,0.50.0,pkg:npm/%40opentelemetry/instrumentation-amqplib@0.50.0#packages/instrumentation-amqplib,node_modules/@opentelemetry/instrumentation-amqplib,OpenTelemetry instrumentation for the `amqplib` messaging client for RabbitMQ,git+https://github.com/open-telemetry/opentelemetry-js-contrib.git#packages/instrumentation-amqplib,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/packages/instrumentation-amqplib#readme,"as detected from PackageJson property ""homepage""",https://github.com/open-telemetry/opentelemetry-js-contrib/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@opentelemetry/instrumentation-amqplib/-/instrumentation-amqplib-0.50.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,93036cfe2b5e8471bfa9a401715acb35cbd754f5b4238142395b70dcb1cc2dd608a83ec627a62fda75fe6b86078f36f321e4588fc8b2329d0197bb6592276ae7,,active,Active in npm registry,2025-07-22T15:16:47.969Z
|
|
557
557
|
library,@opentelemetry/instrumentation@0.203.0,Apache-2.0,@opentelemetry,OpenTelemetry Authors,instrumentation,0.203.0,pkg:npm/%40opentelemetry/instrumentation@0.203.0,node_modules/@opentelemetry/instrumentation,Base class for node which OpenTelemetry instrumentation modules extend,git+https://github.com/open-telemetry/opentelemetry-js.git,"as detected from PackageJson property ""repository.url""",https://github.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation,"as detected from PackageJson property ""homepage""",https://github.com/open-telemetry/opentelemetry-js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.203.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,91ed6ac8cfb700adb33ee04f6fa1e4fc60ac7397b06cbbcf36412e10bc7f26600d784a7a6639d9fb0ca93c0252b9c4f0d30bc21ab51a89b0d275cac61685b129,,active,Active in npm registry,2025-07-22T15:14:20.445Z
|
|
558
558
|
library,@opentelemetry/instrumentation-aws-lambda@0.54.1,Apache-2.0,@opentelemetry,OpenTelemetry Authors,instrumentation-aws-lambda,0.54.1,pkg:npm/%40opentelemetry/instrumentation-aws-lambda@0.54.1#packages/instrumentation-aws-lambda,node_modules/@opentelemetry/instrumentation-aws-lambda,OpenTelemetry instrumentation for AWS Lambda function invocations,git+https://github.com/open-telemetry/opentelemetry-js-contrib.git#packages/instrumentation-aws-lambda,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/open-telemetry/opentelemetry-js-contrib/tree/main/packages/instrumentation-aws-lambda#readme,"as detected from PackageJson property ""homepage""",https://github.com/open-telemetry/opentelemetry-js-contrib/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@opentelemetry/instrumentation-aws-lambda/-/instrumentation-aws-lambda-0.54.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,aa6f2919200cd665e4eee9dbac692d59618973a205239f19b1a1c9fa2e36d05a7954edd57fb1a094881a5d34bc08a06b541e0b1c58f736fcc9837d4fb6c01070,,active,Active in npm registry,2025-09-01T15:13:10.562Z
|
|
@@ -761,7 +761,7 @@ library,z-schema@5.0.5|commander@9.5.0,MIT,,TJ Holowaychuk,commander,9.5.0,pkg:n
|
|
|
761
761
|
library,lodash.get@4.4.2,MIT,,John-David Dalton,lodash.get,4.4.2,pkg:npm/lodash.get@4.4.2,node_modules/lodash.get,The lodash method `_.get` exported as a module.,git+https://github.com/lodash/lodash.git,"as detected from PackageJson property ""repository.url""",https://lodash.com/,"as detected from PackageJson property ""homepage""",https://github.com/lodash/lodash/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,cfe530fef2eecba8107bc71f685583ee9d3056ff1f265de66f35e1df7452fb4a16db0bd4aa2457890ebd80b5922e9801e7feac53eafa065411d0c0482da76a4d,john.david.dalton@gmail.com,deprecated,This package is deprecated. Use the optional chaining (?.) operator instead.,2025-01-23T20:12:59.749Z
|
|
762
762
|
library,lodash.isequal@4.5.0,MIT,,John-David Dalton,lodash.isequal,4.5.0,pkg:npm/lodash.isequal@4.5.0,node_modules/lodash.isequal,The Lodash method `_.isEqual` exported as a module.,git+https://github.com/lodash/lodash.git,"as detected from PackageJson property ""repository.url""",https://lodash.com/,"as detected from PackageJson property ""homepage""",https://github.com/lodash/lodash/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,a43a3796ef0985f8ea96ce8690c8296a1b05f640b26b2860ca48f22cc3454ca5aba5574042d6320789ae00c5a8cc10788a0fddb56026b0cc4b108f30bb3f8361,john.david.dalton@gmail.com,deprecated,This package is deprecated. Use require('node:util').isDeepStrictEqual instead.,2025-01-23T20:09:41.699Z
|
|
763
763
|
library,validator@13.15.0,MIT,,Chris O'Hara,validator,13.15.0,pkg:npm/validator@13.15.0,node_modules/validator,String validation and sanitization,git+https://github.com/validatorjs/validator.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/validatorjs/validator.js,"as detected from PackageJson property ""homepage""",https://github.com/validatorjs/validator.js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/validator/-/validator-13.15.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,dfa076af2978fa82f94316770330f4b794ac30d1af4ed407a638053b9b5b3717d76cc16463cdb692d0837b532796a577df4d50408f522c70cd26890323e67da4,cohara87@gmail.com,active,Active in npm registry,2025-05-28T04:38:58.599Z
|
|
764
|
-
library,swagger-ui-dist@5.22.0,Apache-2.0,,,swagger-ui-dist,5.22.0,pkg:npm/swagger-ui-dist@5.22.0,node_modules/swagger-ui-dist,,git+ssh://git@github.com/swagger-api/swagger-ui.git,"as detected from PackageJson property ""repository.url""",https://github.com/swagger-api/swagger-ui#readme,"as detected from PackageJson property ""homepage""",https://github.com/swagger-api/swagger-ui/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-5.22.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,f189424b18b26fcb8f15aeeaa01d6544762bd4f05b4f536e57d46f41d1453c53ee7510533dff5ca14e63974d8a873bebb664c4c388d74606f4920f2926f56e59,,active,Active in npm registry,2025-
|
|
764
|
+
library,swagger-ui-dist@5.22.0,Apache-2.0,,,swagger-ui-dist,5.22.0,pkg:npm/swagger-ui-dist@5.22.0,node_modules/swagger-ui-dist,,git+ssh://git@github.com/swagger-api/swagger-ui.git,"as detected from PackageJson property ""repository.url""",https://github.com/swagger-api/swagger-ui#readme,"as detected from PackageJson property ""homepage""",https://github.com/swagger-api/swagger-ui/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-5.22.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,f189424b18b26fcb8f15aeeaa01d6544762bd4f05b4f536e57d46f41d1453c53ee7510533dff5ca14e63974d8a873bebb664c4c388d74606f4920f2926f56e59,,active,Active in npm registry,2025-09-03T06:15:00.801Z
|
|
765
765
|
library,@scarf/scarf@1.4.0,Apache-2.0,@scarf,Scarf Systems,scarf,1.4.0,pkg:npm/%40scarf/scarf@1.4.0,node_modules/@scarf/scarf,Scarf is like Google Analytics for your npm packages. Gain insights into how your packages are installed and used~ and by which companies.,git+https://github.com/scarf-sh/scarf-js.git,"as detected from PackageJson property ""repository.url""",https://github.com/scarf-sh/scarf-js,"as detected from PackageJson property ""homepage""",https://github.com/scarf-sh/scarf-js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@scarf/scarf/-/scarf-1.4.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,c7179aa4f8945dd6401377217ba7f7c6882824f79982283aa261c4cb5ac8639595b01dc7d811cd9d91fe8071bac7dd52096c900b3586b2e2f61e1dc294ee7fa9,,active,Active in npm registry,2024-12-22T16:38:55.918Z
|
|
766
766
|
library,ilp-packet@2.2.0,Apache-2.0,,Interledger Team,ilp-packet,2.2.0,pkg:npm/ilp-packet@2.2.0,node_modules/ilp-packet,Module for parsing and serializing ILP packets,git+https://github.com/interledgerjs/ilp-packet.git,"as detected from PackageJson property ""repository.url""",https://github.com/interledgerjs/ilp-packet#readme,"as detected from PackageJson property ""homepage""",https://github.com/interledgerjs/ilp-packet/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/ilp-packet/-/ilp-packet-2.2.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,4041aa6341f31abb9ee2bfb819659eee507b5ef8e28f87327365de3931d89b090ed018e0c33256f3999927347dab91e62bccdd16437a0b409f79d01a62252ff7,info@interledger.org,active,Active in npm registry,2022-09-28T14:44:19.371Z
|
|
767
767
|
library,ilp-packet@2.2.0|bignumber.js@5.0.0,MIT,,Michael Mclaughlin,bignumber.js,5.0.0,pkg:npm/bignumber.js@5.0.0,node_modules/ilp-packet/node_modules/bignumber.js,A library for arbitrary-precision decimal and non-decimal arithmetic,git+https://github.com/MikeMcl/bignumber.js.git,"as detected from PackageJson property ""repository.url""",https://github.com/MikeMcl/bignumber.js#readme,"as detected from PackageJson property ""homepage""",https://github.com/MikeMcl/bignumber.js/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/bignumber.js/-/bignumber.js-5.0.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,2964eee9931593db31943250876607d543a77c33fc3bc4e9c54c60406fef2804a84a71232bd695b8eb9e15a3dc404610e5fc8d5cd4ce630630df4f7d45879b5a,M8ch88l@gmail.com,active,Active in npm registry,2025-07-11T16:38:38.896Z
|
|
@@ -924,7 +924,7 @@ library,@babel/compat-data@7.27.3,MIT,@babel,The Babel Team,compat-data,7.27.3,p
|
|
|
924
924
|
library,@babel/helper-validator-option@7.27.1,MIT,@babel,The Babel Team,helper-validator-option,7.27.1,pkg:npm/%40babel/helper-validator-option@7.27.1#packages/babel-helper-validator-option,node_modules/@babel/helper-validator-option,Validate plugin/preset options,git+https://github.com/babel/babel.git#packages/babel-helper-validator-option,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://github.com/babel/babel#readme,"as detected from PackageJson property ""homepage""",https://github.com/babel/babel/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,62f8c9a30f45c5b84514a0d2b859d509ed96c57935cd6736d9f15e3d5344696244bbc22b65595d6ba374b87c3366b50cd6297b342f4c969e0c68961b61df494a,,active,Active in npm registry,2025-07-02T09:03:55.612Z
|
|
925
925
|
library,browserslist@4.24.5,MIT,,Andrey Sitnik,browserslist,4.24.5,pkg:npm/browserslist@4.24.5,node_modules/browserslist,Share target browsers between different front-end tools~ like Autoprefixer~ Stylelint and babel-env-preset,git+https://github.com/browserslist/browserslist.git,"as detected from PackageJson property ""repository.url""",https://github.com/browserslist/browserslist#readme,"as detected from PackageJson property ""homepage""",https://github.com/browserslist/browserslist/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/browserslist/-/browserslist-4.24.5.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,1434e8a385a8f36848760735090f8d403d211219a93e3ad9de189483080e1ba22e4dd969afc8dd8f21b6e0fe9c34fd722694cbcd2e4e706812c34c660d4d7f4f,andrey@sitnik.ru,active,Active in npm registry,2025-08-28T18:10:09.320Z
|
|
926
926
|
library,caniuse-lite@1.0.30001718,CC-BY-4.0,,Ben Briggs,caniuse-lite,1.0.30001718,pkg:npm/caniuse-lite@1.0.30001718,node_modules/caniuse-lite,A smaller version of caniuse-db~ with only the essentials!,git+https://github.com/browserslist/caniuse-lite.git,"as detected from PackageJson property ""repository.url""",https://github.com/browserslist/caniuse-lite#readme,"as detected from PackageJson property ""homepage""",https://github.com/browserslist/caniuse-lite/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001718.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,01f96c795d5a85c4ae9cae7735f12cf6015680e126cebd1ffa468c140e3188b665afd1f3b7b1f1712a4815c9cd094933e91e9d58a6b9e2b533dc75262379d573,beneb.info@gmail.com,active,Active in npm registry,2025-08-30T22:47:18.786Z
|
|
927
|
-
library,electron-to-chromium@1.5.158,ISC,,Kilian Valkhof,electron-to-chromium,1.5.158,pkg:npm/electron-to-chromium@1.5.158,node_modules/electron-to-chromium,Provides a list of electron-to-chromium version mappings,git+https://github.com/kilian/electron-to-chromium.git,"as detected from PackageJson property ""repository.url""",https://github.com/kilian/electron-to-chromium#readme,"as detected from PackageJson property ""homepage""",https://github.com/kilian/electron-to-chromium/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.158.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,f6f729db11e192fada63a007c3658c8be18348b3d7e36a9edb18d8695a19a8544988e722955405abd9999a9b87110a739601837a52a557b66219c98cb1cf16c5,,active,Active in npm registry,2025-09-
|
|
927
|
+
library,electron-to-chromium@1.5.158,ISC,,Kilian Valkhof,electron-to-chromium,1.5.158,pkg:npm/electron-to-chromium@1.5.158,node_modules/electron-to-chromium,Provides a list of electron-to-chromium version mappings,git+https://github.com/kilian/electron-to-chromium.git,"as detected from PackageJson property ""repository.url""",https://github.com/kilian/electron-to-chromium#readme,"as detected from PackageJson property ""homepage""",https://github.com/kilian/electron-to-chromium/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.158.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,f6f729db11e192fada63a007c3658c8be18348b3d7e36a9edb18d8695a19a8544988e722955405abd9999a9b87110a739601837a52a557b66219c98cb1cf16c5,,active,Active in npm registry,2025-09-03T02:02:23.142Z
|
|
928
928
|
library,node-releases@2.0.19,MIT,,Sergey Rubanov,node-releases,2.0.19,pkg:npm/node-releases@2.0.19,node_modules/node-releases,Node.js releases data,git+https://github.com/chicoxyzzy/node-releases.git,"as detected from PackageJson property ""repository.url""",https://github.com/chicoxyzzy/node-releases#readme,"as detected from PackageJson property ""homepage""",https://github.com/chicoxyzzy/node-releases/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,c7139626c04ab7302aec363427e0d3ceecf9f0af1eeec25b760c246cc5907bc51807a7a49ac438e6ad0cfed243b0669999b0be97b9f9ed457c1e5e6d1f13bdbb,chi187@gmail.com,active,Active in npm registry,2024-12-10T03:28:41.711Z
|
|
929
929
|
library,update-browserslist-db@1.1.3,MIT,,Andrey Sitnik,update-browserslist-db,1.1.3,pkg:npm/update-browserslist-db@1.1.3,node_modules/update-browserslist-db,CLI tool to update caniuse-lite to refresh target browsers from Browserslist config,git+https://github.com/browserslist/update-db.git,"as detected from PackageJson property ""repository.url""",https://github.com/browserslist/update-db#readme,"as detected from PackageJson property ""homepage""",https://github.com/browserslist/update-db/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,531848650f9022755dba790301a89acefbd3ffe7d72f93acaf4259949ba57a962ee8977ba89b4366396eaf47a64654fbd4437749c3e813b82fb2e20a28d6af2b,andrey@sitnik.ru,active,Active in npm registry,2025-02-26T17:32:43.209Z
|
|
930
930
|
library,yallist@3.1.1,ISC,,Isaac Z. Schlueter,yallist,3.1.1,pkg:npm/yallist@3.1.1,node_modules/yallist,Yet Another Linked List,git+https://github.com/isaacs/yallist.git,"as detected from PackageJson property ""repository.url""",https://github.com/isaacs/yallist#readme,"as detected from PackageJson property ""homepage""",https://github.com/isaacs/yallist/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,6b850641a58f1f9f663975189c01b67b09dc412e22e05e374efdc9a0033eb365430264bd36c2bc1a90cc2eb0873e4b054fb8772ba4cea14367da96fb4685f1e2,i@izs.me,active,Active in npm registry,2024-04-09T19:21:45.008Z
|
|
@@ -1019,7 +1019,7 @@ library,@sinonjs/samsam@8.0.2,BSD-3-Clause,@sinonjs,Christian Johansen,samsam,8.
|
|
|
1019
1019
|
library,@sinonjs/samsam@8.0.2|type-detect@4.1.0,MIT,,Jake Luer,type-detect,4.1.0,pkg:npm/type-detect@4.1.0,node_modules/@sinonjs/samsam/node_modules/type-detect,Improved typeof detection for node.js and the browser.,git+ssh://git@github.com/chaijs/type-detect.git,"as detected from PackageJson property ""repository.url""",https://github.com/chaijs/type-detect#readme,"as detected from PackageJson property ""homepage""",https://github.com/chaijs/type-detect/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/type-detect/-/type-detect-4.1.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,01cca5a20f3f96e43c2fb8a5fa07a84b184491acef92c960ecf48d28e5f9f666c1f5c3af78fe5aabd87be18ed853cc83a49c1eb73410adf230b5fe16a782ca73,jake@alogicalparadox.com,active,Active in npm registry,2024-07-25T10:50:20.663Z
|
|
1020
1020
|
library,diff@5.2.0,BSD-3-Clause,,,diff,5.2.0,pkg:npm/diff@5.2.0,node_modules/diff,A JavaScript text diff implementation.,git://github.com/kpdecker/jsdiff.git,"as detected from PackageJson property ""repository.url""",https://github.com/kpdecker/jsdiff#readme,"as detected from PackageJson property ""homepage""",http://github.com/kpdecker/jsdiff/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/diff/-/diff-5.2.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,b88143c6aa5164667a4e13a4f388447ea5a81f1d9d7af445be94d97131eeafce6f2267dac546d35bd4728780a90ae0e74e838fd4212d5ca220cad1c13d57dfe4,,active,Active in npm registry,2025-05-22T13:42:28.969Z
|
|
1021
1021
|
library,nise@5.1.9,BSD-3-Clause,,,nise,5.1.9,pkg:npm/nise@5.1.9,node_modules/nise,Fake XHR and server,git+ssh://git@github.com/sinonjs/nise.git,"as detected from PackageJson property ""repository.url""",https://github.com/sinonjs/nise#readme,"as detected from PackageJson property ""homepage""",https://github.com/sinonjs/nise/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/nise/-/nise-5.1.9.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,a8e9e8ba35b8495e9ee34758c4939bdeebeea0f1ed98bcc89384c5a3e8f48cf2680bee59f718dae6a1f9259a1b10fb1af3e618a6132b392c27aec844846daac3,,active,Active in npm registry,2024-09-13T08:38:02.664Z
|
|
1022
|
-
library,nise@5.1.9|path-to-regexp@6.3.0,MIT,,,path-to-regexp,6.3.0,pkg:npm/path-to-regexp@6.3.0,node_modules/nise/node_modules/path-to-regexp,Express style path to RegExp utility,git+https://github.com/pillarjs/path-to-regexp.git,"as detected from PackageJson property ""repository.url""",https://github.com/pillarjs/path-to-regexp#readme,"as detected from PackageJson property ""homepage""",https://github.com/pillarjs/path-to-regexp/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,621a70e13f42ea13e980f780dbcbacd3b3897aa67913341391b7f0ba1b14834736dfb468985a044c9826a76b1adc5ff8d607cb13a1b972a718c339e678478e95,,active,Active in npm registry,2025-
|
|
1022
|
+
library,nise@5.1.9|path-to-regexp@6.3.0,MIT,,,path-to-regexp,6.3.0,pkg:npm/path-to-regexp@6.3.0,node_modules/nise/node_modules/path-to-regexp,Express style path to RegExp utility,git+https://github.com/pillarjs/path-to-regexp.git,"as detected from PackageJson property ""repository.url""",https://github.com/pillarjs/path-to-regexp#readme,"as detected from PackageJson property ""homepage""",https://github.com/pillarjs/path-to-regexp/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,621a70e13f42ea13e980f780dbcbacd3b3897aa67913341391b7f0ba1b14834736dfb468985a044c9826a76b1adc5ff8d607cb13a1b972a718c339e678478e95,,active,Active in npm registry,2025-09-02T21:13:13.949Z
|
|
1023
1023
|
library,@sinonjs/text-encoding@0.7.3,,@sinonjs,Joshua Bell,text-encoding,0.7.3,pkg:npm/%40sinonjs/text-encoding@0.7.3,node_modules/@sinonjs/text-encoding,Polyfill for the Encoding Living Standard's API.,git+https://github.com/sinonjs/text-encoding.git,"as detected from PackageJson property ""repository.url""",https://github.com/sinonjs/text-encoding,"as detected from PackageJson property ""homepage""",https://github.com/sinonjs/text-encoding/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.3.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,0c4e36ed1380a61310cd4e0435b962198ac14983d717e4ed2e0f52f2fcde03e385e192b3a037737cbf2cc6e314192fe581184cea3d5445293d8217fb5e8d6dc8,inexorabletash@gmail.com,active,Active in npm registry,2024-08-19T14:17:18.763Z
|
|
1024
1024
|
library,just-extend@6.2.0,MIT,,Angus Croll,just-extend,6.2.0,pkg:npm/just-extend@6.2.0,node_modules/just-extend,extend an object,git+https://github.com/angus-c/just.git,"as detected from PackageJson property ""repository.url""",https://github.com/angus-c/just#readme,"as detected from PackageJson property ""homepage""",https://github.com/angus-c/just/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/just-extend/-/just-extend-6.2.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,718a1f42ed97a689bcd92eaa0fbefc8c10e9c2fbf2dfdb3597f86b6228f6bbd00c750706469681bba918e26561ba7a39909562d43033e1a8a9840d96235fce03,,active,Active in npm registry,2023-07-12T04:09:06.466Z
|
|
1025
1025
|
library,has-flag@4.0.0,MIT,,Sindre Sorhus,has-flag,4.0.0,pkg:npm/has-flag@4.0.0,node_modules/has-flag,Check if argv has a specific flag,git+https://github.com/sindresorhus/has-flag.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/has-flag#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/has-flag/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,1329094ff4352a34d672da698080207d23b4b4a56e6548e180caf5ee4a93ba6325e807efdc421295e53ba99533a170c54c01d30c2e0d3a81bf67153712f94c3d,sindresorhus@gmail.com,active,Active in npm registry,2023-04-17T23:19:31.649Z
|
|
@@ -1235,7 +1235,7 @@ library,object.entries@1.1.9,MIT,,Jordan Harband,object.entries,1.1.9,pkg:npm/ob
|
|
|
1235
1235
|
library,prop-types@15.8.1,MIT,,,prop-types,15.8.1,pkg:npm/prop-types@15.8.1,node_modules/prop-types,Runtime type checking for React props and similar objects.,git+https://github.com/facebook/prop-types.git,"as detected from PackageJson property ""repository.url""",https://facebook.github.io/react/,"as detected from PackageJson property ""homepage""",https://github.com/facebook/prop-types/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,a23f3b0a064809dba5528868815011ec08e50b4df6ed4e1e9782fa780bcea827ae74c0d553435384d695f9bf437f87578123f58173139cf7617deff6a831f972,,active,Active in npm registry,2023-08-24T18:09:31.990Z
|
|
1236
1236
|
library,loose-envify@1.4.0,MIT,,Andres Suarez,loose-envify,1.4.0,pkg:npm/loose-envify@1.4.0,node_modules/loose-envify,Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST,git://github.com/zertosh/loose-envify.git,"as detected from PackageJson property ""repository.url""",https://github.com/zertosh/loose-envify,"as detected from PackageJson property ""homepage""",https://github.com/zertosh/loose-envify/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,972bb13c6aff59f86b95e9b608bfd472751cd7372a280226043cee918ed8e45ff242235d928ebe7d12debe5c351e03324b0edfeb5d54218e34f04b71452a0add,zertosh@gmail.com,active,Active in npm registry,2023-07-23T04:49:38.578Z
|
|
1237
1237
|
library,object-assign@4.1.1,MIT,,Sindre Sorhus,object-assign,4.1.1,pkg:npm/object-assign@4.1.1,node_modules/object-assign,ES2015 `Object.assign()` ponyfill,git+https://github.com/sindresorhus/object-assign.git,"as detected from PackageJson property ""repository.url""",https://github.com/sindresorhus/object-assign#readme,"as detected from PackageJson property ""homepage""",https://github.com/sindresorhus/object-assign/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,ac98134279149c7d6c170f324fa552537cc3dec5a6bbab19848b1e63c557f8646edcfe85ec5bbe24d0e85df9251256cb2529dcdc55101d57b8714e618fe05c52,sindresorhus@gmail.com,active,Active in npm registry,2025-02-16T08:13:33.616Z
|
|
1238
|
-
library,react-is@16.13.1,MIT,,,react-is,16.13.1,pkg:npm/react-is@16.13.1#packages/react-is,node_modules/react-is,Brand checking of React Elements.,git+https://github.com/facebook/react.git#packages/react-is,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://reactjs.org/,"as detected from PackageJson property ""homepage""",https://github.com/facebook/react/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,db87baca71361fe38ab7892ab0ebcd77c901a55eb9ce8c5b038055b04381dc0455590922fc31f3694a02e4ab8e37f06271c0da0824d906e39c7d9b3bd2447c6d,,active,Active in npm registry,2025-09-
|
|
1238
|
+
library,react-is@16.13.1,MIT,,,react-is,16.13.1,pkg:npm/react-is@16.13.1#packages/react-is,node_modules/react-is,Brand checking of React Elements.,git+https://github.com/facebook/react.git#packages/react-is,"as detected from PackageJson property ""repository.url"" and ""repository.directory""",https://reactjs.org/,"as detected from PackageJson property ""homepage""",https://github.com/facebook/react/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,db87baca71361fe38ab7892ab0ebcd77c901a55eb9ce8c5b038055b04381dc0455590922fc31f3694a02e4ab8e37f06271c0da0824d906e39c7d9b3bd2447c6d,,active,Active in npm registry,2025-09-02T16:20:55.552Z
|
|
1239
1239
|
library,string.prototype.matchall@4.0.12,MIT,,Jordan Harband,string.prototype.matchall,4.0.12,pkg:npm/string.prototype.matchall@4.0.12,node_modules/string.prototype.matchall,Spec-compliant polyfill for String.prototype.matchAll,git+https://github.com/es-shims/String.prototype.matchAll.git,"as detected from PackageJson property ""repository.url""",https://github.com/es-shims/String.prototype.matchAll#readme,"as detected from PackageJson property ""homepage""",https://github.com/es-shims/String.prototype.matchAll/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,e820bdbb204bfbfe3c7588b345fec7ed501808c08d4c178cefcc7f55351ef5b1446b105ea4f2436b53b0f7d2ea23fd7217b92ecbb437710b1832b72319472c90,ljharb@gmail.com,active,Active in npm registry,2024-12-20T07:01:49.774Z
|
|
1240
1240
|
library,regexp.prototype.flags@1.5.4,MIT,,Jordan Harband,regexp.prototype.flags,1.5.4,pkg:npm/regexp.prototype.flags@1.5.4,node_modules/regexp.prototype.flags,ES6 spec-compliant RegExp.prototype.flags shim.,git://github.com/es-shims/RegExp.prototype.flags.git,"as detected from PackageJson property ""repository.url""",https://github.com/es-shims/RegExp.prototype.flags#readme,"as detected from PackageJson property ""homepage""",https://github.com/es-shims/RegExp.prototype.flags/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,758aa035265b0f091a27671e45df688c21a306afa63a6f4b9ad5e7027106c8784dff947b8835b64d1c3787ea3f8c2171bacdcfd8b7d62088b0a3002300d9bb20,ljharb@gmail.com,active,Active in npm registry,2025-01-03T00:40:33.352Z
|
|
1241
1241
|
library,functions-have-names@1.2.3,MIT,,Jordan Harband,functions-have-names,1.2.3,pkg:npm/functions-have-names@1.2.3,node_modules/functions-have-names,Does this JS environment support the `name` property on functions?,git+https://github.com/inspect-js/functions-have-names.git,"as detected from PackageJson property ""repository.url""",https://github.com/inspect-js/functions-have-names#readme,"as detected from PackageJson property ""homepage""",https://github.com/inspect-js/functions-have-names/issues,"as detected from PackageJson property ""bugs.url""",https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz,"as detected from npm-ls property ""resolved"" and property ""integrity""",SHA-512,c5c901517c9322a4fdeedab6c7600c6fe835eb76f9245cac624d31e2ac4d1706df42498d6688911dbeac3f323dfd0577dd67aebd5601508883e0dccd232a9a45,ljharb@gmail.com,active,Active in npm registry,2023-07-12T19:05:02.835Z
|
package/src/domain/fx/cyril.js
CHANGED
|
@@ -248,7 +248,7 @@ const _getPositionChanges = async (commitRequestIdList, transferIdList, original
|
|
|
248
248
|
isOriginalId: originalId === commitRequestId,
|
|
249
249
|
notifyTo: fxRecord.externalInitiatingFspName || fxRecord.initiatingFspName,
|
|
250
250
|
participantCurrencyId: fxPositionChange.participantCurrencyId,
|
|
251
|
-
amount: -fxPositionChange.
|
|
251
|
+
amount: -fxPositionChange.positionChange
|
|
252
252
|
})
|
|
253
253
|
})
|
|
254
254
|
}
|
|
@@ -278,7 +278,7 @@ const _getPositionChanges = async (commitRequestIdList, transferIdList, original
|
|
|
278
278
|
isOriginalId: originalId === transferId,
|
|
279
279
|
notifyTo: transferRecord.externalPayerName || transferRecord.payerFsp,
|
|
280
280
|
participantCurrencyId: transferPositionChange.participantCurrencyId,
|
|
281
|
-
amount: -transferPositionChange.
|
|
281
|
+
amount: -transferPositionChange.positionChange
|
|
282
282
|
})
|
|
283
283
|
})
|
|
284
284
|
}
|
|
@@ -229,7 +229,7 @@ const _handleParticipantPositionChange = (runningPosition, transferAmount, trans
|
|
|
229
229
|
transferId, // Need to delete this in bin processor while updating transferStateChangeId
|
|
230
230
|
transferStateChangeId: null, // Need to update this in bin processor while executing queries
|
|
231
231
|
value: updatedRunningPosition.toNumber(),
|
|
232
|
-
|
|
232
|
+
positionChange: transferAmount,
|
|
233
233
|
reservedValue: accumulatedPositionReservedValue
|
|
234
234
|
}
|
|
235
235
|
|
|
@@ -251,7 +251,7 @@ const _handleParticipantPositionChangeFx = (runningPosition, transferAmount, com
|
|
|
251
251
|
commitRequestId, // Need to delete this in bin processor while updating fxTransferStateChangeId
|
|
252
252
|
fxTransferStateChangeId: null, // Need to update this in bin processor while executing queries
|
|
253
253
|
value: updatedRunningPosition.toNumber(),
|
|
254
|
-
|
|
254
|
+
positionChange: transferAmount,
|
|
255
255
|
reservedValue: accumulatedPositionReservedValue
|
|
256
256
|
}
|
|
257
257
|
|
|
@@ -304,7 +304,7 @@ const _handleParticipantPositionChange = (runningPosition, transferAmount, trans
|
|
|
304
304
|
transferId, // Need to delete this in bin processor while updating transferStateChangeId
|
|
305
305
|
transferStateChangeId: null, // Need to update this in bin processor while executing queries
|
|
306
306
|
value: updatedRunningPosition.toNumber(),
|
|
307
|
-
|
|
307
|
+
positionChange: transferAmount,
|
|
308
308
|
reservedValue: accumulatedPositionReservedValue
|
|
309
309
|
}
|
|
310
310
|
|
|
@@ -325,7 +325,7 @@ const _handleParticipantPositionChangeFx = (runningPosition, transferAmount, com
|
|
|
325
325
|
commitRequestId, // Need to delete this in bin processor while updating fxTransferStateChangeId
|
|
326
326
|
fxTransferStateChangeId: null, // Need to update this in bin processor while executing queries
|
|
327
327
|
value: updatedRunningPosition.toNumber(),
|
|
328
|
-
|
|
328
|
+
positionChange: transferAmount,
|
|
329
329
|
reservedValue: accumulatedPositionReservedValue
|
|
330
330
|
}
|
|
331
331
|
|
|
@@ -244,7 +244,7 @@ const processFxPositionPrepareBin = async (
|
|
|
244
244
|
commitRequestId: fxTransfer.commitRequestId, // Need to delete this in bin processor while updating fxTransferStateChangeId
|
|
245
245
|
fxTransferStateChangeId: null, // Need to update this in bin processor while executing queries
|
|
246
246
|
value: currentPosition.toNumber(),
|
|
247
|
-
|
|
247
|
+
positionChange: transferAmount,
|
|
248
248
|
reservedValue: accumulatedPositionReservedValue
|
|
249
249
|
}
|
|
250
250
|
participantPositionChanges.push(participantPositionChange)
|
|
@@ -88,7 +88,7 @@ const processPositionFxTimeoutReservedBin = async (
|
|
|
88
88
|
} else {
|
|
89
89
|
Logger.isDebugEnabled && Logger.debug(`accumulatedFxTransferStates: ${JSON.stringify(accumulatedFxTransferStates)}`)
|
|
90
90
|
|
|
91
|
-
const transferAmount = fetchedReservedPositionChangesByCommitRequestIds[commitRequestId][participantAccountId].
|
|
91
|
+
const transferAmount = fetchedReservedPositionChangesByCommitRequestIds[commitRequestId][participantAccountId].positionChange
|
|
92
92
|
|
|
93
93
|
// Construct payee notification message
|
|
94
94
|
const resultMessage = _constructFxTimeoutReservedResultMessage(
|
|
@@ -177,7 +177,7 @@ const _handleParticipantPositionChange = (runningPosition, transferAmount, commi
|
|
|
177
177
|
commitRequestId, // Need to delete this in bin processor while updating transferStateChangeId
|
|
178
178
|
transferStateChangeId: null, // Need to update this in bin processor while executing queries
|
|
179
179
|
value: updatedRunningPosition.toNumber(),
|
|
180
|
-
|
|
180
|
+
positionChange: transferAmount,
|
|
181
181
|
reservedValue: accumulatedPositionReservedValue
|
|
182
182
|
}
|
|
183
183
|
|
|
@@ -245,7 +245,7 @@ const processPositionPrepareBin = async (
|
|
|
245
245
|
transferId: transfer.transferId, // Need to delete this in bin processor while updating transferStateChangeId
|
|
246
246
|
transferStateChangeId: null, // Need to update this in bin processor while executing queries
|
|
247
247
|
value: currentPosition.toNumber(),
|
|
248
|
-
|
|
248
|
+
positionChange: transferAmount,
|
|
249
249
|
reservedValue: accumulatedPositionReservedValue
|
|
250
250
|
}
|
|
251
251
|
participantPositionChanges.push(participantPositionChange)
|
|
@@ -180,7 +180,7 @@ const _handleParticipantPositionChange = (runningPosition, transferAmount, trans
|
|
|
180
180
|
transferId, // Need to delete this in bin processor while updating transferStateChangeId
|
|
181
181
|
transferStateChangeId: null, // Need to update this in bin processor while executing queries
|
|
182
182
|
value: updatedRunningPosition.toNumber(),
|
|
183
|
-
|
|
183
|
+
positionChange: transferAmount,
|
|
184
184
|
reservedValue: accumulatedPositionReservedValue
|
|
185
185
|
}
|
|
186
186
|
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
* Georgi Georgiev <georgi.georgiev@modusbox.com>
|
|
25
25
|
* Rajiv Mothilal <rajiv.mothilal@modusbox.com>
|
|
26
26
|
* Valentin Genev <valentin.genev@modusbox.com>
|
|
27
|
+
* Shashikant Hirugade <shashi.mojaloop@gmail.com>
|
|
27
28
|
--------------
|
|
28
29
|
******/
|
|
29
30
|
|
|
@@ -239,7 +240,7 @@ const prepareChangeParticipantPositionTransaction = async (transferList) => {
|
|
|
239
240
|
participantCurrencyId: participantCurrency.participantCurrencyId,
|
|
240
241
|
transferStateChangeId: processedTransferStateChangeIdList[keyIndex],
|
|
241
242
|
value: runningPosition,
|
|
242
|
-
|
|
243
|
+
positionChange: transferAmount.toNumber(),
|
|
243
244
|
// processBatch: <uuid> - a single value uuid for this entire batch to make sure the set of transfers in this batch can be clearly grouped
|
|
244
245
|
reservedValue: runningReservedValue
|
|
245
246
|
}
|
|
@@ -299,7 +300,7 @@ const changeParticipantPositionTransaction = async (participantCurrencyId, isRev
|
|
|
299
300
|
participantCurrencyId,
|
|
300
301
|
transferStateChangeId: insertedTransferStateChange.transferStateChangeId,
|
|
301
302
|
value: latestPosition,
|
|
302
|
-
|
|
303
|
+
positionChange: isReversal ? -amount : amount,
|
|
303
304
|
reservedValue: participantPosition.reservedValue,
|
|
304
305
|
createdDate: transactionTimestamp
|
|
305
306
|
}
|
|
@@ -1194,7 +1194,7 @@ const transferStateAndPositionUpdate = async function (param1, enums, trx = null
|
|
|
1194
1194
|
participantCurrencyId: info.drAccountId,
|
|
1195
1195
|
transferStateChangeId,
|
|
1196
1196
|
value: new MLNumber(info.drPositionValue).add(info.drAmount).toFixed(Config.AMOUNT.SCALE),
|
|
1197
|
-
|
|
1197
|
+
positionChange: info.drAmount,
|
|
1198
1198
|
reservedValue: info.drReservedValue,
|
|
1199
1199
|
createdDate: param1.createdDate
|
|
1200
1200
|
})
|
|
@@ -1219,7 +1219,7 @@ const transferStateAndPositionUpdate = async function (param1, enums, trx = null
|
|
|
1219
1219
|
participantCurrencyId: info.crAccountId,
|
|
1220
1220
|
transferStateChangeId,
|
|
1221
1221
|
value: new MLNumber(info.crPositionValue).add(info.crAmount).toFixed(Config.AMOUNT.SCALE),
|
|
1222
|
-
|
|
1222
|
+
positionChange: info.crAmount,
|
|
1223
1223
|
reservedValue: info.crReservedValue,
|
|
1224
1224
|
createdDate: param1.createdDate
|
|
1225
1225
|
})
|