Update Axios for security fixes.

This commit is contained in:
2023-05-29 18:59:43 -05:00
parent f75edbc22a
commit f0944d0d7e
3 changed files with 119 additions and 37 deletions

View File

@ -1,12 +1,14 @@
{
"name": "@jdbernard/logging",
"version": "1.1.3",
"version": "1.1.4",
"description": "Simple Javascript logging service.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [ "/dist" ],
"files": [
"/dist"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"build": "tsc",
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
@ -21,9 +23,9 @@
"author": "Jonathan Bernard",
"license": "GPL-3.0",
"devDependencies": {
"typescript": "^3.9.7"
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^0.19.2"
"axios": "^1.4.0"
}
}