@mojaloop/central-services-metrics
Advanced tools
Comparing version 12.0.7 to 12.0.8
{ | ||
"name": "@mojaloop/central-services-metrics", | ||
"version": "12.0.7", | ||
"version": "12.0.8", | ||
"description": "Shared code for metrics generation", | ||
@@ -64,7 +64,7 @@ "main": "./dist/index.js", | ||
"devDependencies": { | ||
"@types/node": "^20.5.3", | ||
"@types/node": "^20.5.7", | ||
"@types/tape": "^5.6.0", | ||
"audit-ci": "^6.6.1", | ||
"debug": "4.3.4", | ||
"npm-check-updates": "16.13.0", | ||
"npm-check-updates": "16.13.2", | ||
"nyc": "15.1.0", | ||
@@ -83,4 +83,4 @@ "pre-commit": "1.2.2", | ||
"tslint": "6.1.3", | ||
"typedoc": "0.24.8", | ||
"typescript": "^5.1.6" | ||
"typedoc": "0.25.0", | ||
"typescript": "^5.2.2" | ||
}, | ||
@@ -87,0 +87,0 @@ "nyc": { |
@@ -58,10 +58,12 @@ # central-services-metrics | ||
We use `npm-audit-resolver` along with `npm audit` to check dependencies for vulnerabilities, and keep track of resolved dependencies with an `audit-resolv.json` file. | ||
We use `audit-ci` along with `npm audit` to check dependencies for node vulnerabilities, and keep track of resolved dependencies with an `audit-ci.jsonc` file. | ||
To start a new resolution process, run: | ||
```bash | ||
npm run audit:resolve | ||
npm run audit:fix | ||
``` | ||
You can then check to see if the CI will pass based on the current dependencies with: | ||
```bash | ||
@@ -71,3 +73,3 @@ npm run audit:check | ||
And commit the changed `audit-resolv.json` to ensure that CircleCI will build correctly. | ||
The [audit-ci.jsonc](./audit-ci.jsonc) contains any audit-exceptions that cannot be fixed to ensure that CircleCI will build correctly. | ||
21159
74