{"_id":"stringify-object","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"keywords":["object","stringify","pretty","print","dump","format","type","json"],"dist-tags":{"latest":"6.0.0"},"author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"description":"Stringify an object/array like JSON.stringify just without all the double-quotes","readme":"# stringify-object\n\n> Stringify an object/array like JSON.stringify just without all the double-quotes\n\nUseful for when you want to get the string representation of an object in a formatted way.\n\nIt also handles circular references and lets you specify quote type.\n\n## Install\n\n```sh\nnpm install stringify-object\n```\n\n## Usage\n\n```js\nimport stringifyObject from 'stringify-object';\n\nconst object = {\n\tfoo: 'bar',\n\t'arr': [1, 2, 3],\n\tnested: {\n\t\thello: \"world\"\n\t}\n};\n\nconst pretty = stringifyObject(object, {\n\tindent: '  ',\n\tsingleQuotes: false\n});\n\nconsole.log(pretty);\n/*\n{\n  foo: \"bar\",\n  arr: [\n    1,\n    2,\n    3\n  ],\n  nested: {\n    hello: \"world\"\n  }\n}\n*/\n\n// Also works with Map and Set\nconst map = new Map([['key', 'value']]);\nconsole.log(stringifyObject(map));\n//=> new Map([\n//=>   ['key', 'value']\n//=> ])\n```\n\n## API\n\n### stringifyObject(input, options?)\n\nCircular references will be replaced with `\"[Circular]\"`.\n\nObject keys are only quoted when necessary, for example, `{'foo-bar': true}`.\n\n#### input\n\nType: `object | Array | Map | Set`\n\n#### options\n\nType: `object`\n\n##### indent\n\nType: `string`\\\nDefault: `\\t`\n\nPreferred indentation.\n\n##### singleQuotes\n\nType: `boolean`\\\nDefault: `true`\n\nSet to `false` to get double-quoted strings.\n\n##### filter(object, property)\n\nType: `Function`\n\nExpected to return a `boolean` of whether to include the property `property` of the object `object` in the output.\n\n##### transform(object, property, originalResult)\n\nType: `Function`\\\nDefault: `undefined`\n\nExpected to return a `string` that transforms the string that resulted from stringifying `object[property]`. This can be used to detect special types of objects that need to be stringified in a particular way. The `transform` function might return an alternate string in this case, otherwise returning the `originalResult`.\n\nHere's an example that uses the `transform` option to mask fields named \"password\":\n\n```js\nimport stringifyObject from 'stringify-object';\n\nconst object = {\n\tuser: 'becky',\n\tpassword: 'secret'\n};\n\nconst pretty = stringifyObject(object, {\n\ttransform: (object, property, originalResult) => {\n\t\tif (property === 'password') {\n\t\t\treturn originalResult.replace(/\\w/g, '*');\n\t\t}\n\n\t\treturn originalResult;\n\t}\n});\n\nconsole.log(pretty);\n/*\n{\n\tuser: 'becky',\n\tpassword: '******'\n}\n*/\n```\n\n##### inlineCharacterLimit\n\nType: `number`\n\nWhen set, will inline values up to `inlineCharacterLimit` length for the sake of more terse output.\n\nFor example, given the example at the top of the README:\n\n```js\nimport stringifyObject from 'stringify-object';\n\nconst object = {\n\tfoo: 'bar',\n\t'arr': [1, 2, 3],\n\tnested: {\n\t\thello: \"world\"\n\t}\n};\n\nconst pretty = stringifyObject(object, {\n\tindent: '  ',\n\tsingleQuotes: false,\n\tinlineCharacterLimit: 12\n});\n\nconsole.log(pretty);\n/*\n{\n  foo: \"bar\",\n  arr: [1, 2, 3],\n  nested: {\n    hello: \"world\"\n  }\n}\n*/\n```\n\nAs you can see, `arr` was printed as a one-liner because its string was shorter than 12 characters.\n","repository":{"type":"git","url":"git+https://github.com/sindresorhus/stringify-object.git"},"users":{"passy":true,"xrush":true,"mightyiam":true,"antixrist":true,"jminnamon":true,"flumpus-dev":true,"sharper":true,"shakakira":true,"wentao.zhang":true,"craigdmckenna":true,"rocket0191":true},"bugs":{"url":"https://github.com/sindresorhus/stringify-object/issues"},"license":"BSD-2-Clause","versions":{"0.1.5":{"name":"stringify-object","version":"0.1.5","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.5","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"87d8b63a3e5dfb189370622f241beeedf706ab3b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.5.tgz","integrity":"sha512-or5D3Vy0j5zIGa9OMVntmUvc1Cwnmn6sLrgwp6VWQFzfTqjA9mzOs22oA1/T5v9ICDRHnGrHoAWvldTzeeHLNg==","signatures":[{"sig":"MEUCIQDVPZIu1Xzk5MaDQuvsZ+4Y8IPLOAUzDynznjoVwnyzjAIgHXb7brMj44T2EPB/cs/z9QXqLKhMO6rFTggybC4nUWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stringify-object.js","_from":".","files":["stringify-object.js"],"engines":{"node":">=0.8.0"},"scripts":{"test":"mocha && phantomjs node_modules/mocha-phantomjs/lib/mocha-phantomjs.coffee test/test.html"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.3.5","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"devDependencies":{"chai":"~1.6.0","mocha":"~1.9.0","phantomjs":"~1.9.0","mocha-phantomjs":"2.0.1"}},"0.1.6":{"name":"stringify-object","version":"0.1.6","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.6","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"f6f66711ef72225ea6e82e6147e43b03e732e40c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.6.tgz","integrity":"sha512-C0iK3OM4mBbw42mQFVty0Lbeh5NHBt/p9L+m1A+2DKNXQMm1yNudt41lcQUqEDnTwsZ8eFuXluswMiT62oV38A==","signatures":[{"sig":"MEUCIEWTE0z/rkjRdIOA60M/2yO54tdZYBBB8CSiTwjQ9rXCAiEApRkWWXA1ZtuFZdH3git+GE9kw/1wNHFolW7kw9mvTTs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stringify-object.js","_from":".","files":["stringify-object.js"],"engines":{"node":">=0.8.0"},"scripts":{"test":"mocha && phantomjs node_modules/mocha-phantomjs/lib/mocha-phantomjs.coffee test/test.html"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.3.9","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"devDependencies":{"chai":"~1.6.0","mocha":"~1.9.0","phantomjs":"~1.9.0","mocha-phantomjs":"2.0.1"}},"0.1.3":{"name":"stringify-object","version":"0.1.3","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.3","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":"https://github.com/yeoman/stringify-object/issues","dist":{"shasum":"3a328c17e5b207324063ce8add11f94a0fbbbb57","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.3.tgz","integrity":"sha512-TKS0MAeHPfsWoeXlO292I22Ady0sz/zj6/ZFXeouuLPHunJwS1+i/yJF+9nzHtWlzQSg72SgzpP7T32pIkUJAQ==","signatures":[{"sig":"MEUCIEPk9huCbNgDVxKXgpuzI4BFUbwCpzqY1wDHf4/laTgfAiEAwD30f5o3kFjy6oOXvW9csIXhaEuRJB2k1XcE5eAMHuw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stringify-object.js","_from":".","engines":{"node":">=0.8.0"},"scripts":{"test":"mocha && phantomjs node_modules/mocha-phantomjs/lib/mocha-phantomjs.coffee test/test.html"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.2.17","description":"Stringify an object using custom indentation","directories":{},"devDependencies":{"chai":"~1.5.0","mocha":"~1.8.2","phantomjs":"~1.8.2-2","mocha-phantomjs":"~2.0.1"}},"0.1.4":{"name":"stringify-object","version":"0.1.4","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.4","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"9555131f0b6429498075d0d8ec6891334ae44d3f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.4.tgz","integrity":"sha512-nqlWnr3R0s6iUqEFH8Ed2YOVEK79hqD1OhILsAat7RZpKDyqqOQyxjSpaP4spd5GETCEE+XLMO4EAzJ97UItUg==","signatures":[{"sig":"MEQCIBRd0XBhmUm5xLloNtH6zs6aKnDq871ALr5SrEzHcl83AiBhtAkmI3ax82s6ZlQwv3KhIzEj9YpEcsJcE+AYSTm6sA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stringify-object.js","_from":".","files":["stringify-object.js"],"engines":{"node":">=0.8.0"},"scripts":{"test":"mocha && phantomjs node_modules/mocha-phantomjs/lib/mocha-phantomjs.coffee test/test.html"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.2.24","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"devDependencies":{"chai":"~1.6.0","mocha":"~1.9.0","phantomjs":"~1.9.0","mocha-phantomjs":"2.0.1"}},"0.1.7":{"name":"stringify-object","version":"0.1.7","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.7","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"bb54d1ceed118b428c1256742b40a53f03599581","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.7.tgz","integrity":"sha512-8TM2GX+Pf+u36NB/8l2ZdiqZFwEOMMX2uAZMRGKMPuzw4aaP1Vr1kl95zxhvId6eFIixhwckUn6obMV8ldIaSQ==","signatures":[{"sig":"MEUCIQC2rXokp5F0uWV5kvPLkaLzI/bMoKw8yT3evb4wVdmmUgIgTBdy8ABiZ/SZgjwQZTw5gvdnA5xUq+BSGY3yxobheeA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stringify-object.js","_from":".","files":["stringify-object.js"],"engines":{"node":">=0.8.0"},"scripts":{"test":"mocha && phantomjs node_modules/mocha-phantomjs/lib/mocha-phantomjs.coffee test/test.html"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.3.10","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"devDependencies":{"chai":"~1.6.0","mocha":"~1.9.0","phantomjs":"~1.9.0","mocha-phantomjs":"2.0.1"}},"0.1.8":{"name":"stringify-object","version":"0.1.8","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.8","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"463348f38fdcd4fec1c011084c24a59ac653c1ee","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.8.tgz","integrity":"sha512-wud/ZQEJjTrbwG3x8aD4OnPoo1Tb/AYXazI4CMEerAjLhWCou3OYhyBzoqRXbDVGC6/XDuAZxIWjVOv7nzjq+g==","signatures":[{"sig":"MEQCIDwfTf0PNbxwvlETCnTB3KH869EB5lq1Gbfzj5F1sCUMAiAPQus/vlF8YWUcNMup4PFHouqCa50yQLqy+cp+Mtj3sA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stringify-object.js","_from":".","files":["stringify-object.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha && phantomjs node_modules/mocha-phantomjs/lib/mocha-phantomjs.coffee test/test.html"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.3.25","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"devDependencies":{"chai":"*","mocha":"*","phantomjs":"~1.9.0","mocha-phantomjs":"2.0.1"}},"4.0.0":{"name":"stringify-object","version":"4.0.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@4.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"mischah","email":"mail@michael-kuehnel.de"},{"name":"zckrs","email":"mehdy.dara.fr@gmail.com"},{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},{"name":"mshima","email":"marceloshima@gmail.com"},{"name":"ruyadorno","email":"ruyadorno@hotmail.com"},{"name":"passy","email":"phartig@rdrei.net"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"xo":{"ignores":["test/fixtures/*.js"]},"dist":{"shasum":"57a379dacb5355ab3dbe93693ce974f1234f7c88","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-4.0.0.tgz","fileCount":4,"integrity":"sha512-MkMnWfxpZgZdd4z+EM7zmpPQZ6tCyC/vx+D1Mz6xbLHpzQwjHjSQCv7LEjDMArrnKCeMWn9KKeDEoifF2B6oaQ==","signatures":[{"sig":"MEUCIC4mQhTYDW4TO9fdgQuEFTt1xbmrf/9zsQjlvRv6J4v5AiEAlaKvNTpZWq6nToG6dwSbhDOtO+kgeetBrUhkTwaFYwc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9064,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhItcZCRA9TVsSAnZWagAAGnAP/3aYmur+86pnkOVRu8Zc\nERDAibqScDijvCw7HLrec3V2OIiwUHj6kQ+XFP9Gdwd0NI9FTfLE9lyLBXfJ\nyoZU4tA14quWeAwgUgzCNUYMsozw+O3tuozoVYZKgDcl+m7V8URM2Xvpj3Av\n2hgVJHoo3QE2RGQpDupq3NpOeopWfAp2fTI3URR1DsAdWLLa5bY2Gyo/gE1Q\nOxYrGW6WvapjwdLQVmRGdu6gt7M5yazfuhKClwFrY2tnIm084e/MFc7ec5i1\nDRlAvMw68p5x4Vil3bmfWKd5x0Q1Hcz9buynBC0sbkSQYssc8IbIZKNBTtPH\nPIgrUs+EyAprkaBy9mVtdc5fv4RoslFZyGjXmx5cQ+zvek2S+6D7oiKew3qp\nL403x6gK4qLTKNBKz9bK0qIwdPk4Ls/dQBt5JkKNRVnkGpLQHkXw9lXuZxKZ\n66gu5p9vo6NdwW2dmvx6EoL77J9SvfzigZUOFVKXqSxomjBRkjpyJ3sqLWnl\nZQRK8ldEnA1/Vf5DW19r7qqe7At9hBZcr955JAmb+fYw8T29u0OXez0xY6Jy\nlmx5PC3VPp1KZMdWobbtbz2BafEl7j4hkxQgKTatlSklJzRphRn/IwLLNSF2\n5XKSMH3f+f9pp4v0IrIBqwobKcs5MofD6MdNlXPlQ+CxvE7DCPUm/LQ3hwzb\nBFmt\r\n=AB5R\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"exports":"./index.js","gitHead":"f9e53f4e422510a2868e4876291058c69ca12b80","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"7.20.3","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"16.7.0","dependencies":{"is-obj":"^3.0.0","is-regexp":"^3.0.0","get-own-enumerable-property-symbols":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.44.0","ava":"^3.15.0"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object_4.0.0_1629673241414_0.9808759223241645","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"stringify-object","version":"4.0.1","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@4.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"mischah","email":"mail@michael-kuehnel.de"},{"name":"zckrs","email":"mehdy.dara.fr@gmail.com"},{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},{"name":"mshima","email":"marceloshima@gmail.com"},{"name":"ruyadorno","email":"ruyadorno@hotmail.com"},{"name":"passy","email":"phartig@rdrei.net"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"xo":{"ignores":["test/fixtures/*.js"]},"dist":{"shasum":"0d2153f3fb330ed0fdd7f17f07676173b0f9b764","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-4.0.1.tgz","fileCount":4,"integrity":"sha512-qpV1FBpN0R1gDAhCHIU71SYGZb35Te+gOQbQ6lYRmVJT7pF1NB8mkHeEJvyYNiHXw+fB4KIbeIjQl1rgiIijiA==","signatures":[{"sig":"MEUCIBETZNjL5umysVP77Vesm8GsDNl1ZzN6i4qLiOB29rIhAiEA7v+goLSngMFQYcA1Htgw/et3SXguq3FaIHXx6XVOvd8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9101,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC42BCRA9TVsSAnZWagAAlK4P/jeYDv3yojvB2W8wxzZ4\n0STwF0lbw4vPini360rIT2+DsYKGGv2fQo7dQ7AGpLuULtaW0XWVDLEbvHAn\nZHqfmOEU5YFZm5kL6TfZYWyc5qU+fpnpObVPoMZVLG6Gkw0I2v+UOnvhcEUZ\n52Y06KH+sW1Z9PCXbU+KboweekEXujVdbFXb8jlGmmd1MmLygso7nisBXE0D\nMnk3AxbB3lI5jo0btL/KNEcyVYqDwiMoN5Uh9gGbtpRWJH3/+SSD2tCMaPQ8\nwBZrjvJyHCO4m2ZZEqWAucfJ/Is6DAChh1ioNuv+wnpA0kFGuIL5TKr3N9Wq\nJIuBZhWSlgeExjaFgl7Ru5AolpM4NnTkPKCBsL3O/6c+/KiYxvYZpnxqtukw\nFnGX25itEDdalxw9AItfYdrudEFvnY4hev1uluwY2oW1swm1x12bQbqyfCS1\nC3GMmiN6Rxd2NSOU4xpFsoTDBASj7PuIkWNy55r9narDP7GAbQ9+68x0tjfX\n/uDSYgewr4zodppV9ayr29Of7eq6igrWQTmS5Lpkutpj2zWFgWgzJB6f8Sjx\nM95/Tfk4MihFLLOZVZO9b9dd/gV+fYDZuqKkjsCFs6snfK9d8VCKrSKFLUqP\nD8MmmV1blSYvBIXLjhLBWWZGG3lWyMGWjolgk/loSpqoPZvHdQ/5sQ9rvbRZ\ni8Aw\r\n=ngiI\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":"^12.20.0 || ^14.13.1 || >=16.0.0"},"exports":"./index.js","gitHead":"e6ef8e2aa276f79b86a04398df273d45e838a254","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"8.3.2","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"14.17.5","dependencies":{"is-obj":"^3.0.0","is-regexp":"^3.0.0","get-own-enumerable-property-symbols":"^3.0.2"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.44.0","ava":"^3.15.0"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object_4.0.1_1644924289771_0.3872779643219926","host":"s3://npm-registry-packages"}},"0.1.1":{"name":"stringify-object","version":"0.1.1","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":"https://github.com/yeoman/stringify-object/issues","dist":{"shasum":"20e79bafe35d41b7494a213775a02d5e4b7289dc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.1.tgz","integrity":"sha512-Jh+nC7IwyUOQDCF6fXx2al3ref4++N6kjrZC54bc7ffN9CHHxwh8bH7uQ0ilnyoX00nNvLy7YEcjHLaIH2Z5Ag==","signatures":[{"sig":"MEUCID2xaSIGr4n/RPa7mLejya1er0Le6cj4+t6hYOcyV26YAiEAh9f5LT6cbySpQBVWwZpO47M+KALE5RHcomUJPB7s0WA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/stringify-object.js","engines":{"node":">=0.8.0"},"scripts":{"test":"node node_modules/mocha/bin/mocha test/test-*.js"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.1.66","description":"Stringify an object using a custom indentation","directories":{},"devDependencies":{"mocha":"~1.7.4"}},"0.2.0":{"name":"stringify-object","version":"0.2.0","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD","_id":"stringify-object@0.2.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"832996ea55ab2aaa7570cc9bc0d5774adfc2c585","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.2.0.tgz","integrity":"sha512-dCW2ADe4JaWdtfV7/Livzt2Rw9weFT9M5ABsXsqa2q+eUq3uhdChzhTHjzZS/s4TcfIbcT5b3rpXuSEiEcPJ8A==","signatures":[{"sig":"MEYCIQDAOBSq6bp1BlHdxixZLHzpglkVkVJXkdb/Zf7JbZSnPAIhAIDK1iO+HVY+K7WjeEdxZoIMMuFXZSZLYe8XcbU/rtte","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stringify-object.js","_from":".","files":["stringify-object.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git://github.com/yeoman/stringify-object","type":"git"},"_npmVersion":"1.3.25","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"devDependencies":{"mocha":"*"}},"0.1.2":{"name":"stringify-object","version":"0.1.2","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.2","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":"https://github.com/yeoman/stringify-object/issues","dist":{"shasum":"48ed86433ee63fef1565f96c55cd7acfc35dbdd8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.2.tgz","integrity":"sha512-ADkFIp8POVLH3CkXg9PI3ql6vzp8yZVxjLJ/WnxWavVLLRQ17L/U/X0HfWP+N/YUcOiLy6cS9ukmr2FH9rHtPw==","signatures":[{"sig":"MEQCICNSDNOMyeUFSAt14NFaT4KWGdTfd5btFkGeiObnCJ3gAiAXsAZ66wEjssjyu68txU5MAxSNFOa8s1vCRKNveQpCWg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/stringify-object.js","engines":{"node":">=0.8.0"},"scripts":{"test":"node node_modules/mocha/bin/mocha test/test-*.js"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.1.66","description":"Stringify an object using a custom indentation","directories":{},"devDependencies":{"mocha":"~1.7.4"}},"0.2.1":{"name":"stringify-object","version":"0.2.1","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD","_id":"stringify-object@0.2.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"b58be50b3ff5f371038c545d4332656bfded5620","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.2.1.tgz","integrity":"sha512-WCCQpM+H16JMSOV3TofgSrN66GhrT9scGrp9IOmJIy/6AAHiPX2VpYFHKAsjxhEhtm/XIIh/1IMefeo7jipV0A==","signatures":[{"sig":"MEUCIGw9/R+7MDvBycE5xSBbE8kC6GGAeJ1Y8AYWkpqS9EYLAiEA4aVDrychWRRSbjR6G/SEmwXKSgUQuW+UiUipH6qIX3c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stringify-object.js","_from":".","files":["stringify-object.js"],"engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git://github.com/yeoman/stringify-object","type":"git"},"_npmVersion":"1.4.6","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"devDependencies":{"mocha":"*"}},"0.1.0":{"name":"stringify-object","version":"0.1.0","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"_id":"stringify-object@0.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":"https://github.com/yeoman/stringify-object/issues","dist":{"shasum":"726a5578ea896b5988544591496205c04231c1e8","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-0.1.0.tgz","integrity":"sha512-xnoPwvxeoIDdgp6nzWh8GmRmmuyVK+6+7wZzQs3IjBf8N+UUOrnXXIl7y8ia2z5cmxv5bFaOExXIkteOWiOTRg==","signatures":[{"sig":"MEYCIQDCRYIBDPg5c3wyNZJj/peAdxxqz3+kmKpJckj43aOX7gIhALylc5OxlkyDnQQYLut6e5vaL1FdqhG4Ef+Mo8KHAYi+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/stringify-object.js","engines":{"node":">=0.8.0"},"scripts":{"test":"node node_modules/mocha/bin/mocha test/test-*.js"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"licenses":[{"type":"BSD"}],"repository":{"url":"git://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"1.1.66","description":"Stringify an object using a custom indentation","directories":{},"devDependencies":{"mocha":"~1.7.4"}},"3.0.0":{"name":"stringify-object","version":"3.0.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@3.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"arthurvr","email":"contact@arthurverschaeve.be"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"xo":{"esnext":true},"dist":{"shasum":"f2c8c7a95486d666d484d7f4a9768c2068bf241b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-3.0.0.tgz","integrity":"sha512-Oa/bbVDcsF+UrWvMcdYhrr8AMxfu3XhFDGScQ9oPFGbCQnUEH/Lx0xEtzhJnqWck4MeFhiUTbzRoFmgN5dT75w==","signatures":[{"sig":"MEYCIQCSj9KOYABUgtnofMyeg7UswM0RBTFvV8gGxzOh5wU8zQIhAMx6vUEaSUeU5l/UsX+y4z+iHoTe2poOAVQyZC0SI91V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"f2c8c7a95486d666d484d7f4a9768c2068bf241b","engines":{"node":">=4"},"gitHead":"2df90dd992468c272df818b09fc89ee41f410169","scripts":{"test":"xo && mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"2.15.9","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"4.6.1","dependencies":{"is-obj":"^1.0.1","is-regexp":"^1.0.0"},"devDependencies":{"xo":"*","mocha":"*"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object-3.0.0.tgz_1478625870376_0.11327528418041766","host":"packages-18-east.internal.npmjs.com"}},"3.1.0":{"name":"stringify-object","version":"3.1.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@3.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"arthurvr","email":"contact@arthurverschaeve.be"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"xo":{"esnext":true},"dist":{"shasum":"1f938f47e6e42f259f3b3f42149f162965c86141","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-3.1.0.tgz","integrity":"sha512-+8/3MODoNoe+xQTZvZ0aW/t/k3ElXLIpzP2dacNxg0n6JfTRBP1quobnofTBVuhErvdcK+iJlggY8AQSF3V6/w==","signatures":[{"sig":"MEYCIQDK2FUOaDN42kmq2swUFM/7fOrEJKZY2yJUhhpbSCeJQQIhAM29uE3MqhMGQLNqqxSgfQwHoy8vw34FOfRsu52MMWao","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"1f938f47e6e42f259f3b3f42149f162965c86141","engines":{"node":">=4"},"gitHead":"44850b48de1978aa27877dde0228ac463ad510a7","scripts":{"test":"xo && mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"3.10.8","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"7.0.0","dependencies":{"is-obj":"^1.0.1","is-regexp":"^1.0.0","get-own-enumerable-property-symbols":"^1.0.1"},"devDependencies":{"xo":"*","mocha":"*"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object-3.1.0.tgz_1479960983877_0.7857932173646986","host":"packages-18-east.internal.npmjs.com"}},"3.2.0":{"name":"stringify-object","version":"3.2.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@3.2.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"arthurvr","email":"contact@arthurverschaeve.be"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"xo":{"esnext":true},"dist":{"shasum":"94370a135e41bc048358813bf99481f1315c6aa6","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-3.2.0.tgz","integrity":"sha512-QSO3+nAMH+6BBn9B2C3puzbywg7jC1o8rPJRRWy3AbBkGhnyksMHGQT3jknS16AvpsZv+ZgWPCsz3C9w/o/5EQ==","signatures":[{"sig":"MEUCIQDBI3cn2Jka0uIVzBKRiNMYrS9kjm085lSF1C+vWGwYzgIgLkDaUuFhetfSK/UYNh99G3JGq3DNyNUKD18Uj45Y5bk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"94370a135e41bc048358813bf99481f1315c6aa6","engines":{"node":">=4"},"gitHead":"916cee3aa073db5ca9485a5ea5a51080636e9aa1","scripts":{"test":"xo && mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"2.15.11","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"4.7.3","dependencies":{"is-obj":"^1.0.1","is-regexp":"^1.0.0","get-own-enumerable-property-symbols":"^1.0.1"},"devDependencies":{"xo":"*","mocha":"*"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object-3.2.0.tgz_1489556044009_0.859791811555624","host":"packages-18-east.internal.npmjs.com"}},"3.2.1":{"name":"stringify-object","version":"3.2.1","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@3.2.1","maintainers":[{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"arthurvr","email":"contact@arthurverschaeve.be"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"hemanth","email":"hemanth.hm@gmail.com"},{"name":"mischah","email":"mail@michael-kuehnel.de"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"zckrs","email":"mdara@eleven-labs.com"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"2720c2eff940854c819f6ee252aaeb581f30624d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-3.2.1.tgz","integrity":"sha512-jPcQYw/52HUPP8uOE4kkjxl5bB9LfHkKCTptIk3qw7ozP5XMIMlHMLjt00GGSwW6DJAf/njY5EU6Vpwl4LlBKQ==","signatures":[{"sig":"MEUCIEGL2KdslnE+/COwjq2gywFh7S0YoV4N7NxpFdIf2Q0UAiEAhvcUXy0JDHxzyhZ2+x1LmJbdBIRr3bGX6H6L/BI2asQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"engines":{"node":">=4"},"gitHead":"a0114209e1152e076bc1b81e6e37954ce620963b","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"5.0.3","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"8.1.3","dependencies":{"is-obj":"^1.0.1","is-regexp":"^1.0.0","get-own-enumerable-property-symbols":"^2.0.1"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object-3.2.1.tgz_1506148259392_0.5557334495242685","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"stringify-object","version":"3.3.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@3.3.0","maintainers":[{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"mischah","email":"mail@michael-kuehnel.de"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"zckrs","email":"mdara@eleven-labs.com"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"703065aefca19300d3ce88af4f5b3956d7556629","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-3.3.0.tgz","fileCount":4,"integrity":"sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==","signatures":[{"sig":"MEYCIQDTeSyoHmVBMxY/zgyet4AgTR59BvQkWKgHu+IOkltNKQIhAJAxU2FzR0cs1qKeKgrav/FFyTmJtVxKsInQwaKA5mhj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8120,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxjgtCRA9TVsSAnZWagAAbbQP/A0ib1IzFePkP7lRbEVk\nGF6Qn1vm/8QANj5yWhwRc3zigNukBkmpJfcXO0QeYuSY3g/0ZYAUNHChCEk3\nLx8K6EISPE8qR4uP+rDq3juiRf9zGXZ8e4J6h4EBfkZV5+jaV8hBbyIYHLo5\nVaj5/XNghVdN38FqRa4GZA+M3HcibmwRo+BSoOQzo65SC/NlUVQVVgJs8eTO\nhqmm3oO5v+aBJ1Plru1JwjoZnd34ckkMJv8SMrk9+6mDPSCR+aSQkhWggd//\nCrQ2kwRNewVJ5hgIVuAqlQZBGq1tszYjo+rQxE9tjQAoyor9cWIShynJgFgH\nrX/AlVjzogNs1At9gCCWyp6FG7hnIiCN6QOrpiWPOyQrC/GzbJINnNbGd+j1\nviNEYZ0jbGZjNeqPszd4cDMRV9fjKlCnGdP1B7vyl1+6JSaVcjXhV8GFuUfV\nOG2XEEKLYEhXNko0kX4XvX4z03hvgbkjG4qRCyCsrSAOeXcx588Q3T6yQavj\nheAbinQDbHflWjgf3jmnvFmuN1iYR2d08PCxdowGAR3TGsdpTrRkZC7ZvH1O\nbq2Sggd/8QjMazdPsHTcNAuIrFLlierUzDHDbyVUQZT1wnxPVbE58yMvVsab\ngkfp49VXYr/8pdpRRSEBFrUMaE8aEM5yr3PczN0NMPkW4R8VezYpEdiaAJ72\nfJbc\r\n=pIPq\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"},"gitHead":"1f8896f722645e0af2102311933c370de4236437","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"6.4.1","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"10.12.0","dependencies":{"is-obj":"^1.0.1","is-regexp":"^1.0.0","get-own-enumerable-property-symbols":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object_3.3.0_1539717164830_0.4892920775398393","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"stringify-object","version":"3.2.2","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@3.2.2","maintainers":[{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"arthurvr","email":"contact@arthurverschaeve.be"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"hemanth","email":"hemanth.hm@gmail.com"},{"name":"mischah","email":"mail@michael-kuehnel.de"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"zckrs","email":"mdara@eleven-labs.com"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"9853052e5a88fb605a44cd27445aa257ad7ffbcd","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-3.2.2.tgz","integrity":"sha512-O696NF21oLiDy8PhpWu8AEqoZHw++QW6mUv0UvKZe8gWSdSvMXkiLufK7OmnP27Dro4GU5kb9U7JIO0mBuCRQg==","signatures":[{"sig":"MEYCIQCv67s38/8L9AR2Bp1po6xEib9/6sc5DSqGJZT/x5v5WgIhAL3zC5i1BvgofXZSGC5x1tm8gjzSzqtRuCO/4s4Vrqyh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"engines":{"node":">=4"},"gitHead":"43a65ce5b1afc3826ce6f1a2ab40e3397476bc6a","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"5.5.1","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"8.9.1","dependencies":{"is-obj":"^1.0.1","is-regexp":"^1.0.0","get-own-enumerable-property-symbols":"^2.0.1"},"devDependencies":{"xo":"*","ava":"*"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object-3.2.2.tgz_1517847586075_0.1863176766782999","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"stringify-object","version":"2.0.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD","_id":"stringify-object@2.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"08f4b851b3fe92ddd4f01c6177161c8503abe29b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-2.0.0.tgz","integrity":"sha512-eyGsNzGUOKYtr3uDfQ36eSypnk7P4FBC0Ba5VcFco9rOYgMqO0MA/+LiN+tE4CC8W3rZuxGhi/jsE3C7z4ZrKg==","signatures":[{"sig":"MEUCIQCmdaByRt3OuLpqvNOlnikfylaXhywv4rwdLNeEKuJWXAIgQXpJwZMTI3rBAwMihXygFXKw3iLcr16ICsX1KEM4nGc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"08f4b851b3fe92ddd4f01c6177161c8503abe29b","engines":{"node":">=0.10.0"},"gitHead":"ffca01dae210010f78772a3a4cac1ac1c8753323","scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"2.9.0","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"0.12.2","devDependencies":{"mocha":"*"}},"2.1.0":{"name":"stringify-object","version":"2.1.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@2.1.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"0569d5ad2a5bd87a35fe88b75df0938dba0f4726","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-2.1.0.tgz","integrity":"sha512-91/L1+3J5C0W9XV1sV296XoGYH/b1+G9KxIMSXDAIzmy4AMhlIcBcr9VpNRrzEx32NaDEh5w+xZ/pLrIsyWoog==","signatures":[{"sig":"MEYCIQDLHAouG9lp4Ap+XjKSyoyfYvBL2ZLmjosJTjQvrRv/swIhAIl97mxovG5CFACljuuMjO/PLWJ4u4rY8swgNp8bEOrl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"0569d5ad2a5bd87a35fe88b75df0938dba0f4726","engines":{"node":">=0.10.0"},"gitHead":"370adf9ba4a59779c8a892300e4cf423d4f03244","scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"2.11.2","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"0.12.5","devDependencies":{"mocha":"*"}},"2.3.1":{"name":"stringify-object","version":"2.3.1","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@2.3.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"arthurvr","email":"contact@arthurverschaeve.be"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"574449a1ba11332fdbe23cb9f983d90242cde8ba","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-2.3.1.tgz","integrity":"sha512-eNl9TL4C2byPAPtdyokduHhhiGTPKEMes+wqEpGI3awI+L2t/ZuNsSqprxYLBbwEKBG55HutYeJgCHHSwdK9wQ==","signatures":[{"sig":"MEUCIEN8ggEFXwmQKiW0ysto7hZCUuXUh3YY4r67iqORyCqQAiEA4U3iDoWCdbLsJL9I3dquSqeF4NsY5BHNYbXbHtsvSQc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"574449a1ba11332fdbe23cb9f983d90242cde8ba","engines":{"node":">=0.10.0"},"gitHead":"4b5ba850150cc4a1cfa23cc59395f29b2b607f5b","scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/yeoman/stringify-object","type":"git"},"_npmVersion":"2.14.7","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"4.2.1","dependencies":{"is-regexp":"^1.0.0","is-plain-obj":"^1.0.0"},"devDependencies":{"mocha":"*"}},"2.4.0":{"name":"stringify-object","version":"2.4.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@2.4.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"arthurvr","email":"contact@arthurverschaeve.be"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"c62d11023eb21fe2d9b087be039a26df3b22a09d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-2.4.0.tgz","integrity":"sha512-7DEUV2xhXMhELXkUDOGkynU8+YUKw9a3iiYFDZqJ3adplg1RU8V2TBkZFKoLe4W6xzwGyxEmOciGwJNiH9Z00Q==","signatures":[{"sig":"MEQCIFcQVjCTs5cHal76Xkcqsk8v69Pu0zHWEmpkw7RAFhRvAiAOAINVaf2Jy+Clw5TSFrB0UbxY7V+kEwNSS98sapsgfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"c62d11023eb21fe2d9b087be039a26df3b22a09d","engines":{"node":">=0.10.0"},"gitHead":"5869b0de4ce0f839d30a5194537c3abd57805a03","scripts":{"test":"mocha"},"_npmUser":{"name":"sboudrias","email":"admin@simonboudrias.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"3.5.3","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"5.11.1","dependencies":{"is-regexp":"^1.0.0","is-plain-obj":"^1.0.0"},"devDependencies":{"mocha":"*"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object-2.4.0.tgz_1465857986799_0.9020727449096739","host":"packages-12-west.internal.npmjs.com"}},"2.2.0":{"name":"stringify-object","version":"2.2.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@2.2.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"d3d23361531659290bbe0ca8a99d25852dc60108","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-2.2.0.tgz","integrity":"sha512-xQS0SJjpxhRc62UwUtTvZvGSpt/y/9JZjLiEKGg4C73HzkYvtKlArw9SAitG3JfTDb1RmED8z04Rqt1f74V9EQ==","signatures":[{"sig":"MEYCIQCtGn4W5iFbJ9q6X1m4s5kiDN1C/b/eliTCvDte3ROkHwIhAP2Pc2c092zkADAxHJnZlIrhklZU8otNTIVN2IcTroy0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"d3d23361531659290bbe0ca8a99d25852dc60108","engines":{"node":">=0.10.0"},"gitHead":"e00c5d62896dc0ca380f4c1b227bf3b8dc03a67a","scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/yeoman/stringify-object","type":"git"},"_npmVersion":"2.11.2","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"0.12.5","dependencies":{"is-regexp":"^1.0.0"},"devDependencies":{"mocha":"*"}},"2.3.0":{"name":"stringify-object","version":"2.3.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@2.3.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"arthurvr","email":"contact@arthurverschaeve.be"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"c85de22f07e403e6915c3c40eb31b91b76c76c1b","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-2.3.0.tgz","integrity":"sha512-ABXHmWzjebECi3PgYvxov2lAKCplPSNEZgIU0VKGg7JzhC1c1W6HoZAuXHz+9F92OklHZDDcrH5M+eT0LoTU6g==","signatures":[{"sig":"MEUCIQDRf6UaT2dj+zVnytgWMrsPtnjYO5/qTAGnXzIlNHluSAIgIS/FIeu8V9Nfv7TM5W9YjtGSFPo9O25InMB+u/V42+A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"c85de22f07e403e6915c3c40eb31b91b76c76c1b","engines":{"node":">=0.10.0"},"gitHead":"85c32ed095a40af16b45acf3bbb12a3915dede6c","scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/yeoman/stringify-object","type":"git"},"_npmVersion":"2.11.2","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"0.12.5","dependencies":{"is-regexp":"^1.0.0","is-plain-obj":"^1.0.0"},"devDependencies":{"mocha":"*"}},"6.0.0":{"name":"stringify-object","version":"6.0.0","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","license":"BSD-2-Clause","repository":{"type":"git","url":"git+https://github.com/sindresorhus/stringify-object.git"},"funding":"https://github.com/sponsors/sindresorhus","author":{"name":"Sindre Sorhus","email":"sindresorhus@gmail.com","url":"https://sindresorhus.com"},"type":"module","exports":"./index.js","sideEffects":false,"engines":{"node":">=20"},"scripts":{"test":"xo && ava"},"keywords":["object","stringify","pretty","print","dump","format","type","json"],"dependencies":{"get-own-enumerable-keys":"^1.0.0","is-identifier":"^1.0.1","is-obj":"^3.0.0","is-regexp":"^3.1.0"},"devDependencies":{"ava":"^6.4.1","xo":"^1.2.2"},"xo":{"ignores":["test/fixtures/*.js"]},"_id":"stringify-object@6.0.0","gitHead":"dd7c193e7d343ae4b86019f9104d382b30541da8","bugs":{"url":"https://github.com/sindresorhus/stringify-object/issues"},"homepage":"https://github.com/sindresorhus/stringify-object#readme","_nodeVersion":"22.12.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-6f94vIED6vmJJfh3lyVsVWxCYSfI5uM+16ntED/Ql37XIyV6kj0mRAAiTeMMc/QLYIaizC3bUprQ8pQnDDrKfA==","shasum":"1f6a11ada4b8619657c1780816f278a186b5bcac","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-6.0.0.tgz","fileCount":4,"unpackedSize":10459,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIGztbUKe/QPnNCHX6pnnzHBmlFMJQ2CHgiMtikxUxBvMAiBEKOEBCYB8sUFVNmCXfsQhjWfMvxDFjsHYSnEZZxvTDg=="}]},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"directories":{},"maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/stringify-object_6.0.0_1757284121531_0.6084830489419446"},"_hasShrinkwrap":false},"5.0.0":{"name":"stringify-object","version":"5.0.0","keywords":["object","stringify","pretty","print","dump","format","type","json"],"author":{"url":"https://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD-2-Clause","_id":"stringify-object@5.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"mischah","email":"mail@michael-kuehnel.de"},{"name":"zckrs","email":"mehdy.dara.fr@gmail.com"},{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},{"name":"mshima","email":"marceloshima@gmail.com"},{"name":"ruyadorno","email":"ruyadorno@hotmail.com"},{"name":"passy","email":"phartig@rdrei.net"}],"homepage":"https://github.com/yeoman/stringify-object#readme","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"xo":{"ignores":["test/fixtures/*.js"]},"dist":{"shasum":"d5b05649fedaf8860640471641f70906fea7f351","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-5.0.0.tgz","fileCount":4,"integrity":"sha512-zaJYxz2FtcMb4f+g60KsRNFOpVMUyuJgA51Zi5Z1DOTC3S59+OQiVOzE9GZt0x72uBGWKsQIuBKeF9iusmKFsg==","signatures":[{"sig":"MEUCIGN4bdRcQJzk6W2dPtsy8/vvn8Jya/zIvnHqCvbsyzE9AiEA8NWNewBU6yMpbGnIQWO9QjRlsp4a/LdkFtG7ZWfE7bY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8625,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxLt5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4Bw/+JMOR+TdqiXqJyFvz10JBxV14+D4NptoMXH1DWkJpp3UIo9Pf\r\niTF5xDYLmJE7Uvg1cIaxpBI7oMF2HcY2M0ibifMy9FEzFDHCyvxkn7iiEOJ/\r\nXN122T8+mAYu+aJ4/VisFUwogJz36vy0bGwHwSR0Kj2J0+vKeN5EXZ/nxZ34\r\n5GUI+V2M3pBhfaKoiP4JPtnyyjovtU25INtrfhuCAxr9SqvcQUJOWgxhBub+\r\nxN4gnO5Ya+jvWzpW1C5x/ZMNuXceDR5xtmHvkGZYv0bPgeUW4Lq3KqA5WlCK\r\nsfMq3O9riszMy+71iwDO8JCv/G3HStvrs/g8mE1315FbNQPenauYws61SYLR\r\nRmMMM4eV1C6e9df/kiAPmI3E60g16x8BteQYM0ydRJb1hpdqF7kAVAvWLH3T\r\nfwuEl1Lbom3H//2DxKzO2i67JTm2MHhzVj3AvJyhVQ1d9JmjMoE+mouqNgfH\r\n6aqqf6GiabPnvwC2pIm4lamDqGATq2NIkVmAjmEgSSx+LZNRn1jygH+WTmxK\r\n+Y5JLXQowypAjIeW3feG0Z2ydIArKw95ALTVcRJGEnaoonKfo0mtwjL7CTTY\r\ndYB2U+AyvzqRRI10UPKu5FHtOzaccolHL2N109ZbCtEIIe0xOaOVsdHftAsl\r\n84UzGIBTk/gWGHY7d6//kJAl5sKfb3ENcJw=\r\n=K3Fq\r\n-----END PGP SIGNATURE-----\r\n"},"type":"module","engines":{"node":">=14.16"},"exports":"./index.js","funding":"https://github.com/yeoman/stringify-object?sponsor=1","gitHead":"6022360de7e5fee0db1fb73a6532707686086447","scripts":{"test":"xo && ava"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"git+https://github.com/yeoman/stringify-object.git","type":"git"},"_npmVersion":"9.2.0","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"19.4.0","dependencies":{"is-obj":"^3.0.0","is-regexp":"^3.1.0","get-own-enumerable-keys":"^1.0.0"},"_hasShrinkwrap":false,"devDependencies":{"xo":"^0.53.1","ava":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/stringify-object_5.0.0_1673837433149_0.7885009128550664","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"stringify-object","version":"1.0.0","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD","_id":"stringify-object@1.0.0","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"333875ef8fd210f696d70b374146be84646bc346","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-1.0.0.tgz","integrity":"sha512-xdoHGw29tUfio1UGbLGtgGsTCf9AG9K62WPwvFFR4YAahzdfMIVQkvL1EEundPq74pkeVgBkx9EaQ1N7FUbfeA==","signatures":[{"sig":"MEUCIQD2lFBQgfC8xiHmp9kQ83rxr11e+Iqo/Q0m9UXZpwlM3wIgWFObRzV5C9aZzBqi9OZyrh5UhsU37bvo07omZhlN7Vc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"333875ef8fd210f696d70b374146be84646bc346","engines":{"node":">=0.10.0"},"gitHead":"5b364c23e7936db824bfb811f6f5c8abd0a507e0","scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/yeoman/stringify-object","type":"git"},"_npmVersion":"1.4.21","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"devDependencies":{"mocha":"*"}},"1.0.1":{"name":"stringify-object","version":"1.0.1","keywords":["object","stringify","pretty","print","dump","format"],"author":{"url":"http://sindresorhus.com","name":"Sindre Sorhus","email":"sindresorhus@gmail.com"},"license":"BSD","_id":"stringify-object@1.0.1","maintainers":[{"name":"sindresorhus","email":"sindresorhus@gmail.com"},{"name":"addyosmani","email":"addyosmani@gmail.com"},{"name":"paulirish","email":"paul.irish@gmail.com"},{"name":"passy","email":"phartig@rdrei.net"},{"name":"sboudrias","email":"admin@simonboudrias.com"},{"name":"eddiemonge","email":"eddie+npm@eddiemonge.com"}],"homepage":"https://github.com/yeoman/stringify-object","bugs":{"url":"https://github.com/yeoman/stringify-object/issues"},"dist":{"shasum":"86d35e7dbfbce9aa45637d7ecdd7847e159db8a2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/stringify-object/-/stringify-object-1.0.1.tgz","integrity":"sha512-RDGXBy5t6y1birIZGEgKW1mE+cG9XqXQT23wKLIcMzvm8zZZrCWWUxLZndhuV2zJ1ZCDjm/QnWED8/6rfIzg4g==","signatures":[{"sig":"MEYCIQD1ldYrOHVAbiQlVgdIfvT6jF/tjBttCuAz/ZJxYjDwmgIhAIEUf7a3McId4s87OdNWaOduYWFq/WU8pXpoK8KTfdSU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"86d35e7dbfbce9aa45637d7ecdd7847e159db8a2","engines":{"node":">=0.10.0"},"gitHead":"be04e8f11e3339fc7b1a8b6ebd71615bdb0e86e6","scripts":{"test":"mocha"},"_npmUser":{"name":"sindresorhus","email":"sindresorhus@gmail.com"},"repository":{"url":"https://github.com/yeoman/stringify-object","type":"git"},"_npmVersion":"2.5.1","description":"Stringify an object/array like JSON.stringify just without all the double-quotes","directories":{},"_nodeVersion":"0.12.0","devDependencies":{"mocha":"*"}}},"name":"stringify-object","time":{"0.1.5":"2013-08-19T15:42:41.309Z","0.1.6":"2013-09-01T15:13:18.822Z","0.1.3":"2013-04-06T17:23:16.203Z","0.1.4":"2013-06-05T22:34:37.751Z","0.1.7":"2013-09-19T11:19:36.678Z","0.1.8":"2014-01-29T22:55:13.952Z","4.0.0":"2021-08-22T23:00:41.568Z","4.0.1":"2022-02-15T11:24:49.898Z","0.1.1":"2012-12-11T22:13:43.501Z","0.2.0":"2014-01-29T23:08:02.949Z","0.1.2":"2012-12-12T22:46:12.425Z","0.2.1":"2014-04-30T22:53:23.169Z","0.1.0":"2012-12-11T20:26:32.462Z","3.0.0":"2016-11-08T17:24:32.104Z","modified":"2025-09-26T17:22:49.304Z","3.1.0":"2016-11-24T04:16:25.694Z","3.2.0":"2017-03-15T05:34:05.790Z","3.2.1":"2017-09-23T06:30:59.537Z","3.3.0":"2018-10-16T19:12:44.974Z","3.2.2":"2018-02-05T16:19:46.168Z","2.0.0":"2015-05-08T22:18:15.283Z","2.1.0":"2015-07-03T21:31:41.203Z","created":"2012-12-11T20:26:30.229Z","2.3.1":"2015-11-07T05:35:19.817Z","2.4.0":"2016-06-13T22:46:27.425Z","2.2.0":"2015-07-07T12:32:20.717Z","2.3.0":"2015-07-28T17:12:48.562Z","6.0.0":"2025-09-07T22:28:41.706Z","5.0.0":"2023-01-16T02:50:33.300Z","1.0.0":"2014-08-14T09:56:15.636Z","1.0.1":"2015-03-04T12:20:39.851Z"},"readmeFilename":"readme.md","homepage":"https://github.com/sindresorhus/stringify-object#readme"}