package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "safe-stable-stringify",
  3. "version": "2.4.3",
  4. "description": "Deterministic and safely JSON.stringify to quickly serialize JavaScript objects",
  5. "exports": {
  6. "require": "./index.js",
  7. "import": "./esm/wrapper.js"
  8. },
  9. "keywords": [
  10. "stable",
  11. "stringify",
  12. "JSON",
  13. "JSON.stringify",
  14. "safe",
  15. "serialize",
  16. "deterministic",
  17. "circular",
  18. "object",
  19. "predicable",
  20. "repeatable",
  21. "fast",
  22. "bigint"
  23. ],
  24. "main": "index.js",
  25. "scripts": {
  26. "test": "standard && tap test.js",
  27. "tap": "tap test.js",
  28. "tap:only": "tap test.js --watch --only",
  29. "benchmark": "node benchmark.js",
  30. "compare": "node compare.js",
  31. "lint": "standard --fix",
  32. "tsc": "tsc --project tsconfig.json"
  33. },
  34. "engines": {
  35. "node": ">=10"
  36. },
  37. "author": "Ruben Bridgewater",
  38. "license": "MIT",
  39. "typings": "index.d.ts",
  40. "devDependencies": {
  41. "@types/json-stable-stringify": "^1.0.34",
  42. "@types/node": "^18.11.18",
  43. "benchmark": "^2.1.4",
  44. "clone": "^2.1.2",
  45. "fast-json-stable-stringify": "^2.1.0",
  46. "fast-safe-stringify": "^2.1.1",
  47. "fast-stable-stringify": "^1.0.0",
  48. "faster-stable-stringify": "^1.0.0",
  49. "fastest-stable-stringify": "^2.0.2",
  50. "json-stable-stringify": "^1.0.1",
  51. "json-stringify-deterministic": "^1.0.7",
  52. "json-stringify-safe": "^5.0.1",
  53. "standard": "^16.0.4",
  54. "tap": "^15.0.9",
  55. "typescript": "^4.8.3"
  56. },
  57. "repository": {
  58. "type": "git",
  59. "url": "git+https://github.com/BridgeAR/safe-stable-stringify.git"
  60. },
  61. "bugs": {
  62. "url": "https://github.com/BridgeAR/safe-stable-stringify/issues"
  63. },
  64. "homepage": "https://github.com/BridgeAR/safe-stable-stringify#readme"
  65. }