{"maintainers":[{"name":"anonymous","email":"hello@matteocollina.com"},{"name":"anonymous","email":"david.mark.clements@gmail.com"},{"name":"anonymous","email":"ruben@bridgewater.de"}],"keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"dist-tags":{"latest":"2.1.1"},"author":{"name":"David Mark Clements"},"description":"Safely and quickly serialize JavaScript objects","readme":"# fast-safe-stringify\n\nSafe and fast serialization alternative to [JSON.stringify][].\n\nGracefully handles circular structures instead of throwing in most cases.\nIt could return an error string if the circular object is too complex to analyze,\ne.g. in case there are proxies involved.\n\nProvides a deterministic (\"stable\") version as well that will also gracefully\nhandle circular structures. See the example below for further information.\n\n## Usage\n\nThe same as [JSON.stringify][].\n\n`stringify(value[, replacer[, space[, options]]])`\n\n```js\nconst safeStringify = require('fast-safe-stringify')\nconst o = { a: 1 }\no.o = o\n\nconsole.log(safeStringify(o))\n// '{\"a\":1,\"o\":\"[Circular]\"}'\nconsole.log(JSON.stringify(o))\n// TypeError: Converting circular structure to JSON\n\nfunction replacer(key, value) {\n  console.log('Key:', JSON.stringify(key), 'Value:', JSON.stringify(value))\n  // Remove the circular structure\n  if (value === '[Circular]') {\n    return\n  }\n  return value\n}\n\n// those are also defaults limits when no options object is passed into safeStringify\n// configure it to lower the limit.\nconst options = {\n  depthLimit: Number.MAX_SAFE_INTEGER,\n  edgesLimit: Number.MAX_SAFE_INTEGER\n};\n\nconst serialized = safeStringify(o, replacer, 2, options)\n// Key: \"\" Value: {\"a\":1,\"o\":\"[Circular]\"}\n// Key: \"a\" Value: 1\n// Key: \"o\" Value: \"[Circular]\"\nconsole.log(serialized)\n// {\n//  \"a\": 1\n// }\n```\n\n\nUsing the deterministic version also works the same:\n\n```js\nconst safeStringify = require('fast-safe-stringify')\nconst o = { b: 1, a: 0 }\no.o = o\n\nconsole.log(safeStringify(o))\n// '{\"b\":1,\"a\":0,\"o\":\"[Circular]\"}'\nconsole.log(safeStringify.stableStringify(o))\n// '{\"a\":0,\"b\":1,\"o\":\"[Circular]\"}'\nconsole.log(JSON.stringify(o))\n// TypeError: Converting circular structure to JSON\n```\n\nA faster and side-effect free implementation is available in the\n[safe-stable-stringify][] module. However it is still considered experimental\ndue to a new and more complex implementation.\n\n### Replace strings constants\n\n- `[Circular]` - when same reference is found\n- `[...]` - when some limit from options object is reached\n\n## Differences to JSON.stringify\n\nIn general the behavior is identical to [JSON.stringify][]. The [`replacer`][]\nand [`space`][] options are also available.\n\nA few exceptions exist to [JSON.stringify][] while using [`toJSON`][] or\n[`replacer`][]:\n\n### Regular safe stringify\n\n- Manipulating a circular structure of the passed in value in a `toJSON` or the\n  `replacer` is not possible! It is possible for any other value and property.\n\n- In case a circular structure is detected and the [`replacer`][] is used it\n  will receive the string `[Circular]` as the argument instead of the circular\n  object itself.\n\n### Deterministic (\"stable\") safe stringify\n\n- Manipulating the input object either in a [`toJSON`][] or the [`replacer`][]\n  function will not have any effect on the output. The output entirely relies on\n  the shape the input value had at the point passed to the stringify function!\n\n- In case a circular structure is detected and the [`replacer`][] is used it\n  will receive the string `[Circular]` as the argument instead of the circular\n  object itself.\n\nA side effect free variation without these limitations can be found as well\n([`safe-stable-stringify`][]). It is also faster than the current\nimplementation. It is still considered experimental due to a new and more\ncomplex implementation.\n\n## Benchmarks\n\nAlthough not JSON, the Node.js `util.inspect` method can be used for similar\npurposes (e.g. logging) and also handles circular references.\n\nHere we compare `fast-safe-stringify` with some alternatives:\n(Lenovo T450s with a i7-5600U CPU using Node.js 8.9.4)\n\n```md\nfast-safe-stringify:   simple object x 1,121,497 ops/sec ±0.75% (97 runs sampled)\nfast-safe-stringify:   circular      x 560,126 ops/sec ±0.64% (96 runs sampled)\nfast-safe-stringify:   deep          x 32,472 ops/sec ±0.57% (95 runs sampled)\nfast-safe-stringify:   deep circular x 32,513 ops/sec ±0.80% (92 runs sampled)\n\nutil.inspect:          simple object x 272,837 ops/sec ±1.48% (90 runs sampled)\nutil.inspect:          circular      x 116,896 ops/sec ±1.19% (95 runs sampled)\nutil.inspect:          deep          x 19,382 ops/sec ±0.66% (92 runs sampled)\nutil.inspect:          deep circular x 18,717 ops/sec ±0.63% (96 runs sampled)\n\njson-stringify-safe:   simple object x 233,621 ops/sec ±0.97% (94 runs sampled)\njson-stringify-safe:   circular      x 110,409 ops/sec ±1.85% (95 runs sampled)\njson-stringify-safe:   deep          x 8,705 ops/sec ±0.87% (96 runs sampled)\njson-stringify-safe:   deep circular x 8,336 ops/sec ±2.20% (93 runs sampled)\n```\n\nFor stable stringify comparisons, see the performance benchmarks in the\n[`safe-stable-stringify`][] readme.\n\n## Protip\n\nWhether `fast-safe-stringify` or alternatives are used: if the use case\nconsists of deeply nested objects without circular references the following\npattern will give best results.\nShallow or one level nested objects on the other hand will slow down with it.\nIt is entirely dependant on the use case.\n\n```js\nconst stringify = require('fast-safe-stringify')\n\nfunction tryJSONStringify (obj) {\n  try { return JSON.stringify(obj) } catch (_) {}\n}\n\nconst serializedString = tryJSONStringify(deep) || stringify(deep)\n```\n\n## Acknowledgements\n\nSponsored by [nearForm](http://nearform.com)\n\n## License\n\nMIT\n\n[`replacer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#The%20replacer%20parameter\n[`safe-stable-stringify`]: https://github.com/BridgeAR/safe-stable-stringify\n[`space`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#The%20space%20argument\n[`toJSON`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON()_behavior\n[benchmark]: https://github.com/epoberezkin/fast-json-stable-stringify/blob/67f688f7441010cfef91a6147280cc501701e83b/benchmark\n[JSON.stringify]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify\n","repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"users":{"robmcguinness":true,"pintux":true,"soenkekluth":true,"grantcarthew":true,"erickeno":true},"license":"MIT","bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"versions":{"1.0.0":{"name":"fast-safe-stringify","version":"1.0.0","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"gitHead":"7e024e6b53c8df64d1bd0a2fbc42c0d34dfbbc46","_id":"fast-safe-stringify@1.0.0","_shasum":"d83f1d661652c5c252556f8643a3fed31dfb9c9a","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.9.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"d83f1d661652c5c252556f8643a3fed31dfb9c9a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.0.tgz","integrity":"sha512-UCTwKy8nl5vJ+/xWgLHWDLreCv9qVNewuaRcn3WNPfYev2F/IhWFFmZumBJ1U58TRjY+U9UbGNHiCd3+mgYCYw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICj1ohKkeopXUuiyjzrYvNpjbq2P04HtRV1Xe434i6v/AiEAunTlvltR5Z4rvG+MR7ZQxLy5NJcEpMgVbCfQIlAxrww="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.0.tgz_1458565090717_0.058364002499729395"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.1":{"name":"fast-safe-stringify","version":"1.0.1","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"gitHead":"afe50fb9b03c2fd84e7ec7592bd7c25ef55b0640","_id":"fast-safe-stringify@1.0.1","_shasum":"be13290f10adda8e4b3b59692d99f48ef586a7e7","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.9.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"be13290f10adda8e4b3b59692d99f48ef586a7e7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.1.tgz","integrity":"sha512-Irz7du6YAWeRB29WjG84jyP2Ov+KoPeWUMUQkCgQyPtHSDwiTU0zaTIAxCg1mziLQiaN+AUlHoQyciNndnBMMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCv72VOh/+Mzh7No4NkgHNzUW8jNLwhHXN30DyDbd3UdwIgRa7j+yrp9/VraWPpy3r0KHwWd1drngrlJQXHvQm1G80="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.1.tgz_1458565120354_0.29774316446855664"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.2":{"name":"fast-safe-stringify","version":"1.0.2","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"gitHead":"90efc3ac024bfdf7a3a5de7dccd0a0cb0a949dde","_id":"fast-safe-stringify@1.0.2","_shasum":"2584926486600277cae0a8654258bb9366fabc89","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.9.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"2584926486600277cae0a8654258bb9366fabc89","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.2.tgz","integrity":"sha512-UTu7vzegwFNshpPMiCdC1tpoGLaVOhLjuyqajxE6kdqV2VvBVl8HGzAlu7wYJVF+Y20Ri8Ow6JeWiMiOQQ9DsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDg1xk0SJVFsS9suXosDktYvOwuSS/ynIFP4kO9/Ws62AiA2dZ8vQWNvVaiXbQu/ShUD4DWCr+mhJqw/CPPoHJK5PQ=="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.2.tgz_1458565171246_0.5336698214523494"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.3":{"name":"fast-safe-stringify","version":"1.0.3","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"gitHead":"ec390b1308747da91d3e58f19a0c0c786944074b","_id":"fast-safe-stringify@1.0.3","_shasum":"741ea57b8c83e7d35f0ef82b9c4732c7cadf8f27","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.9.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"741ea57b8c83e7d35f0ef82b9c4732c7cadf8f27","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.3.tgz","integrity":"sha512-NWRAYDrS3mthn1AVHkNOgYiM/N+sHTMNyw+IawsgwGuDI+jlZYPs5wsAVlN/IeOt75SqCQ3IrIUybtrTPc2Bgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCHyV/LJWecPminGPGO7jJwGk9U6OVvzAh3Knc+8SiBloCIFDB1q1VaHA41Lz7cxgz5jbeLBLsYaPUytvTxG78cJNW"}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.3.tgz_1458565310163_0.7626685686409473"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.4":{"name":"fast-safe-stringify","version":"1.0.4","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"gitHead":"ee32e19ec23e9d88fac1a3dc01ddec6dbcb646b8","_id":"fast-safe-stringify@1.0.4","_shasum":"a2dc652b6c357da11447a93e0e52d074197702fc","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.9.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"a2dc652b6c357da11447a93e0e52d074197702fc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.4.tgz","integrity":"sha512-mPywdQq8KCCymY5/PtkNp7CzOsTWAxWmzT+pVzR+AeXj1lVaeXpf8LVMRQz6CkOjYid/1xWBn510SrWOwCrsuw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGbFiDtBXyoR2Vy18XoRheNIwmBhoi6V/DcD2pIBTmf/AiEA4s9hJqbopee5aQqOPAtmDQymiUOAxiSARy9PTCxJWDg="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.4.tgz_1458565333356_0.7445015385746956"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.5":{"name":"fast-safe-stringify","version":"1.0.5","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"gitHead":"95fdab717f9f20906783e565d32eac073ff545e8","_id":"fast-safe-stringify@1.0.5","_shasum":"1dda28a1257e2ec45f51afe80f8a8b5ec71391bf","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.10.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"1dda28a1257e2ec45f51afe80f8a8b5ec71391bf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.5.tgz","integrity":"sha512-OZuYyr6FYtpHNUMSMIq1x5U9Bnml3HIEtIGtHBNKK+oyGVdT5mQbDnVZitUg6XoIL/9YorNeRBrN+8wRjS0OSw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCoEheq/HiWk5iEOoArIlubjBiKuFqdbw71whpBga/39gIhAI2suz7lfPzTXE/Val9QHydhn5/AlNvusBN0NyzpTjaf"}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.5.tgz_1459884251486_0.1939125037752092"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.6":{"name":"fast-safe-stringify","version":"1.0.6","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"dependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"5075912f59ce4b4b79489d6d59c9b624b35be953","_id":"fast-safe-stringify@1.0.6","_shasum":"f5981994d87edc32cd482b311aa35170a2f3b3fd","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.10.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"f5981994d87edc32cd482b311aa35170a2f3b3fd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.6.tgz","integrity":"sha512-or/GppIYnF8F6pfHgeUw0v4FAMW8JsoTs1SDQNh0k2lWkN/u/BfQzlrg4w5D9dcns8hBSkbxSyfB3hNqKTNK8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFHH1xDRQu0AwFvOpoKSMqX1l02oQmqdcGaWhkmgBjjdAiEA6FeiHkWQcT+vChW+8VGpUtxLZluIM8yg1hTloIKiVKM="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.6.tgz_1459900249586_0.6011963083874434"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.7":{"name":"fast-safe-stringify","version":"1.0.7","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"539a3e7f1238f449e38fc33d684f3d1dc232fb30","_id":"fast-safe-stringify@1.0.7","_shasum":"5e2f7144bf3e44e840786532777b2c5ea4876ce0","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.10.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"5e2f7144bf3e44e840786532777b2c5ea4876ce0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.7.tgz","integrity":"sha512-BuPQhuBaJgmIlXqWimCdBClzsK4vWLA7QHzHhtbRYgC1mQgGocry7Fi+EgcH7Q3xDC2xjCGzPNoJjZ4ydZPNUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCg07Espn4jqQnzP8oVQk2l0C2hb58/4hm4UIIwEojrYwIgZT3QNk/g9bwkg6E6THVOPSTQkAW+++W1wJ1mN8K5xgE="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.7.tgz_1459900347221_0.08209548331797123"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.8":{"name":"fast-safe-stringify","version":"1.0.8","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","tap":"^5.7.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"5e94534a62d1de77f7b8536632033a5410f772d9","_id":"fast-safe-stringify@1.0.8","_shasum":"70b7070a6c4ac2a3668787a4b0df909f369ef263","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.10.1","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"70b7070a6c4ac2a3668787a4b0df909f369ef263","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.8.tgz","integrity":"sha512-tSpuRYF8IQcdNjJarDGcOINqw+Yx5tu/4vtQer04LqU1wNGZVwyougkfj6d3ozHLbsy+Hh5js3nkcduytJtxWw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGXgpwcSaOu+1mvuhC/r+HWJtGCuppW1vNajBNB6trm1AiBWYnKuzlgtpn1VOXDhKZS7G7r4UDHcffBEB1HcOOxahg=="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.8.tgz_1459985639185_0.8049860210157931"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.9":{"name":"fast-safe-stringify","version":"1.0.9","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^6.0.8","tap":"^5.7.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"592e640c2d5d9d05abd2d36ad6e74eabd804b640","_id":"fast-safe-stringify@1.0.9","_shasum":"27c915a4be3dd50e501826193a14dd0899dbad08","_from":".","_npmVersion":"2.14.17","_nodeVersion":"5.10.1","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"27c915a4be3dd50e501826193a14dd0899dbad08","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.9.tgz","integrity":"sha512-fqBDr6jQiOuwz+fs92xoPmqkzQDjvWcb7vRq+InDdDjlAK2he6rOQoLgMbqK6N0Hlq0PGUO6RSD96Pih4LO88A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEfnj/kMRFcoMUPas1fFKvNwYuHhRDsMiFNfrbhoaGdZAiBojwQfrWsGKRHkQZWMT1PlZRzcGNJ0OPT7/cn5hRbBvQ=="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.9.tgz_1459988306005_0.46404400817118585"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.0.10":{"name":"fast-safe-stringify","version":"1.0.10","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^6.0.8","tap":"^5.7.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"2a670725369da1e5274409c6f24bec55ffd1e4ac","_id":"fast-safe-stringify@1.0.10","_shasum":"70cf7ebda129c55b3096b5b9846e5421e0fcbe68","_from":".","_npmVersion":"2.14.17","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"70cf7ebda129c55b3096b5b9846e5421e0fcbe68","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.0.10.tgz","integrity":"sha512-LQQma+SSTLoJD3Yxm9bCNz22Oo3oGC8eMozZOqJTzYcQBAJNKv1562eEgDjOAxVCUzLvBK7dAF3o5+o7Tn4Z5w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8wIzkHq8o5ipNGRF75+3OafZrfXuDTPvFQ/x/5Ye9sQIgUq8a3yKrQC1p7q25LlvnHTeGjtJOtqAV7ZWNL7wKRY8="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.0.10.tgz_1472140893708_0.30146322259679437"},"deprecated":"use 1.1.0+ see https://github.com/davidmarkclements/fast-safe-stringify/issues/4","directories":{}},"1.1.0":{"name":"fast-safe-stringify","version":"1.1.0","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^1.0.2","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^8.0.0","tap":"^7.1.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"12b65d8b1e7b77eb4b3245d34b0e36f8d4a36a95","_id":"fast-safe-stringify@1.1.0","_shasum":"4ca98c502e00c387ca1b0e7184e955718bf512e8","_from":".","_npmVersion":"2.14.17","_nodeVersion":"6.3.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"4ca98c502e00c387ca1b0e7184e955718bf512e8","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.0.tgz","integrity":"sha512-hPFZz2i/d2nFhb4wLT9J3KoW3lHmYtyyrHlDSET206z94D/KYCSLjxT7ECy1rmKINfiPTH7nZEyKPHr1Ifh1Lg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAlz7O/znNxZEjYcYRml7ZSrqOao77U7QC5EOuuwo6VVAiEAieVk5b9XiT8XNpu16tmh9DW6zROYmiO66PDWnUuhrPM="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"},{"name":"anonymous","email":"hello@matteocollina.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.0.tgz_1473761520613_0.8159019146114588"},"directories":{}},"1.1.1":{"name":"fast-safe-stringify","version":"1.1.1","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^1.0.2","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^8.0.0","tap":"^7.1.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"d9a16d8ebcb0a0705424cc0d7b3a85148d8dc189","_id":"fast-safe-stringify@1.1.1","_shasum":"9560965c0b2b60b2ef93c7a405c65731d7f62b23","_from":".","_npmVersion":"2.14.17","_nodeVersion":"6.7.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"9560965c0b2b60b2ef93c7a405c65731d7f62b23","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.1.tgz","integrity":"sha512-VPMszUg+O3Nca2/dE+1nodC4Gj3ExPNOC1L19tQyDxIFzo1e0gX1T5o56THQgbZ7mMIIAtisaDKpIPjYkRyN6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG2CGLIRNd89ZdKLq0vKGy16Kw9RnTdrzpCTG4tD2hAAAiB6ygwUkdlMOeT8etEwPoj9P+n+TBgUs91CsdgI1+k5Rg=="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"},{"name":"anonymous","email":"hello@matteocollina.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.1.tgz_1476462402840_0.21701044030487537"},"directories":{}},"1.1.2":{"name":"fast-safe-stringify","version":"1.1.2","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^1.0.2","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^8.0.0","tap":"^7.1.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"5ea41f0713f4754aee6089125e825e1728536edd","_id":"fast-safe-stringify@1.1.2","_shasum":"d584519a8846c265001ed371959a31f4184a9a47","_from":".","_npmVersion":"4.0.2","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"d584519a8846c265001ed371959a31f4184a9a47","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.2.tgz","integrity":"sha512-bk4Eq/WA7PR/BnqdVLKJWEWJtLbGAZ2R5mB+Ytce8BQKnl2MiklhIoI60ADUBI1qM26yxIjPsNPNULwYtVXsrQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC99VOvCT6LCFmUF11WciZJgUXWixdq9mtPTaPbAZaYMQIgHPrv5WrQx7gk0TcSk3fxA0q0kSL2RWWLLI1O06oOCGk="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"},{"name":"anonymous","email":"hello@matteocollina.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.2.tgz_1479322177016_0.467733541270718"},"directories":{}},"1.1.3":{"name":"fast-safe-stringify","version":"1.1.3","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^1.0.2","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^8.0.0","tap":"^7.1.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"0b9841056d3cf37ab9861eec070004b2c58966c5","_id":"fast-safe-stringify@1.1.3","_shasum":"f23370808fe5ab243fa1fdee2e9ab3041c8cb884","_from":".","_npmVersion":"4.0.2","_nodeVersion":"6.9.1","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"f23370808fe5ab243fa1fdee2e9ab3041c8cb884","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.3.tgz","integrity":"sha512-34BRc5KGInDEfUFAk84XwQQi9Jzg0IBsQZO8Pp80f99DUbttC40VgCKHY5JezXugDm6J/LKdGirAYZS++9BCdA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCY1COibMkXhGflNMxIe/FcH17ViBJGBDV6bkqOTVEmcwIhAMn5mFzoYOhwvNngXpLZCO7KnJcBwFpL3KYM2mP0cWHD"}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"},{"name":"anonymous","email":"hello@matteocollina.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.3.tgz_1479322432389_0.1881735937204212"},"directories":{}},"1.1.4":{"name":"fast-safe-stringify","version":"1.1.4","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^8.0.0","tap":"^9.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"7a906262c1b5f4fdad777f61007d58fbdd12ac52","_id":"fast-safe-stringify@1.1.4","_shasum":"e22c4831b5023c73d85f8ec91aff44c6550654e4","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"dist":{"shasum":"e22c4831b5023c73d85f8ec91aff44c6550654e4","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.4.tgz","integrity":"sha512-ZepDMl9mOYKGMxgLbcMwx+ovttp7m0hcpdft2IEWj+z+swJVkC6tg6A9DqE/GdHYUtaxppqIbYYAGBLvw0Edgg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID31Q++sMD2vBjvJ2HuBsU+GbLE5KfzFdhklnEc+VtTwAiEA86a0y2Y2CdKrEZDQPVnul1hLdXnTspr3OzDSd8X8Hxc="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"},{"name":"anonymous","email":"hello@matteocollina.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.4.tgz_1485366817142_0.39003580529242754"},"deprecated":"use 1.1.5 or later for typescript support","directories":{}},"1.1.5":{"name":"fast-safe-stringify","version":"1.1.5","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^8.0.0","tap":"^9.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"7b5f82c33031b7827515383ddb1ab809499a4932","_id":"fast-safe-stringify@1.1.5","_shasum":"81141d0750c293a703ea508210c5ef7852724d2e","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"81141d0750c293a703ea508210c5ef7852724d2e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.5.tgz","integrity":"sha512-c65XTJYPLpV4BrzaftI5c6DDwnf8QDvnAkghh4yKMZ7341cKNOirfA95jOy03TrF+ygHTzAxQooLmvT/Q+mdAQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5ujDBFg8w1Mw5AI1hoQN+5QMLJnZXeY2OvzqqELwhUAIhAOMzQwYzpTBzxKkl40F79SRpMOLWClbC7FXasLubCX5N"}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"},{"name":"anonymous","email":"hello@matteocollina.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.5.tgz_1486045311607_0.808946780860424"},"directories":{}},"1.1.6":{"name":"fast-safe-stringify","version":"1.1.6","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^8.0.0","tap":"^9.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"1e2e2eb285656d3ea20ac25601f4a3cb8f0a294e","_id":"fast-safe-stringify@1.1.6","_shasum":"b30f4a55cbf657895a5b07b2c9c6fec91580802d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"b30f4a55cbf657895a5b07b2c9c6fec91580802d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.6.tgz","integrity":"sha512-s1n7TfnCaM80d/As9pMP0vjogGrfI2qDuuOx5MdwfivGq+Hj5a0AvwcSi9O7+Q6LwJLCocySjKBpT3Vt80R+kw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGZZ3nwksJMFWsps4lHag0E43IDIyOTOAhJ+y6oGYg7vAiAg3wJJ5+K/9g7tOZrBEAp+JxlS0KNbp2s3zXeKSrJQvA=="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"},{"name":"anonymous","email":"hello@matteocollina.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.6.tgz_1486048314529_0.44678843254223466"},"directories":{}},"1.1.11":{"name":"fast-safe-stringify","version":"1.1.11","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^8.0.0","tap":"^9.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"c924d0aa8862778121fd4b1d5c0f917ec8da3a90","_id":"fast-safe-stringify@1.1.11","_shasum":"64aa17438bd512568e97d407410b6339b57c577f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"64aa17438bd512568e97d407410b6339b57c577f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.11.tgz","integrity":"sha512-1mRyhgWw/Vx5hAt2lyseIYdxE9ecuTOsUdKvJX84vIcHvIfDtKLmvBp+qe8et1bBbEA79iO7GNCipt1KNWgBtw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBzWUZl6blIFVqrJQH4Q28W7Os2pjIlwNlOUuz9fFPRqAiEA+UbNBTLmZdP/NQHEde9dNKJu1VUvCpFeJW8z6DlkLDs="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.11.tgz_1489012926825_0.23409761022776365"},"directories":{}},"1.1.12":{"name":"fast-safe-stringify","version":"1.1.12","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^9.0.0","tap":"^10.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"e7cb2db101efca7f87e575971f3ee6576b8ab2ae","_id":"fast-safe-stringify@1.1.12","_shasum":"70fa950c0017bf5bbd470aca870312a5ceb3632b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"dist":{"shasum":"70fa950c0017bf5bbd470aca870312a5ceb3632b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.12.tgz","integrity":"sha512-4CEO+qW2mrM8R5JnryS0KN72alwARHdeFczuXFNzVqWcA8c0VxPzWNqmqL/R7sy3p/5tbTlPih821HnGTDhLIg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDiJnCkO35Sj+Zfd+IqfOldhB1Cz7RPUg9+Fd6gdJxn7wIhAOxOfw+ukF1VUvlESMGWHaJ1Hzx3inlzCXUQq/OfngSa"}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.12.tgz_1490690221881_0.9157271382864565"},"directories":{}},"1.1.13":{"name":"fast-safe-stringify","version":"1.1.13","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^9.0.0","tap":"^10.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"4ba528f1267c9672273a23d73a9c15a89b1e6a26","_id":"fast-safe-stringify@1.1.13","_shasum":"a01e9cd9c9e491715c98a75a42d5f0bbd107ff76","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"dist":{"shasum":"a01e9cd9c9e491715c98a75a42d5f0bbd107ff76","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.1.13.tgz","integrity":"sha512-i5cPAGwAviF/sYF1z3Sq1DaZt/hye7MQAHqpg9eCF1qCOolpSNeYSBYFRVIdzOW7L4A+/XznDxbLQSyygnUCDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG98z+wbZVFL/015k0gasVWhQsiOBxEMb1NgSncKc9fbAiAmthz4oc3nRh/wBPxdSiHcQIJm0wDQduIy6KYul5s2MA=="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/fast-safe-stringify-1.1.13.tgz_1490695569907_0.4146328771021217"},"directories":{}},"1.2.0":{"name":"fast-safe-stringify","version":"1.2.0","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^9.0.0","tap":"^10.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"62941e8752dc9563353d750eff11a2f49de5fa96","_id":"fast-safe-stringify@1.2.0","_shasum":"ebd42666fd18fe4f2ba4f0d295065f3f85cade96","_from":".","_npmVersion":"4.6.1","_nodeVersion":"6.10.1","_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"dist":{"shasum":"ebd42666fd18fe4f2ba4f0d295065f3f85cade96","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.2.0.tgz","integrity":"sha512-Y/7LegaxV4SrHMgeOEdm8iKHsSVUsjYFV4Npt3krRJZnumfVs2qSvZI30u9l9hCq68K5MbRv5bbuIExcrUL6lA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC15JnclQt9s9CJ/s/IKPavC1KNvMKDBDPA16uJ3mdWnQIgPjH26HsUwC6nrZrsvv9tI4E24vEt8/3UNYE+BFTAQNU="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify-1.2.0.tgz_1495443139653_0.26004067016765475"},"directories":{}},"1.2.1":{"name":"fast-safe-stringify","version":"1.2.1","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^9.0.0","tap":"^10.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"115c8040d34323c541e568d63a37f72bfc285300","_id":"fast-safe-stringify@1.2.1","_npmVersion":"5.4.2","_nodeVersion":"8.8.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"integrity":"sha512-g2UqeO0yyYjTSpiH4zJQk+IycRxyYRABjSf+TpmeMOn9uByzFIoX0y/HnweCFhKb+uuPwjIvqXuK/LTteEBhow==","shasum":"c4b2477dd585de4488aa6665d4acfae41462d999","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQChaiv7wJtcfeSUC0E1D2g0s744Nx5eOnIrd8co28w17AIgd8ILjEleKgTgpQ4BBV6FJ8g0bWy0BU9WtbEMBupIDi4="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify-1.2.1.tgz_1509629264755_0.5369042961392552"},"directories":{}},"1.2.2":{"name":"fast-safe-stringify","version":"1.2.2","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^9.0.0","tap":"^10.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"68f28e1d7cca610c04f4ae5f8682b49ad28bea43","_id":"fast-safe-stringify@1.2.2","_shasum":"eab31cd4dd0dbaa09f64ac6b77e7e7eb9b4a142b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"eab31cd4dd0dbaa09f64ac6b77e7e7eb9b4a142b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.2.2.tgz","integrity":"sha512-Hckl9B5hr6Stw0QCvK6yxqvGlBnG0zbI6ZXcZhLncutX6LOt7T4OPKUfb3xl3sL4OllRp+jVxC9P1pa3hyb5Bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDHGA7pHfcOkmuXXjqcUoQqT3W5Ce5dF1OjxQHLR1sSPAiEA1+eCz4+j+FN7xD00sW4HBs5VGrk071GYsZXismG5cBE="}]},"maintainers":[{"name":"anonymous","email":"huperekchuno@googlemail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify-1.2.2.tgz_1515519021306_0.636461365967989"},"directories":{}},"1.2.3":{"name":"fast-safe-stringify","version":"1.2.3","description":"Safely and quickly serialize JavaScript objects","main":"index.js","scripts":{"test":"standard && tap test.js"},"author":{"name":"David Mark Clements"},"license":"MIT","typings":"index","devDependencies":{"clone":"^2.1.0","fastbench":"^1.0.1","json-stringify-safe":"^5.0.1","standard":"^9.0.0","tap":"^10.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","gitHead":"c4437c6f1207843ae2f7c92c7ea3550209ba41dc","_id":"fast-safe-stringify@1.2.3","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"dist":{"integrity":"sha512-QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw==","shasum":"9fe22c37fb2f7f86f06b8f004377dbf8f1ee7bc1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGkcRLduMLzO1Mwlf0NkCmgP2ogptGhLYlJDJEqp8293AiEAycnB+SWJSJZ4QrmfUif+FVInzkUyAhVQ+4nbzUT+b5I="}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify-1.2.3.tgz_1515765929145_0.32130450615659356"},"directories":{}},"2.0.0":{"name":"fast-safe-stringify","version":"2.0.0","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap test.js && tap test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0-beta.0","tap":"^11.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"8fe547ddc3c0ea5e6d89f3aff0ccdbee02156d59","_id":"fast-safe-stringify@2.0.0","_shasum":"3e673502403de8babe0cdc45e7b14f92e2504182","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"3e673502403de8babe0cdc45e7b14f92e2504182","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.0.tgz","integrity":"sha512-A54n2zTjWy0oXPjM05qenM4kamY/cfqDDR284vlet5GrpecywO8n4E2oV/aI2ncS1P4ip6npxbuCT8uOSntU3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwlzKdibDMrxniiISECi4VdkEN7M71LQT4JRao7inVyAIhAL8lO8S4sFDA2l3q6FZpr+xvZ7GEEkXRNaeEiqG4vqm2"}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify-2.0.0.tgz_1515784623270_0.9991357563994825"},"directories":{}},"2.0.1":{"name":"fast-safe-stringify","version":"2.0.1","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap test.js && tap test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0-beta.0","tap":"^11.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"eca3dd5f7fbd1763252bdd7ab74a87c3c6a3b038","_id":"fast-safe-stringify@2.0.1","_shasum":"8d29239c2d94e9ba5f43f70c7119bf9743d267e0","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"8d29239c2d94e9ba5f43f70c7119bf9743d267e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.1.tgz","integrity":"sha512-5/7DClSNSo2H+mfCUv8yL3/BqlK3bofVCB/X8oBvV51hgaMSP5zhKwg56NYCulVjZLfyLMdt2GLAOYhpbycejQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH+wYt/MvbqKPlycruKPpTY/eudGymopSxAlHe5Pa4s7AiEAtnkLej9Gl87URGKyV//PGHMN8nWwBOVztmzZUwqjhj0="}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify-2.0.1.tgz_1515816686580_0.8214193962048739"},"directories":{}},"2.0.2":{"name":"fast-safe-stringify","version":"2.0.2","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap test.js && tap test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0-beta.0","tap":"^11.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"ff1854279072d7bb97a1178ff49e5a42fadd1640","_id":"fast-safe-stringify@2.0.2","_shasum":"1e83d23b02c043601d1f823a0219ed7e10cfde8b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.12.0","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"shasum":"1e83d23b02c043601d1f823a0219ed7e10cfde8b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.2.tgz","integrity":"sha512-8MmTR6A0FgnpGqOZaDPGGcokAbJRmEJlIXOPQSuFHYiL5zd1UOU3hzGOmM87NH+nSRKuYbAFxjYaGCyXN4Cl9g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAN04v5C5vp4STG1zNHf4XsjFnL6EYT94Vhm+leROqr3AiAlmoT5pyMq64nrBUud1GDPkJVxb/2STUDiK0HfPwQ9dg=="}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify-2.0.2.tgz_1515946105625_0.6224249270744622"},"directories":{}},"2.0.3":{"name":"fast-safe-stringify","version":"2.0.3","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap test.js && tap test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0-beta.0","tap":"^11.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"201285f9cbe7bcab76a79caf0c96d4d432d8b828","_id":"fast-safe-stringify@2.0.3","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"integrity":"sha512-z7O+bbWRg1eq42SRn7xKrs8XS7997bK8UIJp+kV2cbpwQ2D8stgrF0056IbcciZfdRnuX0RyTyDWNmw+gkcvcg==","shasum":"bb784fef97c2ece6ad64e84b2497e505dece3a3d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.3.tgz","fileCount":10,"unpackedSize":26388,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCADxXSKA8p2RwNxN985KEdERfYw6OgvVV+0tpiSZvvAwIhAKPb7KSkkb+LA+GpVeq0razaoZgTeTViHK1Ndxb+BXdS"}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify_2.0.3_1518203307653_0.22187960736763834"},"_hasShrinkwrap":false},"2.0.4":{"name":"fast-safe-stringify","version":"2.0.4","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap test.js && tap test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0-beta.0","tap":"^11.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"23fc3d1967b1b12cf0bff5a6ce355b205bfb6c59","_id":"fast-safe-stringify@2.0.4","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"integrity":"sha512-mNlGUdKOeGNleyrmgbKYtbnCr9KZkZXU7eM89JRo8vY10f7Ul1Fbj07hUBW3N4fC0xM+fmfFfa2zM7mIizhpNQ==","shasum":"4fe828718aa61dbcf9119c3c24e79cc4dea973b2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.4.tgz","fileCount":10,"unpackedSize":26374,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD69xo6xYv9kGRO5IIZHMDARKw8xL0/9OIn4AwCp2SewAIhANI3TNz86MwsgvrMg7XySXqM1c6RNxra8seH+cps32U4"}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify_2.0.4_1523481856013_0.25503663759147877"},"_hasShrinkwrap":false},"2.0.5":{"name":"fast-safe-stringify","version":"2.0.5","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap test.js && tap test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0-beta.0","tap":"^11.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"a9229258c4efbf1ba6b3cf30f94e9924721455ef","_id":"fast-safe-stringify@2.0.5","_npmVersion":"6.1.0","_nodeVersion":"10.4.1","_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"dist":{"integrity":"sha512-QHbbCj2PmRSMNL9P7EuNBCeNXO06/E3t3XyQgb32AZul8wLmRa1Wbt2cm7GeUsX9OZGyXTQxMYcPOEBqARyhNw==","shasum":"cdb2d02d41329afbe67eff073598811d482609e3","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.5.tgz","fileCount":10,"unpackedSize":26445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYHqECRA9TVsSAnZWagAAlSoP+wWLWwavFhRqJb25Jxfc\nOmFGTni73888Sl4u8c2SLOsN7vcpg3FbaRyL1xy/Yd6mmrcJVnfJEga7BWkB\njqEEJWVtgLZGkUOVxn+x1HCmV+mQwDeOfUrqOMucFfOpVF6BQqMiDaFam6rR\ncgqSozuQDRt0y2DzW/9/WKMTSrlhSH7a1R/qXZ17ZOLQjpQShumOcGzxnv1+\nXJva5Vur21M+3n8dA9AZrk7CdvXE8BW4TgH8GETGjzupCeC4FkkBN0lRVIoI\n3l1/ThTpaf7zvl7kDtlWa/jEmZTrwW4rlbZ4VbxEDP4p8vnmyvZSUAN0o2t6\nlYWzZJdlDGt2MmWrSZQ2xIhVgazeDO7m2QclaA+UNeR6y9QN9WDbhE2dV7HY\ngLFCQvk9o2OonQPcDkhLf942HzkemKRdkRuRE9uTYaYRbs8WvnAk8ejbwEB/\n0qEQCqamfGsq4apRDTp42+rW6BKkwUfNEnorIDL2mp8NUUB1OvZIuPrydGWo\ngigWP0zZQVzDJqrhajLFQmlUKMZt3nTbY0lcmpqTvgCYct/fWhYcRLQBLEWg\nnkaUOEawkCgcrdYxSR7Nw7Lkdn7KEOw1SMFLQfye2DDJrNXrCglzJBZTCssT\nxGdUncBZfrVNQKCaiavAMbMu/2snR6jJaCJEHbwpV6bBx+5csLCdF0nnY4V4\nCU2v\r\n=opEg\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDb5Q6gQEio2qESpcbD1jET+pX7KT73C1EMiYHg3u5QWwIgHOqHsg/UCa/OVoP/YLAMT2BV8VaRtulk1Tn+mCPSuko="}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify_2.0.5_1533049476075_0.9113063094144085"},"_hasShrinkwrap":false},"2.0.6":{"name":"fast-safe-stringify","version":"2.0.6","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap test.js test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0","tap":"^12.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"f7dad6a6a274790fbeb0fc071f1c6e0ae2a551c5","_id":"fast-safe-stringify@2.0.6","_npmVersion":"6.4.0","_nodeVersion":"8.11.3","_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"dist":{"integrity":"sha512-q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg==","shasum":"04b26106cc56681f51a044cfc0d76cf0008ac2c2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz","fileCount":10,"unpackedSize":26580,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdKQKCRA9TVsSAnZWagAAM6gP/1KFXvLKK5Gc+2wB7fG3\n0pMzFa2uldu23YV1tJ7498yu2VnqDC6bJAUekWXbHHwDYB+tgELh1pImuBdi\nE0Xrj7s+kjSYNOyxg6GozR3SOXyDoiiJ/6eIwiUzcUDkjNLTIsuarBJjpuBK\n4GjcygmLww7dQ5ixLj5ogngbIwW6IhVSTTXh37B59ktpvoXWlmmPrO9m+JGh\n8y1/XjJhxD0Lm/YIJowfIRhvQ7zuox4oE9OJKx2q4EQRDfaNKOs7/kuQXnyU\nOD7CFZMK1ayBdW9F1NPpsLqN3BbVmiAdzvQBwkJJapkF75IwGaNDrtVgDRAp\nU2ni0UzJpkceCF4SJF8BtBfMA3algE9kawo2k0U9av0KLVyrZyxcZKsHi4p4\ntZTOqD5QGCzKmLb/tuxkreB5dpuw5eoyt/KaXZ9uB9xmyHk4AlmQZyzPKC/8\nFfYL79qP7OPDzuBpdpJM4dtWEKDgBRQgmaym2lX8kMbVOOc2OelwTtau35LF\nP1jt7nM2CcxDWkeVVHj+lhheoQsuVcziyJyxMo1fKYFq6mAzsLUT9hoVqsY3\nIIg8Y/eSLRouoT/0RMAlRthXFkYnfZGLogiiZowYQlt3PWQ09bwZjZ8aM8Sn\nYszVfu+qUr9gMG+fI5W1z/nuBzzr2SqBd/BxLNBLXLXW3/PSJRC6d6HINVJ+\nOWkO\r\n=nOEU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBlIFwYsIPH361IxkYAa5zl88clHxps5Lot7DUdLShODAiEAw9zKC6+dz1kJRA9JhKu8gU7DKthBKYi2X3DHBZITZrE="}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify_2.0.6_1534370826155_0.9991329955071235"},"_hasShrinkwrap":false},"2.0.7":{"name":"fast-safe-stringify","version":"2.0.7","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap --no-esm test.js test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0","tap":"^12.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"0e011f068962e8f8974133a47afcabfc003f2183","_id":"fast-safe-stringify@2.0.7","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA==","shasum":"124aa885899261f68aedb42a7c080de9da608743","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz","fileCount":10,"unpackedSize":34024,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeOhHCRA9TVsSAnZWagAAEIYP/j44RT771ezaF+zce58Q\nujP+7hesvoyM6EYdAHgi3NL0Dt00ict9lJS92e0oZykYOHdHgsMz9JVBWjBp\ny8Bgr/qIChKcieLALP06xRQALvInbZTNRPg2RAZ7SfxZJ6s5DIINss8npkp+\nx+vuOlacgW0P5qKUkeTe+fUobUQFfzZm4NYkRr1WGLp6uFQgMZcL4KvrqcI7\nTdQh2fkeRk2d6qNJROPvsynZDtQM2RQhwRKYviFmpFAuvvfyJuqS1X6rPlhW\nySdDgbP80q15yFNSs6+bzUuS3Pj3g+yYkSRqUuXs8J8T/SHLtomrk91qApSq\ncBQg0yQWCeFgogneTMCTHZlJaxwEoBiNxMmZX14XLrx0HyiGsmaEa3HG1W7u\nv3VFUYZOlGshhgPLs3tfXoSmMj7gmB/NVs+JNfic3qmm9mymJQ0oRjkYFhvb\n0e5VRCK1CiULoNDVq62LIoNOHR0dRsALX7Kq/u7jBkgDtwD9bYkVCS1Aq8y3\nqHluQ8QAex35xkyHniBZyizzf3+NIzQkATJinEDdmCTZn5QMk2d6cRjM41Kr\nOQ3YYc759JaQMIQItE9C4nb3mqhs+qoPc37ltPWYLjBCpYi9WpOTXu0vN6tF\ny6l1dMGbfM09iEPQZqLZjeQiKQxKE7B8I/73o6lH+LUx+kSv50RnfRaPdaXG\nEGFt\r\n=n08F\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEtw+PlHRzL/uFjRRzF6s9G+8ka8W1jVjAdmiqtOMTQ2AiAmOcQPZVm7iwDSErQE5NOUcgto/mXmeTUIj40bwfFsTQ=="}]},"maintainers":[{"email":"ruben@bridgewater.de","name":"anonymous"},{"email":"huperekchuno@googlemail.com","name":"anonymous"},{"email":"hello@matteocollina.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"huperekchuno@googlemail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify_2.0.7_1568204870605_0.9890029027219882"},"_hasShrinkwrap":false},"2.0.8":{"name":"fast-safe-stringify","version":"2.0.8","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap --no-esm test.js test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0","tap":"^12.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"377166e552eb1be251eddc7f1793df84747468ab","_id":"fast-safe-stringify@2.0.8","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"dist":{"integrity":"sha512-lXatBjf3WPjmWD6DpIZxkeSsCOwqI0maYMpgDlx8g4U2qi4lbjA9oH/HD2a87G+KfsUmo5WbJFmqBZlPxtptag==","shasum":"dc2af48c46cf712b683e849b2bbd446b32de936f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.0.8.tgz","fileCount":10,"unpackedSize":35338,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6EiECRA9TVsSAnZWagAA1c4P/0wExGRMAlfjxY8Kahjc\nyCUG4ejdCIfZZoq04iacTrIg3q0QPHrjTapL0B48eP+d2OKcunDwipjSh1B0\nIbLRsYjUMOehgdx6vrrW0OTrDej4JBijKtbLSnCkNDWVag7o13MrQhGqvtZg\ndwQ6SQqlhdgakjpWDpgJJuTM39itIdIUupyNz2BGS9XbFLjbDREMBZPQ21sa\n9yCJiDw/kwRxiF33r9ZNSRI+VHlzQnIQRln7Fhs1znsVDZ21DLSPddQqnDTA\n3h2+0f/Ayr+iP2JkSKMoQp21A5EoGX3ZwwnNvn2hoft3fijKHigneoCxTAXe\nQ9SgObsQqQA7pCCLs9LIJJ2/eKWFceNfy+roJOPeQFOIg4MZ5Uh4oY+uX++y\nTfn48Felge76auWBbfgmaLNthqZP0P6bBubAjRxMkAzFovNeV+XlBwzAQzzd\nz+ITvYf5vICYiJBtdrbzyUpmJVYnqn/6CLisSO31lWEIlhTVzYdDa0mh3FDo\n53shF0lrHtMwZnKfM+Vd/TA3LxFS6aJZLKbEcd1Hl0vwvvsqGJ0FhuqE9M9r\nsg33Jx9y8BcCQXylcXhGZ6Wfescu24UzvgGKRjKm9iTN8B2ItrogbFf3zqkh\n3ESOzAyxXkyww45qw/J1HNxCSv/DUqmAkerFGJJQqCSnJFlTPYnb+4nsTV/S\nule4\r\n=b/HT\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICTC+IgmmbY04hZRw3/6Lw6JXS+jstGku22W28rYFAQwAiARlm0yVGKaIGEP16Ir45fJAv4cjfc5DD8/nyYFJN5zMw=="}]},"directories":{},"maintainers":[{"name":"anonymous","email":"hello@matteocollina.com"},{"name":"anonymous","email":"david.mark.clements@gmail.com"},{"name":"anonymous","email":"ruben@bridgewater.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify_2.0.8_1625835652255_0.6701866120354363"},"_hasShrinkwrap":false},"2.1.0":{"name":"fast-safe-stringify","version":"2.1.0","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap --no-esm test.js test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0","tap":"^12.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"49a6ea23cff981e1a3f6507de9a5bb61a00ea6ed","_id":"fast-safe-stringify@2.1.0","_nodeVersion":"14.17.0","_npmVersion":"6.14.13","_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"dist":{"integrity":"sha512-xHSIyDJTOVQjtMBGcUokl3tpaOKgTyVTjlHj255V4Q4J1oho3cnrWrf5sCx8z1jq7gzNMv8y0PH53pYYuZUFPQ==","shasum":"841ba2cb9633d6b6c98bad5a88cd1d4a8161cc33","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.1.0.tgz","fileCount":10,"unpackedSize":39582,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhN1C0CRA9TVsSAnZWagAAaPsP/iY0+Sr1qhkXuJM51NeU\nAcFFjDfhS2YHyi9bkvGgz8fvfYGFrOKQrdsBWHAq6Tt+FJFt9v4BZWQ05NsO\n2wwb0+dlPxQdM6VsbZP49tGDMOYksC1OliDD4nCxNBj/RB4AFr0/ezX1fJ5R\ndBpIZUS5T9f1b87nFPqq6mh43KHgjQm5Tnj2yGfHQezVQaFZ8QatLHkS8N4x\n640ugcCD9TuyTNiNJ7rBiPHlKjX46quiE1vJOw+JMK7PNpzCRFVvDIfH9VKO\nsehWoFlfKFzXfwkCCkq/QtsYvY6gc684lut6zB9oQH8Kg0Z3LkfVbD2dzX6X\nxlrn8B/9ieclOrwU6XoxLI0KytPvFotTk3wYM22l86hQcqqkPG7d76VaL0Ix\n1F0IHNxBiHh2Jk6r0+vp38r1FpnjgeEjylwdIhFaOq1Nq+C17ZxxvuaMPwLA\ne9mMzCmexJtDwT8EpWgIYiu0HuI1gh/tQxOpVfJC2FXcGmLswj9eIfWClrc9\nQ1xxFXpX8PQzi9YGGmagzfdy+XI9CFHtWQFpa/1EfSTH0kyyVADvjX4XBEvh\nSuzzbn06lm131TSC2z5w6eOXBo4B6wU9nO0oYX1HUAFn5bwFawFyV8rUhNrD\n6J1FlTIR3PRFsJJmKZoEUOlnnMAZWEDi+S1vvSFr/EKkP+W22NKZ51WI6F/4\n1FOA\r\n=x6ce\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCHtk34Z8eIJ4xLhNwjQ+Upsvtv1n0YqDVzvSwkp2oFRwIgJwaBLeUGxlCUK0u4H6yOLOn6R09EZZzFHaBRzh92oMY="}]},"directories":{},"maintainers":[{"name":"anonymous","email":"hello@matteocollina.com"},{"name":"anonymous","email":"david.mark.clements@gmail.com"},{"name":"anonymous","email":"ruben@bridgewater.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify_2.1.0_1631015092486_0.09987660655801633"},"_hasShrinkwrap":false},"2.1.1":{"name":"fast-safe-stringify","version":"2.1.1","description":"Safely and quickly serialize JavaScript objects","keywords":["stable","stringify","JSON","JSON.stringify","safe","serialize"],"main":"index.js","scripts":{"test":"standard && tap --no-esm test.js test-stable.js","benchmark":"node benchmark.js"},"author":{"name":"David Mark Clements"},"contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"license":"MIT","typings":"index","devDependencies":{"benchmark":"^2.1.4","clone":"^2.1.0","json-stringify-safe":"^5.0.1","standard":"^11.0.0","tap":"^12.0.0"},"repository":{"type":"git","url":"git+https://github.com/davidmarkclements/fast-safe-stringify.git"},"bugs":{"url":"https://github.com/davidmarkclements/fast-safe-stringify/issues"},"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme","dependencies":{},"gitHead":"98076ea2d8719e0c95c5d056ffd61f16ca53dbae","_id":"fast-safe-stringify@2.1.1","_nodeVersion":"16.8.0","_npmVersion":"7.21.0","dist":{"integrity":"sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==","shasum":"c406a83b6e70d9e35ce3b30a81141df30aeba884","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz","fileCount":10,"unpackedSize":39702,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOGP0CRA9TVsSAnZWagAAHJgP/3KcEpcfm5kkv4mulbp1\n9n7gnEbsCidjWgNRqCscVAPtBGz+FD9WfaXAWXQ0h6YcTl0zEVbMgvQ3tYdb\naT/MFVFCCTBVcHIa9ZvBuOXk4hIPtAZnhJFklLYXjGDdrn4SoX1Y4uxblZU/\nCyFzwg80Qp9yEqaduyfadiQb5rxqJYf7vAG8yMYekp9pwiIXcvOXj+4q8QdJ\nLiLhn4m7+mFTvXeVb1GP7/vwvyn3TLEnJ5jMJd+3DU5jnmCxwacWvycE9/t4\nf07DtKrgGBrV6rZKcdYCWhwPFnrM1qeKywm8+quo2yzzd+hANCDPgAchEk9h\n3wC8CxD01gmD3v7JjTwuBVckWM6TtNSZlQe+SR43II53Q/nZDuwDQFsw6Qpy\nHK4NnQr785Tfu5xLJl8/DTUgu/7+9yNpaFiBEpK//zZjmZ7p+915NPPOSjy3\ngdr4n7pOpDpRWZj18PnBsLsEvRgeIEY2rtq46JNFzZcKQlJTn2LjWgbV491c\nsUoE32L/ZhOoRsnoY5P9BX5vyGkyDy1f98c5CZkbiANfS8aLzGXvltuVjWaX\nEUDhK+HCBW5ZoiJC+0bXwY8LqmghcxcqOuuiXDn4uz++z7NCIIJXMSeMeZww\nvrpwg3XNp662Lyi9fn/aajKBetLkJ+sZ8La9spFZeWVPCxlv7qlPwHjuXTTj\n+J6J\r\n=64Vy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGSfHe5eOgP6lL+7goViJCXzEIvtGDhnx4mLlP+nS4wXAiAku/R4e8KfZnpmI2wMFzrAikAQEBtDcvjmDAXGO+7cHA=="}]},"_npmUser":{"name":"anonymous","email":"hello@matteocollina.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"hello@matteocollina.com"},{"name":"anonymous","email":"david.mark.clements@gmail.com"},{"name":"anonymous","email":"ruben@bridgewater.de"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/fast-safe-stringify_2.1.1_1631085556392_0.9264833294385175"},"_hasShrinkwrap":false}},"name":"fast-safe-stringify","time":{"modified":"2022-06-17T23:37:27.368Z","created":"2016-03-21T12:58:13.432Z","1.0.0":"2016-03-21T12:58:13.432Z","1.0.1":"2016-03-21T12:58:43.089Z","1.0.2":"2016-03-21T12:59:33.605Z","1.0.3":"2016-03-21T13:01:52.465Z","1.0.4":"2016-03-21T13:02:15.637Z","1.0.5":"2016-04-05T19:24:13.675Z","1.0.6":"2016-04-05T23:50:51.629Z","1.0.7":"2016-04-05T23:52:29.613Z","1.0.8":"2016-04-06T23:34:01.417Z","1.0.9":"2016-04-07T00:18:28.579Z","1.0.10":"2016-08-25T16:01:35.732Z","1.1.0":"2016-09-13T10:12:02.720Z","1.1.1":"2016-10-14T16:26:44.052Z","1.1.2":"2016-11-16T18:49:38.995Z","1.1.3":"2016-11-16T18:53:52.966Z","1.1.4":"2017-01-25T17:53:37.855Z","1.1.5":"2017-02-02T14:21:52.310Z","1.1.6":"2017-02-02T15:11:56.345Z","1.1.7":"2017-03-08T21:22:41.549Z","1.1.8":"2017-03-08T21:26:53.663Z","1.1.9":"2017-03-08T21:33:54.993Z","1.1.10":"2017-03-08T22:07:04.813Z","1.1.11":"2017-03-08T22:42:07.470Z","1.1.12":"2017-03-28T08:37:04.008Z","1.1.13":"2017-03-28T10:06:11.871Z","1.2.0":"2017-05-22T08:52:20.600Z","1.2.1":"2017-11-02T13:27:45.750Z","1.2.2":"2018-01-09T17:30:22.378Z","1.2.3":"2018-01-12T14:05:30.053Z","2.0.0":"2018-01-12T19:17:04.259Z","2.0.1":"2018-01-13T04:11:27.437Z","2.0.2":"2018-01-14T16:08:26.563Z","2.0.3":"2018-02-09T19:08:28.385Z","2.0.4":"2018-04-11T21:24:16.093Z","2.0.5":"2018-07-31T15:04:36.135Z","2.0.6":"2018-08-15T22:07:06.266Z","2.0.7":"2019-09-11T12:27:50.739Z","2.0.8":"2021-07-09T13:00:52.399Z","2.1.0":"2021-09-07T11:44:52.839Z","2.1.1":"2021-09-08T07:19:16.545Z"},"readmeFilename":"readme.md","contributors":[{"name":"Ruben Bridgewater"},{"name":"Matteo Collina"},{"name":"Ben Gourley"},{"name":"Gabriel Lesperance"},{"name":"Alex Liu"},{"name":"Christoph Walcher"},{"name":"Nicholas Young"}],"homepage":"https://github.com/davidmarkclements/fast-safe-stringify#readme"}