Fix dependabot issues

This commit is contained in:
Andrew Eisenberg 2021-10-21 15:24:20 -07:00
parent c89d9bd8b0
commit 531c6ba7c8
705 changed files with 53406 additions and 20466 deletions

View file

@ -1,36 +1,41 @@
{
"name": "serialize-error",
"version": "2.1.0",
"description": "Serialize an error into a plain object",
"version": "7.0.1",
"description": "Serialize/deserialize an error into a plain object",
"license": "MIT",
"repository": "sindresorhus/serialize-error",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
"url": "https://sindresorhus.com"
},
"engines": {
"node": ">=0.10.0"
"node": ">=10"
},
"scripts": {
"test": "xo && ava"
"test": "xo && ava && tsd"
},
"files": [
"index.js"
"index.js",
"index.d.ts"
],
"keywords": [
"error",
"err",
"serialize",
"stringify",
"object",
"obj",
"convert",
"process",
"send"
"send",
"deserialize"
],
"dependencies": {
"type-fest": "^0.13.1"
},
"devDependencies": {
"ava": "*",
"xo": "^0.16.0"
"ava": "^2.4.0",
"tsd": "^0.11.0",
"xo": "^0.30.0"
}
}