{"maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"keywords":["xml","sax","parser","xpath","document"],"dist-tags":{"beta":"2.0.0-beta.3","latest":"2.0.3"},"author":{"name":"Nick Farina","email":"nfarina@gmail.com","url":"http://nfarina.com"},"description":"A lightweight XML Document class for JavaScript.","readme":"[![Build Status](https://travis-ci.org/nfarina/xmldoc.svg)](https://travis-ci.org/nfarina/xmldoc)\n[![Coverage Status](https://coveralls.io/repos/github/nfarina/xmldoc/badge.svg?branch=master)](https://coveralls.io/github/nfarina/xmldoc?branch=master)\n\n## Introduction\n\n`xmldoc` lets you parse XML documents with ease. It's a lightweight XML document class with a single dependency on the excellent [`sax`][sax] parser.\n\nFor more on why I wrote this class, see the [blog post][blog].\n\nAs of version 2.0, `xmldoc` fully supports TypeScript and can be imported in both CommonJS and ESM environments.\n\n[blog]: http://nfarina.com/post/34302964969/a-lightweight-xml-document-class-for-nodejs-javascript\n\n## Release Notes\n\nSee [CHANGELOG.md](./CHANGELOG.md) for details.\n\n## Installation\n\n```bash\nnpm install xmldoc\n# or\nyarn add xmldoc\n```\n\nOr just download the repository and include it in your `node_modules` directly. Or just download the [single JS file][blob]!\n\n[blob]: https://github.com/nfarina/xmldoc/blob/master/lib/xmldoc.js\n\n## Usage\n\n### CommonJS (Node.js)\n\n```js\nconst { XmlDocument } = require(\"xmldoc\");\n\nconst document = new XmlDocument(\"<some>xml</some>\");\n\n// do things\n```\n\n### ESM / TypeScript\n\n```ts\n// ESM environments\nimport { XmlDocument } from \"xmldoc\";\n\nconst document = new XmlDocument(\"<some>xml</some>\");\n```\n\n### React Native\n\nIf you're using React Native, you may need to install `buffer` and `stream` separately:\n\n```bash\nnpm install buffer stream xmldoc\n```\n\n## Classes\n\nThe primary exported class is `XmlDocument`, which you'll use to consume your XML text. `XmlDocument` contains a hierarchy of `XmlElement` instances representing the XML structure.\n\nBoth `XmlElement` and `XmlDocument` contain the same members and methods you can call to traverse the document or a subtree.\n\n## Members\n\n| Member name                                      | Default empty value | Description                                                                                                                                                                      |\n| :----------------------------------------------- | :------------------ | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `name`                                           |                     | Node name, like \"tat\" for `<tat>`. XML \"namespaces\" are ignored by the underlying [sax-js](https://github.com/isaacs/sax-js) parser: so `<office:body>` becomes `\"office:body\"`. |\n| `attr`                                           | `{}`                | Object dict containing attribute properties. Like `bookNode.attr.title` for `<book title=\"...\">`.                                                                                |\n| `val`                                            | `\"\"`                | String \"value\" of the node, if any. Like `\"world\"` for `<hello>world</hello>`.                                                                                                   |\n| `children`                                       | `[]`                | Array of `XmlElement` children of the node.                                                                                                                                      |\n| `firstChild`                                     |                     | What it sounds like. `null` if no children.                                                                                                                                      |\n| `lastChild`                                      |                     | What it sounds like. `null` if no children.                                                                                                                                      |\n| `line`, `column`, `position`, `startTagPosition` |                     | Information about the element's original position in the XML string.                                                                                                             |\n\n## Methods\n\nAll methods with `child` in the name operate only on direct children; they do not do a deep/recursive search.\n\nIt's important to note that `xmldoc` is designed for when you know exactly what you want from your XML file. For instance, it's great for parsing API responses with known structures, but it's not great at teasing things out of HTML documents from the web.\n\nIf you need to do lots of searching through your XML document, I highly recommend trying a different library like [node-elementtree](https://github.com/racker/node-elementtree).\n\n### eachChild(func)\n\nSimilar to [underscore's][underscore] `each` method, it will call `func(child, index, array)` for each child of the given node.\n\n### childNamed(name)\n\nPass it the name of a child node and it will search for and return the first one found, or `undefined`.\n\n### childrenNamed(name)\n\nLike `childNamed` but returns all matching children in an array, or `[]`.\n\n### childWithAttribute(name,value)\n\nSearches for the first child with the given attribute value. You can omit `value` to just find the first node with the given attribute defined at all.\n\n### descendantWithPath(path)\n\nSearches for a specific \"path\" using dot notation. Example:\n\n```xml\n<book>\n  <author>\n    <name isProper=\"true\">George R. R. Martin</name>\n    ...\n  </author>\n  ...\n</book>\n```\n\nIf you just want the `<name>` node and you have the `XmlElement` for the `<book>` node, you can say:\n\n```js\nvar nameNode = bookNode.descendantWithPath(\"author.name\"); // return <name> node\n```\n\n### valueWithPath(path)\n\nJust like `descendantWithPath`, but goes deeper and extracts the `val` of the node. Example:\n\n```js\nvar authorName = bookNode.valueWithPath(\"author.name\"); // return \"George R. R. Martin\"\n```\n\nYou can also use the `@` character to request the value of a particular _attribute_ instead:\n\n```js\nvar authorIsProper = bookNode.valueWithPath(\"author.name@isProper\"); // return \"true\"\n```\n\nThis is not [XPath][]! It's just a thing I made up, OK?\n\n### toString([options])\n\nThis is just an override of the standard JavaScript method, it will give you a string representation of your XML document or element. Note that this is for debugging only! It is not guaranteed to always output valid XML.\n\nThe default implementation of `toString()`, that is, the one you get when you just `console.log(\"Doc: \" + myDoc)` will pretty-print the XML with linebreaks and indents. You can pass a couple options to control the output:\n\n```js\nxml.toString({ compressed: true }); // strips indents and linebreaks\nxml.toString({ trimmed: true }); // trims long strings for easier debugging\nxml.toString({ preserveWhitespace: true }); // prevents whitespace from being removed from around element values\nxml.toString({ html: true }); // uses HTML self-closing tag rules for elements without children\n```\n\nPutting it all together:\n\n```js\nvar xml = \"<author><name>looooooong value</name></author>\";\nconsole.log(\n  \"My document: \\n\" + new XmlDocument(xml).toString({ trimmed: true }),\n);\n```\n\nPrints:\n\n    My Document:\n    <hello>\n      loooooooo…\n    </hello>\n\n## Feedback\n\nFeel free to file issues or hit me up on [X][x].\n\n[underscore]: http://underscorejs.org\n[XPath]: http://en.wikipedia.org/wiki/XPath\n[x]: http://twitter.com/nfarina\n[sax]: https://github.com/isaacs/sax-js\n","repository":{"type":"git","url":"git://github.com/nfarina/xmldoc.git"},"users":{"aalpern":true,"daffyfeng":true,"robingronlund":true,"shanewholloway":true},"bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"license":"MIT","versions":{"0.1.0":{"name":"xmldoc","version":"0.1.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.1.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"dist":{"shasum":"a88fe24190124af337b7fb4cb074f711297ade21","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.1.0.tgz","integrity":"sha512-ZU5ZpAPvOhNZcjQnbEL9qMY+Aagw96JAQZ3/Jq20iWE4+oiUC/uTEsdOJpJvU9ZaylTB6SU8LlAZRmcNb/byJg==","signatures":[{"sig":"MEUCIH3QpuBhc6eoFRii+lkdpexW1sziijtH+mlmTRUNEPZMAiEA7jhEp/gN22u3NFjUuR6DYoMyUxsqrHZXLoJDdIWSAi0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc-js.git","type":"git"},"_npmVersion":"1.1.63","description":"A lightweight XML Document class for JavaScript.","directories":{},"dependencies":{"sax":"0.4.2"}},"0.1.1":{"name":"xmldoc","version":"0.1.1","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.1.1","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"dist":{"shasum":"6e2025336e436f83893f69f5a969902f0bba6282","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.1.1.tgz","integrity":"sha512-RPkl0YZL4Gyw/oePUTlr79qUvkd1njy/kYWxthg1iusgBHH80dCzEKsKTsr+XqtH9nHTrl2vGswbFxKjCh4UJw==","signatures":[{"sig":"MEYCIQC2+lxszSWjGV6Y8l71ElA3gONaEfROY7SDSHNdC7y50wIhAKEzcuCJn+7kADiEzWwSeGCfbD2aITAxl6C0AcRMe8tt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc-js.git","type":"git"},"_npmVersion":"1.1.63","description":"A lightweight XML Document class for JavaScript.","directories":{},"dependencies":{"sax":"0.4.2"}},"0.1.2":{"name":"xmldoc","version":"0.1.2","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.1.2","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"d3f67ed148d056c67e2ca674487bfb05dac862a2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.1.2.tgz","integrity":"sha512-oFJMmRr43hPjq0ho5zgGR8AE1i8678nas3GcWKb6oyt+x4iENW/5bDcXbFHkjg1cn8Rhno8feQcOTnWngOnSSA==","signatures":[{"sig":"MEUCIG1Zj6S5ZE9s/pddWDmIGivs1vxvCszqW1y0fwMoYcbtAiEAjs4lztL6aYuUSotbXzofrwUW8TVcQLMc9mxM5XqoILQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"1.2.32","description":"A lightweight XML Document class for JavaScript.","directories":{},"dependencies":{"sax":"0.4.2"}},"0.1.3":{"name":"xmldoc","version":"0.1.3","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.1.3","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"154c95922fbf9cd6b9ffa36fecb84f64585e529d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.1.3.tgz","integrity":"sha512-IkcoGjELaQ94JT+2xkLjlX/4adix+0zec2oSTPNMv+7zXetewYdQTQPCj3rpBiwTbsEOqpUsPHYGCJAHPG3K2w==","signatures":[{"sig":"MEYCIQCHLhmMdoqEaWquLGNGrM1iAebCr8AlYDiH0IddicrYDwIhAOopc649u1W9jI90VGaz+B5ncq2mKNGjKittZ7yhqV+U","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"154c95922fbf9cd6b9ffa36fecb84f64585e529d","gitHead":"9a52a3d81dfd5255340b8cd0c1a359efda6c2c0a","scripts":{},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"1.4.28","description":"A lightweight XML Document class for JavaScript.","directories":{},"dependencies":{"sax":"~0.6.1"}},"0.1.4":{"name":"xmldoc","version":"0.1.4","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.1.4","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"c28809e798114b61fb25d426ce72f150ea18a5f8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.1.4.tgz","integrity":"sha512-rlwAYdHjD4j/lbXK6tgJKOaHiPzqd5KlmgQnrskFLmfozOKll0aa9YTYwolBUIj0EHKTfzcmhu7J1MoMg7VrEw==","signatures":[{"sig":"MEUCIQCCnSkcFmf1BhFsQIv5H7WP81f252cmxejrg/3SixpwHQIgUwDB89CtYUZu0Bq8+Cy0Wt1uG5EQY0MqTF5MMIstpTQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"c28809e798114b61fb25d426ce72f150ea18a5f8","gitHead":"ebd262dab9e8c70b3b904d21acee8b8a52c736fd","scripts":{},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"1.4.28","description":"A lightweight XML Document class for JavaScript.","directories":{},"dependencies":{"sax":"~0.6.1"}},"0.2.0":{"name":"xmldoc","version":"0.2.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.2.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"0e6052b7713fc15b73c4725ed97d66b8b7987f6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.2.0.tgz","integrity":"sha512-ib5pgHVzIRchrhZ+gVG/17TLfkT184KI4MaYDArjJc0OHxeUAzl9CDELmo/ELE7xqvc4MathqKgIqgK1HrukDg==","signatures":[{"sig":"MEUCIFwvTT/MjZ+QvDIXuJs1cIKEY/jmnpytYtjN8Ypk3l5bAiEAtGJv1laeAZauEBCuw0Kn0NGGtLgDBL0D0YuA8F+ra7E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"0e6052b7713fc15b73c4725ed97d66b8b7987f6b","gitHead":"41fad00f8a1cb16a4df146bf8b30d894aacc5afc","scripts":{},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"1.4.28","description":"A lightweight XML Document class for JavaScript.","directories":{},"dependencies":{"sax":"~0.6.1"}},"0.3.0":{"name":"xmldoc","version":"0.3.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.3.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"79e0c561af66d0e70e49768ea211db7dea305420","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.3.0.tgz","integrity":"sha512-URV2pW+GnVMhkyf0wkEue9KWcSvtIeHf5W91318IYQpeoijINmgiDICsCClLgp6LgsS+RzUgpuFQfZO8mIFGnA==","signatures":[{"sig":"MEUCIQDWS7PF7vZRKAYGdmWn9xU9TqaN883GNBwHOBPw9OzXXwIgOZb/TMkp1pFpm6flzymLleicbYVeNo2/mYp2gI5Fs2s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"79e0c561af66d0e70e49768ea211db7dea305420","gitHead":"2508a7d82378aa5c6ee4bef5cfdb0d0075ee595f","scripts":{},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"1.4.28","description":"A lightweight XML Document class for JavaScript.","directories":{},"dependencies":{"sax":"~0.6.1"}},"0.3.1":{"name":"xmldoc","version":"0.3.1","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.3.1","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"e9b5d646b7a3dbed6a4adface259a43b9c222eff","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.3.1.tgz","integrity":"sha512-7Ap7LW7nhYfW602Y5Ub+IT+xMEbrJTD1t6rHKcYlFyxDlbH2tmOBFtqk2rTKN+wm/xB0atHz7igdWwBViZ4l9g==","signatures":[{"sig":"MEUCIFEqW6Qda3xyaFPJOIoepL6j/cowbYRvXtprE0dBo7QwAiEAz0GfP1FwyNN/OlWbH8znXqFYNx0blIhUglYzUYAk/iY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"e9b5d646b7a3dbed6a4adface259a43b9c222eff","gitHead":"98961c5cfe096ceaf8e6437101960bfce677f9ab","scripts":{},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"2.7.4","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"0.12.2","dependencies":{"sax":"~1.1.1"}},"0.3.2":{"name":"xmldoc","version":"0.3.2","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.3.2","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"795dcab1fccba4827e2dbec584ff2bbddfd30468","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.3.2.tgz","integrity":"sha512-5eT0b79tX532QCqskioDAS/dxMmJRKi/D4WzRuH17nBT1OGEIJ5SDVcuALVNDablfZxDTRAwZHjIaCKPaRFopQ==","signatures":[{"sig":"MEUCIQDNlhQFnFEEFcoUDRMGBwGECk0+TqtXCv/Y9ownf+ovpgIgcByo6Lx5YpqyWkSujzIshPnkui28Wnp9wgaW2wakTWQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"795dcab1fccba4827e2dbec584ff2bbddfd30468","gitHead":"d327e3a7c8f5bca5118a6f0f39ab3f5c26f354bc","scripts":{},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"2.14.2","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"4.0.0","dependencies":{"sax":"~1.1.1"}},"0.4.0":{"name":"xmldoc","version":"0.4.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.4.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"d257224be8393eaacbf837ef227fd8ec25b36888","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.4.0.tgz","integrity":"sha512-rJ/+/UzYCSlFNuAzGuRyYgkH2G5agdX1UQn4+5siYw9pkNC3Hu/grYNDx/dqYLreeSjnY5oKg74CMBKxJHSg6Q==","signatures":[{"sig":"MEYCIQDxpVJVkicmm0LfaP5EiLCPDvgBU3gg8EX8WfSAadgj0QIhAJzlf2uCHcL6ujziuAkqKPHqLVUWL0CDbz8rRbUgIm42","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"d257224be8393eaacbf837ef227fd8ec25b36888","gitHead":"48c1b3b4414fa612e5eff005346d6787ab441b98","scripts":{},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"2.14.4","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"4.1.1","dependencies":{"sax":"~1.1.1"}},"0.5.0":{"name":"xmldoc","version":"0.5.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.5.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"17304f7601caca58e7a32f8814f679c50b1a6c06","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.5.0.tgz","integrity":"sha512-KYUfp6aHNT5DfHyrzEePRE5x3kuhR/EQYjogbfrGSFKctHU+4ZjG5tr2blcK7RBa8gZp2JIyZdA5lrpulKjN9w==","signatures":[{"sig":"MEYCIQDB31QYLgzZrzkwuzmNmK6kReh5qeiqAaemj1AeBWH3/wIhAIsJ/yd/IQNmddUeEhHLF+hTbCT1bakmBOVSwAglROrV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"17304f7601caca58e7a32f8814f679c50b1a6c06","gitHead":"a52de631bf4e89697e5e752e8ef3e9b8b3cb3fad","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"3.6.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"5.7.0","dependencies":{"sax":"~1.1.1"},"devDependencies":{"tap":"^5.7.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc-0.5.0.tgz_1461781419434_0.8754195256624371","host":"packages-12-west.internal.npmjs.com"}},"0.5.1":{"name":"xmldoc","version":"0.5.1","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@0.5.1","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"92e437e900dbff04450efae90d3ca5f16565f738","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-0.5.1.tgz","integrity":"sha512-RT40I5jVmRRle710br/W2XwIBg3Ev2y1FMQ5tKA4ueBuxTL1+hCOvRMpHeNshzmT0mTmR0TROP70srD/x9EWnQ==","signatures":[{"sig":"MEUCIQDZ1cEpEfXoNS/Vm08ks55htk8D2gNJUN8pXOgmLq0c6AIgY6O1+C6KgX5v7+touoruZyXb96lYHC/Ml6H1qAt76qg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"92e437e900dbff04450efae90d3ca5f16565f738","gitHead":"68aa93652ceca9f26f8fc9eb56cea757e87659f4","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"3.8.9","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"6.1.0","dependencies":{"sax":"~1.1.1"},"devDependencies":{"tap":"^5.7.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc-0.5.1.tgz_1463077705444_0.3794771679677069","host":"packages-16-east.internal.npmjs.com"}},"1.0.0":{"name":"xmldoc","version":"1.0.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@1.0.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"afb1177830612bbd716fe94e883e6a08f8b97906","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-1.0.0.tgz","integrity":"sha512-DXu4EAPwF61owpzb59GDMZRyNX3RBadj5cm6le7Gq663C4gqy93lZuLBQSTO3iA1vFB76tnbyvKgZ9Yo6hTTuw==","signatures":[{"sig":"MEUCIEsuLhgmMbnXtsM7szUnw2nxy6G1iVtYTHclJZRnTWn2AiEA5Iio9DUB+kulp8u+KpOyRHrU8VNzri/w9dSVl5EdWG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"afb1177830612bbd716fe94e883e6a08f8b97906","gitHead":"0a53b502e329639a2ef799980a19c4ee975fe9a8","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"3.10.10","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"7.2.1","dependencies":{"sax":"^1.2.1"},"devDependencies":{"tap":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc-1.0.0.tgz_1482730084721_0.8229466208722442","host":"packages-18-east.internal.npmjs.com"}},"1.1.0":{"name":"xmldoc","version":"1.1.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@1.1.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"25c92f08f263f344dac8d0b32370a701ee9d0e93","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-1.1.0.tgz","integrity":"sha512-5CEmEtW6IeVMEHSIxchhwpwJKnpFFsCOl9J3R2trVPcMsT7loE7jwT/q1Zwzlk3MetuiyCAdpA699gq0E4fgdw==","signatures":[{"sig":"MEUCIFX/Y/Y8GxPLB+66sq3Lev+1grQm9QlNrz9XN59lzgBxAiEAjMGr3kseYgqIEaPk4oefvD5oXnsTq1/zTFuBucHTdqw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./index","_from":".","_shasum":"25c92f08f263f344dac8d0b32370a701ee9d0e93","gitHead":"00d4e3bb1039bedfec64acd52365bcebdc648acf","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"4.5.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"7.7.4","dependencies":{"sax":"^1.2.1"},"devDependencies":{"tap":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc-1.1.0.tgz_1493394103625_0.29246943490579724","host":"packages-18-east.internal.npmjs.com"}},"1.1.1":{"name":"xmldoc","version":"1.1.1","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@1.1.1","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"7707ae80606a0c0f6818885bcc2d8cba58919736","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-1.1.1.tgz","fileCount":12,"integrity":"sha512-fx/Y2svWatWxAzfebSaHx0HkJ0vSAYUqhawjYAQmzE3gRHpUNkGl1NBAINCfwLz3mgaQdBhM1oL5pk0/TnWrDg==","signatures":[{"sig":"MEUCIFMszEcO8oZyH4lpEn88a0FYRoPz0QWGYYQ7rB3GCkulAiEA6Wt1ag0VEkj09wlr1ZH9Do+hRiKKRGMR9VkdJFrJQHY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38630,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVfl9CRA9TVsSAnZWagAAwpQP/0y+P/R/PMTuKkL1SBva\nLDCiXeSKSW7Nw0vCoUuVOhN2HoV/aZRnrCXzolXvxxUuyflaBRlLgSQAHV1c\nFw90FzMu51G9xNF4xU+tm7/bN09rIxL4nQG5Nsgk447hzHV4jyojJaLTn6i3\n2WLF5uUa77435gifU0ZoUjAOoEbcU5Pgnv2QtQ5h2jaPr2EbgJcKslMSpQ8p\nyqhc3ECD6ge0CnT8wh54u0iJ6bt6HibwQz3eGG5Ujxrm4cC+gTPSf7usRCmA\n6U1X+ZwZAqaIWW4s1aFPFNH7EiERuvVaU6iKT5Gcvx+/SN98hZ+qoyWUrr8l\nXljwFKhywFCQt94hlXwCQBYMyOp5K091hzfr+AKhlQQMdDYgjr1xYoYzuyF2\nuJQIDqWrmAje9Uu4pdNq95vcY+SuzAwfrxszwUsnZEooZ0EeEAitxhPi0I2+\nD6J0opDxChsQo9hOY7W3OSs65jTVhhzQDkRwo+8M11MhBGPOSFGmE0q6naKF\nrl7Qja9b5fCkaW9rB9+6t7tma2E+AqTbCz5lxssqvsHKnPYtdPO67yyU8ugy\n7FiMPq/H4DNYcHEn2KG9t72Jf6s79lSIhTiBmBp0S5MXiyLLJlWao7J0Leaz\npSg2MqXSBtREBb5iHpuj0O4hjQX34e6O1R22QYQJXPr2FiSaes3FJ+uegGNb\nHruk\r\n=dx6h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","gitHead":"412250a223d8f8d22f115c49a01f8c0838bd9ec6","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"5.6.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"9.11.2","dependencies":{"sax":"^1.2.1"},"_hasShrinkwrap":false,"devDependencies":{"tap":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_1.1.1_1532361085727_0.4242810098400136","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"xmldoc","version":"1.1.2","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":{"url":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","type":"MIT"},"_id":"xmldoc@1.1.2","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"6666e029fe25470d599cd30e23ff0d1ed50466d7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-1.1.2.tgz","fileCount":12,"integrity":"sha512-ruPC/fyPNck2BD1dpz0AZZyrEwMOrWTO5lDdIXS91rs3wtm4j+T8Rp2o+zoOYkkAxJTZRPOSnOGei1egoRmKMQ==","signatures":[{"sig":"MEYCIQD91ibqDePeyzRFuF071Wh4ZzfQ0qKyjLb2Lp7dttHYXQIhAJVY7oCGvhqax2vOhjhMg2BR68K0bEvC96g4n3cwG3AJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWP7DCRA9TVsSAnZWagAAooYP/RFKPZnXMtEsM0EePinn\nUBmJWMFMkEfz+q6wDdwzgr6CqLzmDEamsml+X6K/eT14HNBXK4jMbIKt3HjN\nrdhW9U0lOWLrrxNvBlxpUq9G//zhr3/Bzq/7N4TZPiJJRZRErVPrNKGEQobW\n+ZV8h7kFIo2an3XH34hvPbXiskVljH0pbE3fge1TWmpwkiBwIC4GB2v6XaRd\nh9ZAYyOJl9JpzWe9/0W2OSqbsYQCEGcrUW9nnnuZsCKdWK6DUbOEMfuURe4X\nboNIRo2q3OmRJTtH8LMONMeghQ8c2bDAsyWsKY12qZatHDTeXTmmZKFbAKqP\n+mrwTNwhLWESOvSvLY5EsTxXutt40WVhPlQhYngAkr6YEMFhbw+OxA8wVf4l\n3zYRxB6IWnMWoQ8EtoOwjD5MLmXMQRyvhXB7ja45gRfHxDvyDULsW/AMyy6s\niBAirTxU7FRFI0ZsgZPQ4IiMAetBK6cBE262UeEK/xS+yWnNTDz213b15svQ\nxhtP4Dpv1++AUxFMw8VE0o8SWN9Sx2sgZdi5IkZhDiRf4/8yxLZGz5WLqRV/\nAn2+pbSIjtxuMio0Gdq0pCNxQJHQAd6ohNKybvWYr7qP7kKkleaVi2UlYeRb\n4Ecsnro3kVtJVMYktJM4HKazu9mXj/PKIP/dgwXkuq05e70x29V6slu6Nq5Y\nIKr9\r\n=fZ+X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","gitHead":"95221bb5f5fc3596652c37eb454b732652fb4159","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"5.6.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"9.11.2","dependencies":{"sax":"^1.2.1"},"_hasShrinkwrap":false,"devDependencies":{"tap":"^8.0.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_1.1.2_1532559043555_0.4429154469762595","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"xmldoc","version":"1.1.3","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"https://raw.github.com/nfarina/xmldoc-js/master/LICENSE","_id":"xmldoc@1.1.3","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"1a4f0fd4e7fe1567e6660cea9cadf991df5bb312","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-1.1.3.tgz","fileCount":14,"integrity":"sha512-xLbV1OMj8ysWK5Z4xt+qGUm0J/A5hRpXisZGYeOvFElqgMzDVqy8Ma2VoV+6QIDVb9UmdpABVhPL/04VnmBcXQ==","signatures":[{"sig":"MEYCIQDt9jjtHv7clnuIQhv8jIKmO9/NqOH3fi5b5YA/pBUzuQIhAMaO8qNz9jvAumq45qbIt9GoQZ6qgctVyv+qdSeGD5Wb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40106,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisK7SACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpaexAAh4dyO6UvSOjy8jbZoydvwIYy099ouxHPtloOoTXd+anKvIXN\r\n4twZq/51R1/pBRApJGYVsOYbRpvZsqnslIAUTje1vQTvB+r0BhQrgr6yMfwm\r\naZq3RYzyW53G4E9O8hUicC+nWrdLq33EAYnL2OZPwsMlzQGgAQsjYRjTtMgG\r\ne/Wqdtm34l5FKo/0bhvNY2biHpyTpPV94o4lDZx21hxCy+rvRczYHZEfT9y/\r\nTUWPiU93Hj1GndqnxIJpTb0Bc4ou21pwSY/eBZXy5xRLzQv65hZeNUTkLrvv\r\nVNt58VXHVQmwY+JNq0gbNvT2y9TJ62Hu7kOusuTCmhNuEq7bRE77zZqQyOoz\r\nHpI/4DiAMeQ3SdsnIfk1Un0QnAjCO03z3KENI92DKGE6Sj9qEqfIPeCqSc5N\r\nbdEp3Ps0ccLCKDMswJp+d7qDou6rr+eLlGWVzbCbHy13OOy+glcX/t5JToLX\r\n5/VQKjTrMX4dWz0TJvj7wOIwT33JjLtXxHBNcitsSaqSe1cJeTlzm4WDqklo\r\nH+VHOcl7KE4yoOYxoBNpBQd9WIQ2VhW9OhRDBtbmS7YOpXxJcc2GS/XtZQn4\r\nrxR0qEDjDD+Jw6lFPhQ9uEOuMaNPdUU8sZPPo34yTHQdu92Grd19qPDb1o5v\r\ni4r/1106pJezD7XotbbPx/DPHsMNyh/0IAM=\r\n=X2o2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","gitHead":"30abdb13aa4e067c5d4657ab3c0225ebdd6c5c32","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"8.12.1","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"16.13.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"devDependencies":{"tap":"^16.3.0","prettier":"^2.7.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_1.1.3_1655746258779_0.2845643793570982","host":"s3://npm-registry-packages"}},"1.1.4":{"name":"xmldoc","version":"1.1.4","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@1.1.4","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"ea4e26dca76b1d218a2f777018bce404ba374a86","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-1.1.4.tgz","fileCount":14,"integrity":"sha512-rQshsBGR5s7pUNENTEncpI2LTCuzicri0DyE4SCV5XmS0q81JS8j1iPijP0Q5c4WLGbKh3W92hlOwY6N9ssW1w==","signatures":[{"sig":"MEYCIQC2TrwE56pX+Prl9pVYyA8RdG+aErPaWnK8SNP1j4aCIgIhAN0wOJRROOpjbR03V30VRwzIGXh9xaOGBHyGyGTzpFHN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuz4+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoVXhAAlIo0uH2yo5ozvPWoN9mcPqZ1SbPjv6ph9z0rgomBsi/Di44L\r\nj8QLsiyjKJWXCJKjYeV0T145lBlNBWPZq14EbXod3U2YqYcHUq1TeOuCftD9\r\nQbmiZPU9QOCyiB1tdQSeiiTI9pOJKtLyQOG5ckdVPnPsxdM9h3nhpSo6aLnI\r\nSxSZ6z2VbtkxZ7YitCTDf+GUlOSLjrnj9uGVhfF7E2qf5OeRQWz5uFXvB7bK\r\nQzpVHGusN1Wpywdx9oC/z76TtCa3L8XRPLHfcOyhQ1lo0H1sigX/KlN2OVSb\r\nqWN6XpvRPRoZcoi7FmYiSsZbrtcb3/AnE4uydELoL9uX1tpuqh/6jdkNxLSY\r\nO7dm7kLKo7ZnuNSsimybWxwPtQ2R4KG7TIlvFKOHKmufi4xsafiTnEwEly86\r\nv/IhceDCg+XqM4BChvfZbpmkIgiJQ4OPuASGqVdTL8vnYk/zwccxDISrJjGY\r\nYfTdcLXaEUHvmRWnx1kfIHClWuDhlns5tMAHExjgwmhJ4azGw7C6edBaX0Zz\r\nTSOGWudxHNLHOcXF0JZxaP7Mc1W6poP1DDSDLdWJTaU57nT7lLZsiEUoYbMW\r\nW/WIzp2/30r84+4WZJYrg4s97SY+U1+mvPlTf00ZSDBxTGt+Iel+FQ2hBtIF\r\n2jW0b50XSnWHAos2gTogfiK1KnUMazH/W8o=\r\n=Th1v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","gitHead":"088e2a7bcc851e42d1fc4257b9c98f38b73cc571","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"8.13.1","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"16.13.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"devDependencies":{"tap":"^16.3.0","prettier":"^2.7.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_1.1.4_1656438334580_0.8483716974790352","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"xmldoc","version":"1.2.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@1.2.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"7554371bfd8c138287cff01841ae4566d26e5541","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-1.2.0.tgz","fileCount":14,"integrity":"sha512-2eN8QhjBsMW2uVj7JHLHkMytpvGHLHxKXBy4J3fAT/HujsEtM6yU84iGjpESYGHg6XwK0Vu4l+KgqQ2dv2cCqg==","signatures":[{"sig":"MEYCIQDZ+uNwy2dGGSOyHtOUMtQ3hLTgq1cPrrwLO/uErA9c1AIhAKbClYr2Onfhg4Fz54nbMSaEUXl0EIEsF0vGUnM7DjXJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41009,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0HdhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUMhAAhbdYaNzyqJtpu9QJSpN7dDkimknXvFotv1BfbaQfl0JLJLDW\r\nKxJ9A+113Mh44gSmBp/XM83xhpHSq7IrUIdgok08GK3+fsuEDh1pXRW2tvMo\r\nEvu1s/w1sZLDJq+HrXoGl1PhCREn+9jnJMQ5zOzMlgX1wdRLwqhbNhrZAALT\r\n9Mn3SlOeWI706mSNd87tylLQqcTuzP360Wcc55M54SIhACwBaR068FwYuSLn\r\nX+FbPDHJ4+o6B9NzKJRGrH5s0mO3rkVzvqqjxBi6JZNkd8HMMxnrOIcuB0YN\r\nfygU8Vmi73/BAdFeQ3Ag8r2EBqdGGOoMZAADQHQWrS71XZ87G1jDQw1B1jfD\r\nr3BzsjQw4Y5vTIick3wotmvhzjGnlduBuLAzns9wTTu+IROu+3+51KnAuOxg\r\nsRDI8FsWu+HdapFLm6YzS8G0irhT+kFySvq2Z9voR4KowC8Qd3BHF+bV4PiO\r\nyoBIAgc95GS2doDPJHGlnEyG5KjvoMZI8ZSkGlrlQ6Po1Nv1xbyX6FqVdT/f\r\n2ia25LwbxhIio2pLl+/t6buEWUUSdNJheDPGuOhKwgmRhOCPbH+kRBFnJrER\r\ncKOvty5MsO7I2jkGaEHPKa9bqmv3gal3DBbxW5LveG56VnSJi792ZEh3cRLO\r\nW1y4fd6igvoTiQvZmLDE0GGRZRttxYG/3jk=\r\n=P9hU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","gitHead":"8b5b3d36cd20c39495e4fc33e44c23fa870ec249","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"8.13.2","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"16.13.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"devDependencies":{"tap":"^16.3.0","prettier":"^2.7.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_1.2.0_1657829217085_0.758547835077632","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"xmldoc","version":"1.3.0","author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@1.3.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"7823225b096c74036347c9ec5924d06b6a3cebab","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-1.3.0.tgz","fileCount":14,"integrity":"sha512-y7IRWW6PvEnYQZNZFMRLNJw+p3pezM4nKYPfr15g4OOW9i8VpeydycFuipE2297OvZnh3jSb2pxOt9QpkZUVng==","signatures":[{"sig":"MEYCIQDQgcUqyew0hpZVJ9/fVROQ9DFd5+DeXUw1/cRj5quKeQIhALW4IwkHRP55wgC1FV0wNgwa4T5gev68lNtkTMvgoFLG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41386,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGNJ3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqxhA/8DJguy9cPzxuTPFRAx3Xfm+5OEx2v9qhiYSO1oImTvC8HvWwu\r\nSwSKydQUjlBPW8l9MpHOpE26PmU/pirj6nNxX5q9R0SOGtIbhHjCNy5yBjFr\r\n8Hw3yy3Fs3v8Wb5iUS5wwJBATI3F/LFwpk8uCBW4oprrf85iEGpr8GnnRN9T\r\n/oIeSjN1zV4e8+KlhgulvO99Aa5OTyPrmfN4jETmE+8TpQqP/bWkvEej3t/N\r\nfrKAHOhvswtzS975FiYbn48c5Acssq1E7thn4aZH5CRJ2qf4RG1hDSWLl6gi\r\n2RozXGSLiwufY0yoIalbq9KoyI2vRwZSo7XDliudrCQeJVzoaStjwj2XgTKD\r\nMB9QX+QqWTjCA9lmNfzndR3Rc5f1tkEANHUgFQrM0HwPX1aQ2NPESJ5Xiugm\r\n+blwtRkugIpnNsHTUYZ83WsrcDStPadOcnqGB9lD3arFW8KZLnE2tmI6cVmd\r\n/H0lh3MQTSYyKP0kqSFtz66iEkX9G2QsmkITuQxOywxNPseYcvvFylsBr8tp\r\nPZ9I0jL+0vT7AhNecze+a0gXnoNY9ze2zxVm+k16dwCz8IDcGZLlbS7Om3Hl\r\nOuQY5UXFFUDiD9hCS3+R7boDhywZilvIx/QkK7Fi6PsfWjlf5lwlnSD9/WyA\r\n4UrIKxdZvuZvo5pslsVwi92+wX897E3oSws=\r\n=00Rr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./index","gitHead":"216c1fb060cade606d29c2e4bc22a518c7929e38","scripts":{"test":"tap test/*.js","coverage":"npm test -- --cov --coverage-report=html"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"9.6.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"16.13.2","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"devDependencies":{"tap":"^16.3.0","prettier":"^2.7.1"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_1.3.0_1679348343164_0.6576927357284628","host":"s3://npm-registry-packages"}},"2.0.0-beta.1":{"name":"xmldoc","version":"2.0.0-beta.1","keywords":["xml","sax","parser","xpath","document"],"author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@2.0.0-beta.1","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"f05ca96773d7e5c08703c68891054f8d26e2a640","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-2.0.0-beta.1.tgz","fileCount":8,"integrity":"sha512-OfEJ7+DHb34rNoUoES5Y8G89kB/60OcYoay6XSVh+EdK3ypQ9XL6exaFKdQ+ayoFf/ARrdRZnEbOJnGmWvheIw==","signatures":[{"sig":"MEQCIHfMeQIO2aiD3M26XQeof617/6d7Ncj15R+AyRGVAo6fAiA8bF/6VnBzuH29Fl4dHIuHe1xKsKYFxd49zq1vaOGIKA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":64475},"main":"./dist/xmldoc.js","type":"commonjs","types":"./dist/xmldoc.d.ts","engines":{"node":">=12.0.0"},"exports":{".":{"types":"./dist/xmldoc.d.ts","import":"./dist/xmldoc.mjs","require":"./dist/xmldoc.js"}},"gitHead":"9eb7dd202f840a29c8ea0c0bcab63c010f5ab904","scripts":{"test":"tap test/*.js","build":"tsc --sourceMap","clean":"rm -rf dist","format":"prettier --write .","coverage":"npm test -- --cov --coverage-report=html","build:all":"npm run clean && npm run build && npm run build:esm","build:esm":"tsc --module ESNext --outDir ./dist/esm && mv ./dist/esm/xmldoc.js ./dist/xmldoc.mjs","prepublishOnly":"npm run build:all"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"11.2.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"22.14.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"packageManager":"yarn@4.7.0","readmeFilename":"README.md","devDependencies":{"tap":"^16.3.0","prettier":"^2.7.1","@types/sax":"^1.2.7","typescript":"^5.8.2"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_2.0.0-beta.1_1742142320618_0.4377684617173838","host":"s3://npm-registry-packages-npm-production"}},"2.0.0-beta.2":{"name":"xmldoc","version":"2.0.0-beta.2","keywords":["xml","sax","parser","xpath","document"],"author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@2.0.0-beta.2","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"87c37f16b44e3a7b06c8c8a5bc9be3440190f3b0","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-2.0.0-beta.2.tgz","fileCount":10,"integrity":"sha512-FOx08Ge+EvopVMlHRN7PCGyHkkIcyPNjaXlhGHPEEEFOGUE/lZ9hkVvQi2UUzZ1tsJRy8Q5DLldNknHrJw7lhQ==","signatures":[{"sig":"MEQCICvcd+q/5BMCWSN/4jmN6XnyGDYv0pU66rEm2n6NLHcZAiAI96ydPcY1rOkabX2w0+TLumyB5sIWkkMTzbl9+6mx2g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":59729},"main":"./lib/xmldoc.js","type":"commonjs","types":"./dist/xmldoc.d.ts","engines":{"node":">=12.0.0"},"exports":{".":{"types":"./dist/xmldoc.d.ts","import":"./dist/xmldoc.js","default":"./lib/xmldoc.js","require":"./lib/xmldoc.js"}},"gitHead":"9eb7dd202f840a29c8ea0c0bcab63c010f5ab904","scripts":{"test":"tap test/*.js","build":"tsc --sourceMap","clean":"rm -rf dist","format":"prettier --write .","coverage":"npm test -- --cov --coverage-report=html","prepublishOnly":"npm run clean && npm run build"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"11.2.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"22.14.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"packageManager":"yarn@4.7.0","readmeFilename":"README.md","devDependencies":{"tap":"^16.3.0","prettier":"^2.7.1","@types/sax":"^1.2.7","typescript":"^5.8.2"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_2.0.0-beta.2_1742147663831_0.40635865986532105","host":"s3://npm-registry-packages-npm-production"}},"2.0.0-beta.3":{"name":"xmldoc","version":"2.0.0-beta.3","keywords":["xml","sax","parser","xpath","document"],"author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@2.0.0-beta.3","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"3d5ef1bd2e9561d133b807933febdfd04986a750","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-2.0.0-beta.3.tgz","fileCount":10,"integrity":"sha512-dWrpNV8RlFtJv6BsljcpRio0jrLnkGhu+vLh9TcDj/kviGPxAGATOOmk86Qp6adTzeT6HgOL1QZOJKYiiqua3A==","signatures":[{"sig":"MEYCIQDiHYhJmC2bOf77Zb2xQ0bdyLUbW9jE8gdxgxNCRBZDPAIhAPv1j6GcEkipR0oYN9pZMkNBp5D9UEJQomblEB2xciww","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":60277},"main":"./lib/xmldoc.js","type":"commonjs","types":"./dist/xmldoc.d.ts","engines":{"node":">=12.0.0"},"exports":{".":{"types":"./dist/xmldoc.d.ts","import":"./dist/xmldoc.js","default":"./lib/xmldoc.js","require":"./lib/xmldoc.js"}},"gitHead":"9eb7dd202f840a29c8ea0c0bcab63c010f5ab904","scripts":{"test":"tap test/*.js","build":"tsc --sourceMap","clean":"rm -rf dist","format":"prettier --write .","coverage":"npm test -- --cov --coverage-report=html","prepublishOnly":"npm run clean && npm run build"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"11.2.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"22.14.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"packageManager":"yarn@4.7.0","readmeFilename":"README.md","devDependencies":{"tap":"^16.3.0","prettier":"^2.7.1","@types/sax":"^1.2.7","typescript":"^5.8.2"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_2.0.0-beta.3_1742147759053_0.09648595912592439","host":"s3://npm-registry-packages-npm-production"}},"2.0.0":{"name":"xmldoc","version":"2.0.0","keywords":["xml","sax","parser","xpath","document"],"author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@2.0.0","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"948b97c38f0cbc07b878985d14f9e2212127d42a","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-2.0.0.tgz","fileCount":10,"integrity":"sha512-6ZsqsqEkIKzWLqGyTN+j+ZRc/vxQHtnlHzSvj3JvM4XZPoZVJxj6fyz0XvwKAf1vh+kSN/HibO1/iJLf3F3LRw==","signatures":[{"sig":"MEYCIQCi8VG7lIcM+tw6Q+RoWkfjxN6pDTIQJOB8GNE3+L5sDQIhAJ+HSmkVBKTdwmpTYeT0V4zx3pMqcauhagK2Z1UgCtRl","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":60270},"main":"./lib/xmldoc.js","type":"commonjs","types":"./dist/xmldoc.d.ts","engines":{"node":">=12.0.0"},"exports":{".":{"types":"./dist/xmldoc.d.ts","import":"./dist/xmldoc.js","default":"./lib/xmldoc.js","require":"./lib/xmldoc.js"}},"gitHead":"bf93b186f625633263a4bc1faec73298138cc906","scripts":{"test":"tap test/*.js","build":"tsc --sourceMap","clean":"rm -rf dist","format":"prettier --write .","coverage":"npm test -- --cov --coverage-report=html","prepublishOnly":"npm run clean && npm run build"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"11.2.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"22.14.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"packageManager":"yarn@4.7.0","devDependencies":{"tap":"^16.3.0","prettier":"^2.7.1","@types/sax":"^1.2.7","typescript":"^5.8.2"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_2.0.0_1743877767602_0.02179304000240645","host":"s3://npm-registry-packages-npm-production"}},"2.0.1":{"name":"xmldoc","version":"2.0.1","keywords":["xml","sax","parser","xpath","document"],"author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@2.0.1","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"a901f6a6341e4d8cba3dbc5fc61017249f2adf24","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-2.0.1.tgz","fileCount":10,"integrity":"sha512-sOOqgsjl3PU6iBw+fBUGAkTCE+JFK+sBaOL3pnZgzqk2/yvOD7RlFmZtDRJAEBzdpOYxSXyOQH4mjubdfs3MSg==","signatures":[{"sig":"MEQCIFdkMSu+ep1hW6ScLGQ2QUYEwAiCm96+Yrpuj+ipByKGAiAq0Aip261IgYhg2rA4zFbxbUvhnSmQnb/RkbWGOqulqg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":61921},"main":"./lib/xmldoc.js","type":"commonjs","types":"./dist/xmldoc.d.ts","engines":{"node":">=12.0.0"},"exports":{".":{"types":"./dist/xmldoc.d.ts","import":"./dist/xmldoc.js","default":"./lib/xmldoc.js","require":"./lib/xmldoc.js"}},"gitHead":"78911d03f0b528e9b7cf1680f86152a528710c0d","scripts":{"test":"yarn test:js || true && yarn test:ts","build":"tsc --sourceMap","clean":"rm -rf dist","format":"prettier --write .","test:js":"tap test/*.js","test:ts":"vitest run test/ts","coverage":"npm test:js -- --cov --coverage-report=html","prepublishOnly":"npm run clean && npm run build"},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"11.3.0","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"22.14.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"packageManager":"yarn@4.7.0","devDependencies":{"tap":"^16.3.0","vitest":"^3.1.3","prettier":"^2.7.1","@types/sax":"^1.2.7","typescript":"^5.8.2"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_2.0.1_1746552733419_0.6088028383160269","host":"s3://npm-registry-packages-npm-production"}},"2.0.2":{"name":"xmldoc","version":"2.0.2","keywords":["xml","sax","parser","xpath","document"],"author":{"url":"http://nfarina.com","name":"Nick Farina","email":"nfarina@gmail.com"},"license":"MIT","_id":"xmldoc@2.0.2","maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"homepage":"https://github.com/nfarina/xmldoc#readme","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"dist":{"shasum":"1ad89f9054cc8b1c500135e746da2a608b7bca6b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-2.0.2.tgz","fileCount":10,"integrity":"sha512-UiRwoSStEXS3R+YE8OqYv3jebza8cBBAI2y8g3B15XFkn3SbEOyyLnmPHjLBPZANrPJKEzxxB7A3XwcLikQVlQ==","signatures":[{"sig":"MEUCICyEs7EBBPRpYpaPqP6i0ITCgqeSuLydSD7As/18vPvWAiEA9Q112boxunuiVcVqOnR3+k0DNAYVpCVZzBrEEVu/Zhs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":61671},"main":"./lib/xmldoc.js","type":"commonjs","types":"./dist/xmldoc.d.ts","engines":{"node":">=12.0.0"},"exports":{".":{"types":"./dist/xmldoc.d.ts","import":"./dist/xmldoc.js","default":"./lib/xmldoc.js","require":"./lib/xmldoc.js"}},"gitHead":"a2167fe452eddecf01a9ae876e504a208e33f34e","scripts":{"test":"yarn test:js || true && yarn test:ts","build":"tsc --sourceMap","clean":"rm -rf dist","format":"prettier --write .","test:js":"tap test/*.js","test:ts":"vitest run test/ts","coverage":"npm test:js -- --cov --coverage-report=html","prepublishOnly":"npm run clean && npm run build"},"_npmUser":{"name":"anonymous","actor":{"name":"nfarina","type":"user","email":"nfarina@gmail.com"},"email":"nfarina@gmail.com"},"repository":{"url":"git://github.com/nfarina/xmldoc.git","type":"git"},"_npmVersion":"11.4.1","description":"A lightweight XML Document class for JavaScript.","directories":{},"_nodeVersion":"22.14.0","dependencies":{"sax":"^1.2.4"},"_hasShrinkwrap":false,"packageManager":"yarn@4.7.0","devDependencies":{"tap":"^16.3.0","vitest":"^3.1.3","prettier":"^2.7.1","@types/sax":"^1.2.7","typescript":"^5.8.2"},"_npmOperationalInternal":{"tmp":"tmp/xmldoc_2.0.2_1750705657256_0.5069358279262199","host":"s3://npm-registry-packages-npm-production"}},"2.0.3":{"//":["glob is set to ^13.0.0 to fix a security vulnerability in the previous version"],"name":"xmldoc","description":"A lightweight XML Document class for JavaScript.","author":{"name":"Nick Farina","email":"nfarina@gmail.com","url":"http://nfarina.com"},"version":"2.0.3","packageManager":"yarn@4.12.0","type":"commonjs","main":"./lib/xmldoc.js","types":"./dist/xmldoc.d.ts","exports":{".":{"types":"./dist/xmldoc.d.ts","import":"./dist/xmldoc.js","require":"./lib/xmldoc.js","default":"./lib/xmldoc.js"}},"scripts":{"test":"yarn test:js || true && yarn test:ts","test:js":"tap test/*.js","test:ts":"vitest run test/ts","coverage":"npm test:js -- --cov --coverage-report=html","clean":"rm -rf dist","build":"tsc --sourceMap","prepublishOnly":"npm run clean && npm run build","format":"prettier --write ."},"license":"MIT","repository":{"type":"git","url":"git://github.com/nfarina/xmldoc.git"},"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"dependencies":{"sax":"^1.4.3"},"devDependencies":{"@types/sax":"^1.2.7","prettier":"^3.7.4","tap":"^21.5.0","typescript":"^5.9.3","vitest":"^4.0.15"},"engines":{"node":">=12.0.0"},"resolutions":{"glob":"^13.0.0"},"keywords":["xml","sax","parser","xpath","document"],"gitHead":"e16f238f93395a5ea5fb78b1670c27fd135c4eed","_id":"xmldoc@2.0.3","bugs":{"url":"https://github.com/nfarina/xmldoc/issues"},"homepage":"https://github.com/nfarina/xmldoc#readme","_nodeVersion":"22.14.0","_npmVersion":"11.6.4","dist":{"integrity":"sha512-6gRk4NY/Jvg67xn7OzJuxLRsGgiXBaPUQplVJ/9l99uIugxh4FTOewYz5ic8WScj7Xx/2WvhENiQKwkK9RpE4w==","shasum":"65b4226b753ea6cd4601f3f56d52338941d38380","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/xmldoc/-/xmldoc-2.0.3.tgz","fileCount":10,"unpackedSize":63318,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDYMTbZrfXCXSuVu8ELFRLf1cgtw985i0rMMXAazbNpBwIhAN1vAc9ujQvkjciNvLPlI6qbDrstsMjtRpZ5uVTd0BAa"}]},"_npmUser":{"name":"anonymous","email":"nfarina@gmail.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"nfarina@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/xmldoc_2.0.3_1765486082333_0.07451006565673834"},"_hasShrinkwrap":false}},"name":"xmldoc","time":{"created":"2012-10-25T18:33:19.814Z","modified":"2025-12-11T20:48:02.728Z","0.1.0":"2012-10-25T18:33:20.689Z","0.1.1":"2012-10-25T18:38:28.734Z","0.1.2":"2013-09-08T14:34:03.004Z","0.1.3":"2014-11-21T15:25:00.218Z","0.1.4":"2014-12-04T17:20:20.865Z","0.2.0":"2015-02-05T01:02:51.176Z","0.3.0":"2015-02-05T23:11:37.051Z","0.3.1":"2015-05-22T23:28:08.172Z","0.3.2":"2015-09-16T18:08:11.451Z","0.4.0":"2015-11-16T19:14:00.757Z","0.5.0":"2016-04-27T18:23:39.821Z","0.5.1":"2016-05-12T18:28:29.041Z","1.0.0":"2016-12-26T05:28:05.308Z","1.1.0":"2017-04-28T15:41:45.486Z","1.1.1":"2018-07-23T15:51:25.827Z","1.1.2":"2018-07-25T22:50:43.689Z","1.1.3":"2022-06-20T17:30:58.950Z","1.1.4":"2022-06-28T17:45:34.710Z","1.2.0":"2022-07-14T20:06:57.238Z","1.3.0":"2023-03-20T21:39:03.376Z","2.0.0-beta.1":"2025-03-16T16:25:20.805Z","2.0.0-beta.2":"2025-03-16T17:54:24.036Z","2.0.0-beta.3":"2025-03-16T17:55:59.232Z","2.0.0":"2025-04-05T18:29:27.821Z","2.0.1":"2025-05-06T17:32:13.637Z","2.0.2":"2025-06-23T19:07:37.472Z","2.0.3":"2025-12-11T20:48:02.507Z"},"contributors":[{"name":"Nick Farina","email":"nfarina@gmail.com"},{"name":"Caleb Meredith","email":"calebmeredith8@gmail.com"}],"readmeFilename":"README.md","homepage":"https://github.com/nfarina/xmldoc#readme"}