{"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}],"keywords":["css","selector","parser","match"],"dist-tags":{"latest":"1.4.0"},"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"description":"create matching selectors from css for your very own nested object hierarchy","readme":"# cssauron\n\nbuild a matching function in CSS for any nested object structure!\n\n```javascript\nvar language = require('cssauron')({\n    tag: 'tagName'\n  , contents: 'innerText'\n  , id: 'id'\n  , class: 'className'\n  , parent: 'parentNode'\n  , children: 'childNodes'\n  , attr: 'getAttribute(attr)'\n})\n\nvar selector = language('body > #header .logo')\n  , element = document.getElementsByClassName('logo')[0]\n\nif(selector(element)) {\n  // element matches selector\n} else {\n  // element does not match selector\n}\n```\n\nIt's easy to use with your favorite nested tree structures!\nDelicious with HTML! Digestable with JSON!\n\n| HTML | JSON | GLSL AST | JS AST (Esprima) |\n|------|------|----------|------------------------|\n| [cssauron-html](http://npm.im/cssauron-html) | [cssauron-json](http://npm.im/cssauron-json) | [cssauron-glsl](http://npm.im/cssauron-glsl) | [cssauron-falafel](http://npm.im/cssauron-falafel) |\n\n\n# API\n\n### require('cssauron')(options) -> selector factory\n\nImport `cssauron` and configure it for the nested object structure you'll\nwant to match against.\n\n#### options\n\n`options` are an object hash of lookup type to string attribute or `function(node)` lookups for queried\nnodes. You only need to provide the configuration necessary for the selectors you're planning on creating.\n(If you're not going to use `#id` lookups, there's no need to provide the `id` lookup in your options.)\n\n* `tag`: Extract tag information from a node for `div` style selectors.\n* `contents`: Extract text information from a node, for `:contains(xxx)` selectors.\n* `id`: Extract id for `#my_sweet_id` selectors.\n* `class`: `.class_name`\n* `parent`: Used to traverse up from the current node, for composite selectors `body #wrapper`, `body > #wrapper`.\n* `children`: Used to traverse from a parent to its children for sibling selectors `div + span`, `a ~ p`.\n* `attr`: Used to extract attribute information, for `[attr=thing]` style selectors.\n\n### selector_factory('some selector') -> match function\n\nCompiles a matching function.\n\n### match(node) -> false | node | [subjects, ...]\n\nReturns false if the provided node does not match the selector. Returns truthy if the provided\nnode *does* match. Exact return value is determined by the selector, based on\nthe [CSS4 subject selector spec](http://dev.w3.org/csswg/selectors4/#subject): if only\na single node is matched, only that node is returned. If multiple subjects are matched,\na deduplicated array of those subjects are returned.\n\nFor example, given the following HTML (and `cssauron-html`):\n\n```html\n<div id=\"gary-busey\">\n    <p>\n        <span class=\"jake-busey\">\n        </span>\n    </p>\n</div>\n```\n\nChecking the following selectors against the `span.jake-busey` element yields:\n\n - `#gary-busey`: `false`, no match.\n - `#gary-busey *`: `span.jake-busey`, a single match.\n - `!#gary-busey *`: `div#gary-busey`, a single match using the `!` subject selector.\n - `#gary-busey *, p span`: `span.jake-busey`, a single match, though both selectors match.\n - `#gary-busey !* !*, !p > !span`: `[p, span.jake-busey]`, two matches.\n\n## Supported pseudoclasses \n\n - `:first-child`\n - `:last-child`\n - `:nth-child`\n - `:empty`\n - `:root`\n - `:contains(text)`\n - `:any(selector, selector, selector)`\n\n## Supported attribute lookups\n\n - `[attr=value]`: Exact match\n - `[attr]`: Attribute exists and is not false-y.\n - `[attr$=value]`: Attribute ends with value\n - `[attr^=value]`: Attribute starts with value\n - `[attr*=value]`: Attribute contains value\n - `[attr~=value]`: Attribute, split by whitespace, contains value.\n - `[attr|=value]`: Attribute, split by `-`, contains value.\n\n\n","repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"users":{"mikemimik":true},"bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"license":"MIT","versions":{"0.0.0":{"name":"cssauron","version":"0.0.0","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","_id":"cssauron@0.0.0","dist":{"shasum":"745d136dc1dc8c2c72c44f9c5e20cafb768e8fdc","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-0.0.0.tgz","integrity":"sha512-mwM4VO0tE3D4Hh8NLuypDP4ca4zIs6zIZ6XO1Jq6RYYG/NZpOzNbfKCiolpgZN48j0ZlCF4LYFm/j9QVnOGCWg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDrmKEQbWiqLINHGsQnYip5RFP7R8wkCsowp3LmXmmgmAIhAKyieYQ2/V9KPHntI8y7pwGKIK5LPWPAOtyBYfno+b/o"}]},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"0.0.2":{"name":"cssauron","version":"0.0.2","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","_id":"cssauron@0.0.2","dist":{"shasum":"6812797e6f2ac2cb9a695a92df7c420ee4dc6a62","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-0.0.2.tgz","integrity":"sha512-X5+T9pTei29+XKco7UXo+UXzA2TDH//XDUEa86MrSWu/Zumptogq/qdJZ59+NmmKfVKx/P/cLTkqzAuREr6j2Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2KMTb4zkgk1RQsfRdxVayj0wTJeBah+kQS/dmxIA4hwIgbqLEMK28+Pf0g2PM3dzcpFnhpzH8geZQodJob4AEJPc="}]},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"0.0.3":{"name":"cssauron","version":"0.0.3","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","_id":"cssauron@0.0.3","dist":{"shasum":"d447585640430100dfd861f3c95901cb665a15e5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-0.0.3.tgz","integrity":"sha512-zKTpLKcXfZ8Qe4serh+UL2iqirHOek890WmSTo4IkAznKoZ96HLhlpKfxUwVl02n7bINGS54mUdW1Jp2SICFZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHpQuAly2wXmqfBrSBSMBSNXEukhcIEyO09kdow9+C3MAiEA6NwjUjm+X2xaTI2eNiqvfT8LOwr8nrE6ujAC37AN/fU="}]},"_npmVersion":"1.1.69","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"0.1.0":{"name":"cssauron","version":"0.1.0","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"_id":"cssauron@0.1.0","dist":{"shasum":"b6f52c35179e8e564c995c9ac9b63a5d39eae4e9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-0.1.0.tgz","integrity":"sha512-mMaQAK/kCgl/oFuj61VngMCOwkLM9kWmVvgkM1xIjK3a9Vhkoxr04sFukddRV1q15rjsUIdXeTvO9CKVBEuGmA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDE2gUfYjEQgYcUx1eH+E6mA3BH/eg24HdDSG4DhS86OAIgRycUx69Rxn+NYARsMT5bvaQzQnMNwSTZsjmzIPv7czE="}]},"_npmVersion":"1.1.69","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"0.1.1":{"name":"cssauron","version":"0.1.1","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"_id":"cssauron@0.1.1","dist":{"shasum":"7aec7690c6052d16ea0819cfa7ea7e1c870a2998","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-0.1.1.tgz","integrity":"sha512-mWSLZ+rFbWfdj38BYwW9rZLMYFwC7Nj48D4J/M6eCM70xzvo7FUHM707kvxghUje6UlCXbzeJ/1ZWsWkaOt0Xw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICCEEQKz7x1t4Pgj4/CrB33EXKogND2psiOx7SU4hbkzAiBBCq0sgrkBmJOacmCDOI2X4/HbOtYVgfrI2Ed1WYBn2g=="}]},"_npmVersion":"1.1.69","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"0.2.0":{"name":"cssauron","version":"0.2.0","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"_id":"cssauron@0.2.0","dist":{"shasum":"d23ecc97c91e9fcb47e81e11590f7385c10708a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-0.2.0.tgz","integrity":"sha512-B1uN4n8f8eB1yDd5coq8Zaf4bZetBi5386BRpn2cgtjESEPwnRK8OgOk3qkeEAEmZfiJal6gBGYVrtAeO9J7rQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCsMMeMUZhgW18FbitidzTKk6bwRhkhduc4RXQhwt+g7AIhAKOt68FFQYG2fQCgtQPTS9jODHnJdB+ed8BB2O109yRq"}]},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"0.2.1":{"name":"cssauron","version":"0.2.1","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"_id":"cssauron@0.2.1","dist":{"shasum":"8bada27f47bfaed2ff5e39c1aa05dde0780ab3d5","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-0.2.1.tgz","integrity":"sha512-cVEf06PUaRSqUrC4t+o7qLpt7XuoWbZzXWDM9CXCOwYOfiRKmB7owtdE7+20dugaFsFiFT1X4mGRE6kG7+EWPA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLwXAmv83Odj6lgopAVpqUz/kc7jlyYVtgpZvquERz+wIgJEaqAjSK1h9CYAoGj2Enm9sK9Y8Suba6S9UcxeIBswI="}]},"_from":".","_npmVersion":"1.2.32","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"1.0.0":{"name":"cssauron","version":"1.0.0","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"devDependencies":{"tape":"~2.0.0"},"bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"_id":"cssauron@1.0.0","dist":{"shasum":"3c9891541075be90ee59c0c2a3d400e4fffec42d","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-1.0.0.tgz","integrity":"sha512-AsIJNPVXOxt5kXXsLlHgEEK7Z8KnOZs/rLBMufLnYcjW54AxgebUb1/wxdeiU4LPwlbp6VUK1zLEeMgAJq6WeA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBWY9dorPp2hS3vBiNjh7k0e76aKoicUvgEtJZh82oIwIhAM7339o3Qwhvn1oirGpihLWLF3QZpPdnaViUREF1Y86G"}]},"_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"1.1.0":{"name":"cssauron","version":"1.1.0","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"devDependencies":{"tape":"~2.0.0"},"bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"_id":"cssauron@1.1.0","dist":{"shasum":"1f2c2c7108bf3ce49a39edb5085ec1c99c5e25ec","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-1.1.0.tgz","integrity":"sha512-QxN51cGS5ocCJeJgsrR7LL+nTZud8+wusz5rawAdxAQharskqHHuBihzQ8MM8qLBfRrULNJ2mFN3CO/N+UrHsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGI7+cJE4oTtCYE11bGG9VL/QjxTzChU/YepU8yOM8IAIhAMf6FiuUr5GU/FHoiXlnN7ptR5Sy3XxCcA6Zu6OsZP8+"}]},"_from":".","_npmVersion":"1.3.11","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}]},"1.1.1":{"name":"cssauron","version":"1.1.1","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"devDependencies":{"tape":"~2.0.0"},"bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"homepage":"https://github.com/chrisdickinson/cssauron","_id":"cssauron@1.1.1","_shasum":"60c425ca019d0e7e3f89150029389f0b4b1a897f","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}],"dist":{"shasum":"60c425ca019d0e7e3f89150029389f0b4b1a897f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-1.1.1.tgz","integrity":"sha512-7HzXd0Rt2tgroDvjnkPPeXOzIH1OFzPm+s4QAOmFbFrPx4hpVrYmv4+ZFm7vno1qjrTas+QyqudCC0c1IR+qHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGHwJ5BcrvMGJ3XYHJk9SKaI3JwX8fo45KiHWQU+nD30AiEAgsn/KSPM+PopH7o/8nUEFr/Qu9UkyUYddnsKOhg94lI="}]}},"1.1.2":{"name":"cssauron","version":"1.1.2","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"devDependencies":{"tape":"~2.0.0"},"bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"homepage":"https://github.com/chrisdickinson/cssauron","_id":"cssauron@1.1.2","_shasum":"1c17c839126cc76ac3fb491d10e9665e4d70e664","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}],"dist":{"shasum":"1c17c839126cc76ac3fb491d10e9665e4d70e664","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-1.1.2.tgz","integrity":"sha512-Y9sMqhrmcbY/dteQzAPQTphtyGXKSr5DacBLB6s2KzfBmV7fHmadZagt41tm83+JS8IjW7sRwWVC8/NeOSe6Dg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGmNzUZ8T4Vix+7wjp8Rcq9hAdHaUIXASwCcxmjEufi5AiA4l/x1xYoxzm1SI6LPCLHmv2/cj6MynMJlv9MNQ6wmXA=="}]}},"1.2.0":{"name":"cssauron","version":"1.2.0","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"devDependencies":{"tape":"~2.0.0"},"gitHead":"92a4aa28592bd5a76d7c559fad87654863411990","bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"homepage":"https://github.com/chrisdickinson/cssauron","_id":"cssauron@1.2.0","_shasum":"7ec0a67ced40fad67cf47dd699783564c8f2b3e9","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}],"dist":{"shasum":"7ec0a67ced40fad67cf47dd699783564c8f2b3e9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-1.2.0.tgz","integrity":"sha512-eoxmmQ94ydV760CIkDqHqi7JLIFtIFflZyiXKaKCzZ9mqnErUTWg//Anpj7t0NaFtgw7gy5PxvKFoU7PI609RQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC6XGAI2PY9r5BLIHLLtTniKo5wMkqAR3kXQTTnvnLviQIhAOOWrJwTWtbdHhClM53q9i2BoNXejDlgOz8WnE8XEMmx"}]}},"1.3.0":{"name":"cssauron","version":"1.3.0","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"devDependencies":{"tape":"~2.0.0"},"gitHead":"9b09d463161d29c3e8937cb494575234dbc3668b","bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"homepage":"https://github.com/chrisdickinson/cssauron#readme","_id":"cssauron@1.3.0","_shasum":"39095ff486f6fd9c50b5acb6cca2b94c718e0e16","_from":".","_npmVersion":"3.8.7","_nodeVersion":"5.4.1","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"dist":{"shasum":"39095ff486f6fd9c50b5acb6cca2b94c718e0e16","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-1.3.0.tgz","integrity":"sha512-tEF76TzFz7zE3+f+twfddZyuTv0ljIMfty43SKuSSA5VmY8U1aAfNjteRuhbOChkUno9bxcr6R35tD5X6ZjyEw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIERqxn1awwedVsa6EsErscCJoSETDsNFDQXJa7CudLqhAiBbDax/vw41Rig4k7p9A4rmzBPmKLi18nsqY6V61ozAxw=="}]},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cssauron-1.3.0.tgz_1462652091040_0.5277433814480901"}},"1.4.0":{"name":"cssauron","version":"1.4.0","description":"create matching selectors from css for your very own nested object hierarchy","main":"index.js","directories":{"test":"test"},"scripts":{"test":"node test/index.js"},"repository":{"type":"git","url":"git://github.com/chrisdickinson/cssauron.git"},"keywords":["css","selector","parser","match"],"author":{"name":"Chris Dickinson","email":"chris@neversaw.us"},"license":"MIT","dependencies":{"through":"X.X.X"},"devDependencies":{"tape":"~2.0.0"},"gitHead":"ae57ae70c65961457f1f7481d945ed47dfdd2f20","bugs":{"url":"https://github.com/chrisdickinson/cssauron/issues"},"homepage":"https://github.com/chrisdickinson/cssauron#readme","_id":"cssauron@1.4.0","_shasum":"a6602dff7e04a8306dc0db9a551e92e8b5662ad8","_from":".","_npmVersion":"3.8.7","_nodeVersion":"5.4.1","_npmUser":{"name":"anonymous","email":"chris@neversaw.us"},"dist":{"shasum":"a6602dff7e04a8306dc0db9a551e92e8b5662ad8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cssauron/-/cssauron-1.4.0.tgz","integrity":"sha512-Ht70DcFBh+/ekjVrYS2PlDMdSQEl3OFNmjK6lcn49HptBgilXf/Zwg4uFh9Xn0pX3Q8YOkSjIFOfK2osvdqpBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC7pbQ/R3rWt8X5V36ofetsvhCiV6ZG9X9tkncJwF6m+AiEA8lGSx3+ukW1hDV805qtegds4M+et8wwqJ4++o7F00e8="}]},"maintainers":[{"name":"anonymous","email":"chris@neversaw.us"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cssauron-1.4.0.tgz_1462652364161_0.7332158519420773"}}},"name":"cssauron","time":{"modified":"2022-06-14T05:00:51.318Z","created":"2012-11-22T01:46:08.265Z","0.0.0":"2012-11-22T01:46:09.131Z","0.0.2":"2012-11-24T01:17:19.508Z","0.0.3":"2012-12-21T07:03:19.650Z","0.1.0":"2012-12-28T00:02:04.427Z","0.1.1":"2012-12-28T00:03:41.651Z","0.2.0":"2013-07-15T19:43:24.133Z","0.2.1":"2013-07-16T17:47:25.315Z","1.0.0":"2013-10-24T07:33:24.788Z","1.1.0":"2013-11-19T04:17:10.322Z","1.1.1":"2014-05-18T07:55:21.510Z","1.1.2":"2014-06-05T06:03:55.203Z","1.2.0":"2014-08-11T18:20:15.760Z","1.3.0":"2016-05-07T20:14:53.259Z","1.4.0":"2016-05-07T20:19:26.512Z"},"readmeFilename":"README.md","homepage":"https://github.com/chrisdickinson/cssauron#readme"}