package.json 743 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "serialize-error",
  3. "version": "7.0.1",
  4. "description": "Serialize/deserialize an error into a plain object",
  5. "license": "MIT",
  6. "repository": "sindresorhus/serialize-error",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "error",
  25. "serialize",
  26. "stringify",
  27. "object",
  28. "convert",
  29. "process",
  30. "send",
  31. "deserialize"
  32. ],
  33. "dependencies": {
  34. "type-fest": "^0.13.1"
  35. },
  36. "devDependencies": {
  37. "ava": "^2.4.0",
  38. "tsd": "^0.11.0",
  39. "xo": "^0.30.0"
  40. }
  41. }