{"_attachments":{},"_id":"cssom","_rev":"4871-61f1514d963ca28f5ee52e89","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"description":"CSS Object Model implementation and CSS parser","dist-tags":{"latest":"0.5.0"},"license":"MIT","maintainers":[{"name":"domenic","email":"d@domenic.me"},{"name":"nv","email":"me@elv1s.ru"}],"name":"cssom","readme":"# CSSOM\n\nCSSOM.js is a CSS parser written in pure JavaScript. It is also a partial implementation of [CSS Object Model](http://dev.w3.org/csswg/cssom/). \n\n    CSSOM.parse(\"body {color: black}\")\n    -> {\n      cssRules: [\n        {\n          selectorText: \"body\",\n          style: {\n            0: \"color\",\n            color: \"black\",\n            length: 1\n          }\n        }\n      ]\n    }\n\n\n## [Parser demo](http://nv.github.com/CSSOM/docs/parse.html)\n\nWorks well in Google Chrome 6+, Safari 5+, Firefox 3.6+, Opera 10.63+.\nDoesn't work in IE < 9 because of unsupported getters/setters.\n\nTo use CSSOM.js in the browser you might want to build a one-file version that exposes a single `CSSOM` global variable:\n\n    ➤ git clone https://github.com/NV/CSSOM.git\n    ➤ cd CSSOM\n    ➤ node build.js\n    build/CSSOM.js is done\n\nTo use it with Node.js or any other CommonJS loader:\n\n    ➤ npm install cssom\n\n## Don’t use it if...\n\nYou parse CSS to mungle, minify or reformat code like this:\n\n```css\ndiv {\n  background: gray;\n  background: linear-gradient(to bottom, white 0%, black 100%);\n}\n```\n\nThis pattern is often used to give browsers that don’t understand linear gradients a fallback solution (e.g. gray color in the example).\nIn CSSOM, `background: gray` [gets overwritten](http://nv.github.io/CSSOM/docs/parse.html#css=div%20%7B%0A%20%20%20%20%20%20background%3A%20gray%3B%0A%20%20%20%20background%3A%20linear-gradient(to%20bottom%2C%20white%200%25%2C%20black%20100%25)%3B%0A%7D).\nIt does **NOT** get preserved.\n\nIf you do CSS mungling, minification, or image inlining, considere using one of the following:\n\n  * [postcss](https://github.com/postcss/postcss)\n  * [reworkcss/css](https://github.com/reworkcss/css)\n  * [csso](https://github.com/css/csso)\n  * [mensch](https://github.com/brettstimmerman/mensch)\n\n\n## [Tests](http://nv.github.com/CSSOM/spec/)\n\nTo run tests locally:\n\n    ➤ git submodule init\n    ➤ git submodule update\n\n\n## [Who uses CSSOM.js](https://github.com/NV/CSSOM/wiki/Who-uses-CSSOM.js)\n","time":{"created":"2022-01-26T13:49:01.535Z","modified":"2023-07-27T21:34:34.441Z","0.5.0":"2021-06-20T19:55:11.575Z","0.4.4":"2019-11-14T00:40:05.800Z","0.4.3":"2019-11-13T23:33:55.281Z","0.4.2":"2019-11-11T03:09:46.503Z","0.4.1":"2019-07-04T03:18:57.815Z","0.4.0":"2019-07-04T02:46:50.862Z","0.3.8":"2019-07-04T02:33:14.137Z","0.3.7":"2019-07-04T02:29:05.209Z","0.3.6":"2019-02-05T01:59:04.845Z","0.3.5":"2019-02-05T01:48:56.443Z","0.3.4":"2018-07-03T07:17:00.381Z","0.3.3":"2018-06-28T18:15:42.549Z","0.3.2":"2017-01-20T23:52:41.684Z","0.3.1":"2016-02-01T00:37:48.624Z","0.3.0":"2013-11-09T02:58:33.931Z","0.2.5":"2012-07-15T22:21:54.083Z","0.2.4":"2012-06-26T14:13:39.119Z","0.2.3":"2012-02-18T14:10:14.717Z","0.2.2":"2012-01-04T22:33:00.885Z","0.2.1":"2011-11-20T12:18:49.773Z","0.2.0":"2011-10-24T21:58:20.263Z"},"versions":{"0.5.0":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.5.0","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","license":"MIT","gitHead":"1fd2d1dfbbe58d3c38986ee59ec214152bb53bdb","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.5.0","_nodeVersion":"12.16.3","_npmVersion":"7.18.1","dist":{"shasum":"d254fa92cd8b6fbd83811b9fbaed34663cc17c36","size":12252,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.5.0.tgz","integrity":"sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw=="},"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"directories":{},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.5.0_1624218911464_0.4215993294285114"},"_hasShrinkwrap":false,"publish_time":1624218911575,"_cnpm_publish_time":1624218911575,"_cnpmcore_publish_time":"2021-12-16T10:07:12.175Z"},"0.4.4":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.4.4","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","license":"MIT","gitHead":"9dad7db025396eda3da34101a4474c53e7b22cb9","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.4.4","_nodeVersion":"8.11.1","_npmVersion":"6.10.0","dist":{"shasum":"5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10","size":11838,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.4.4.tgz","integrity":"sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.4.4_1573692005607_0.9330277761553716"},"_hasShrinkwrap":false,"publish_time":1573692005800,"_cnpm_publish_time":1573692005800,"_cnpmcore_publish_time":"2021-12-16T10:07:12.337Z"},"0.4.3":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.4.3","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","license":"MIT","gitHead":"a4b46da3a2f3eeeca488f098aaedee2a02825e86","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.4.3","_nodeVersion":"8.11.1","_npmVersion":"6.10.0","dist":{"shasum":"264eef6452e7bf30b2a4ff218af5e02f19b30bbe","size":11801,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.4.3.tgz","integrity":"sha512-dZisaUJnxZM8VCmsYqCNws8YsULg+nwLSa37lc5ulwp0m+QN9gego/XB3p99hdah3PFErlReovXaqBDrRws4yg=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.4.3_1573688035075_0.3057085574804457"},"_hasShrinkwrap":false,"publish_time":1573688035281,"_cnpm_publish_time":1573688035281,"_cnpmcore_publish_time":"2021-12-16T10:07:12.537Z"},"0.4.2":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.4.2","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","license":"MIT","gitHead":"ab29a6e3951960438f6fb9f7c2ae4466a171889b","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.4.2","_nodeVersion":"8.11.1","_npmVersion":"6.10.0","dist":{"shasum":"e2abd06e1267a7f2e5eccd7770c9ebe1bd88648b","size":11795,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.4.2.tgz","integrity":"sha512-fVXFVBr7JPDcgqa92UNr6HIpeMypyG/XVloB+512KH43Z2aum8ZNVzRapWR4mZ/f2UlRMymIoDO3aFJmQ6Y3RA=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.4.2_1573441786379_0.10361997872216167"},"_hasShrinkwrap":false,"publish_time":1573441786503,"_cnpm_publish_time":1573441786503,"_cnpmcore_publish_time":"2021-12-16T10:07:12.741Z"},"0.4.1":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.4.1","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","license":"MIT","gitHead":"7b0d9aaf2dd8ab9fb0a5c9177539fdf01e06291f","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.4.1","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"b24111d236b6dbd00cdfacb5ab67a20473381fe3","size":11939,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.4.1.tgz","integrity":"sha512-6Aajq0XmukE7HdXUU6IoSWuH1H6gH9z6qmagsstTiN7cW2FNTsb+J2Chs+ufPgZCsV/yo8oaEudQLrb9dGxSVQ=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.4.1_1562210337658_0.8607138506233405"},"_hasShrinkwrap":false,"publish_time":1562210337815,"_cnpm_publish_time":1562210337815,"_cnpmcore_publish_time":"2021-12-16T10:07:13.114Z"},"0.4.0":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.4.0","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","license":"MIT","gitHead":"7b0d9aaf2dd8ab9fb0a5c9177539fdf01e06291f","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.4.0","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"d9f41c3ba7be95568d3c17bba3a50c087f22601f","size":11939,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.4.0.tgz","integrity":"sha512-i7nvDQYa6VUSza54xWZxSP5b+nKf4tUSqC9L77zyvNyG054sqhyqawBmAuHu+bI08CrUju9FnR649PRM4tkr7w=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.4.0_1562208410651_0.25736851094807367"},"_hasShrinkwrap":false,"publish_time":1562208410862,"_cnpm_publish_time":1562208410862,"_cnpmcore_publish_time":"2021-12-16T10:07:13.323Z"},"0.3.8":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.8","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","license":"MIT","gitHead":"c1d40c63bb06545637958f21a7214929bf833a3d","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.3.8","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"9f1276f5b2b463f2114d3f2c75250af8c1a36f4a","size":11940,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.8.tgz","integrity":"sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.3.8_1562207593964_0.4169974114837407"},"_hasShrinkwrap":false,"publish_time":1562207594137,"_cnpm_publish_time":1562207594137,"_cnpmcore_publish_time":"2021-12-16T10:07:13.520Z"},"0.3.7":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.7","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","license":"MIT","gitHead":"7f740ff8db02269346cb954da03fdf91098dfc18","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.3.7","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"19079ee89e65d5b1584abcd0be35b9e7402d5592","size":13553,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.7.tgz","integrity":"sha512-tW5VpHfHaWiPXE+qhg7lCIbd5PcbdUHRkEe/CnL5dfaUMQiqxczBwbxAmWnOtOjgNye2yviH4JdlS/NDZnODwQ=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.3.7_1562207345079_0.0033368420546759925"},"_hasShrinkwrap":false,"publish_time":1562207345209,"_cnpm_publish_time":1562207345209,"_cnpmcore_publish_time":"2021-12-16T10:07:13.777Z"},"0.3.6":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.6","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","devDependencies":{"jake":"~0.7.3"},"license":"MIT","scripts":{"prepublish":"jake lib/index.js"},"gitHead":"5938d78789bcb2292f1d2671b623ab75bd81ca59","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.3.6","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"f85206cee04efa841f3c5982a74ba96ab20d65ad","size":13617,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.6.tgz","integrity":"sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.3.6_1549331944759_0.7002217265935236"},"_hasShrinkwrap":false,"publish_time":1549331944845,"_cnpm_publish_time":1549331944845,"_cnpmcore_publish_time":"2021-12-16T10:07:13.983Z"},"0.3.5":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.5","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"main":"./lib/index.js","devDependencies":{"jake":"~0.7.3"},"license":"MIT","scripts":{"prepublish":"jake lib/index.js"},"gitHead":"16186bf80b98949a79c82bc35b3052e4b51c3e4c","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.3.5","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"f2faeb733e4cf7e5d705fa419927a91da331d771","size":13506,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.5.tgz","integrity":"sha512-2yqFovCQZAJ/a2y6VUi8JLLs7WSkOYgGV9/5fQmBFz0sEpUDKMXzS0Sn2gmAWr9RF/5Vo0D4oTitifcYVSr/sA=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.3.5_1549331336364_0.9618972218564223"},"_hasShrinkwrap":false,"publish_time":1549331336443,"_cnpm_publish_time":1549331336443,"_cnpmcore_publish_time":"2021-12-16T10:07:14.209Z"},"0.3.4":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.4","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"files":["lib/"],"main":"./lib/index.js","devDependencies":{"jake":"~0.7.3"},"license":"MIT","scripts":{"prepublish":"jake lib/index.js"},"gitHead":"16186bf80b98949a79c82bc35b3052e4b51c3e4c","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.3.4","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"8cd52e8a3acfd68d3aed38ee0a640177d2f9d797","size":13506,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.4.tgz","integrity":"sha512-+7prCSORpXNeR4/fUP3rL+TzqtiFfhMvTd7uEqMdgPvLPt4+uzFUeufx5RHjGTACCargg/DiEt/moMQmvnfkog=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.3.4_1530602220273_0.5727537425865918"},"_hasShrinkwrap":false,"publish_time":1530602220381,"_cnpm_publish_time":1530602220381,"_cnpmcore_publish_time":"2021-12-16T10:07:14.425Z"},"0.3.3":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.3","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"files":["lib/"],"main":"./lib/index.js","devDependencies":{"jake":"~0.7.3"},"license":"MIT","scripts":{"prepublish":"jake lib/index.js"},"gitHead":"bfe6d7eb9ece90d5f3419d2219b7ac4bdbdce6af","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","_id":"cssom@0.3.3","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"7b344769915759c2c9e3eb8c26f7fd533dbea252","size":13502,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.3.tgz","integrity":"sha512-pjE/I/NSp3iyeoxXN5QaoJpgzYUMj2dJHx9OSufoTliJLDx+kuOQaMCJW8OwvrKJswhXUHnHN6eUmUSETN0msg=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cssom_0.3.3_1530209742443_0.028199153019609957"},"_hasShrinkwrap":false,"publish_time":1530209742549,"_cnpm_publish_time":1530209742549,"_cnpmcore_publish_time":"2021-12-16T10:07:14.635Z"},"0.3.2":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.2","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"https://github.com/NV/CSSOM"},"files":["lib/"],"main":"./lib/index.js","devDependencies":{"jake":"~0.7.3"},"license":"MIT","scripts":{"prepublish":"jake lib/index.js"},"gitHead":"d600816ea9442c5e33f27ff59de536d7b7ccd239","bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM","_id":"cssom@0.3.2","_shasum":"b8036170c79f07a90ff2f16e22284027a243848b","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.3","_npmUser":{"name":"nv","email":"me@elv1s.ru"},"dist":{"shasum":"b8036170c79f07a90ff2f16e22284027a243848b","size":12844,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.2.tgz","integrity":"sha512-N72oNABuYrOUdPYkT64J8mvYNxFU35kU4Zer3N69aWz4AylPUlSiS/75J+VMAMz9OFf+TTrN3UBrPbcEegOqtg=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cssom-0.3.2.tgz_1484956361462_0.48309571552090347"},"directories":{},"publish_time":1484956361684,"_hasShrinkwrap":false,"_cnpm_publish_time":1484956361684,"_cnpmcore_publish_time":"2021-12-16T10:07:14.798Z"},"0.3.1":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.1","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git+https://github.com/nv/CSSOM.git"},"files":["lib/"],"main":"./lib/index.js","devDependencies":{"jake":"~0.7.3"},"license":"MIT","scripts":{"prepublish":"jake lib/index.js"},"gitHead":"c82ca18e35e207bb8ce57ffa2d3b783c026f7a52","bugs":{"url":"https://github.com/nv/CSSOM/issues"},"homepage":"https://github.com/nv/CSSOM#readme","_id":"cssom@0.3.1","_shasum":"c9e37ef2490e64f6d1baa10fda852257082c25d3","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"domenic","email":"d@domenic.me"},"dist":{"shasum":"c9e37ef2490e64f6d1baa10fda852257082c25d3","size":11388,"noattachment":false,"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.1.tgz","integrity":"sha512-y+pT9rKcn6hVx6J2UTPMEgUR1jTuF+ea0iA9j6e+YX0ELrQgxCYPKH4XfB7SIOkkLJyicIZPVEjq9kHxDJshfg=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"publish_time":1454287068624,"_hasShrinkwrap":false,"_cnpm_publish_time":1454287068624,"_cnpmcore_publish_time":"2021-12-16T10:07:14.992Z"},"0.3.0":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.3.0","homepage":"https://github.com/NV/CSSOM","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git://github.com/NV/CSSOM.git"},"bugs":{"url":"https://github.com/NV/CSSOM/issues"},"main":"./lib/index.js","devDependencies":{"jake":"~0.7.3"},"license":{"type":"MIT","url":"http://creativecommons.org/licenses/MIT/"},"scripts":{"prepublish":"jake lib/index.js"},"readmeFilename":"README.mdown","_id":"cssom@0.3.0","dist":{"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.3.0.tgz","shasum":"386d5135528fe65c1ee1bc7c4e55a38854dbcf7a","size":10891,"noattachment":false,"integrity":"sha512-rdm8ap6kLpJjI9MDKoECB/Eb8ft+JZNDWJ6zETzR34vUTLLgztSNUVFxOzojw3F1WJewhzQETeh5EHwHMUumbQ=="},"_resolved":"c:\\Users\\Domenic\\AppData\\Local\\Temp\\npm-7124-1Hep516w\\1383965915535-0.7970385393127799\\tmp.tgz","_from":".","_npmVersion":"1.3.8","_npmUser":{"name":"domenic","email":"domenic@domenicdenicola.com"},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"directories":{},"publish_time":1383965913931,"_hasShrinkwrap":false,"_cnpm_publish_time":1383965913931,"_cnpmcore_publish_time":"2021-12-16T10:07:15.248Z"},"0.2.5":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.2.5","homepage":"https://github.com/NV/CSSOM","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git://github.com/NV/CSSOM.git"},"bugs":{"url":"https://github.com/NV/CSSOM/issues"},"directories":{"lib":"./lib"},"main":"./lib/index.js","engines":{"node":">=0.2.0"},"devDependencies":{"jake":"0.2.x"},"licenses":[{"type":"MIT","url":"http://creativecommons.org/licenses/MIT/"}],"scripts":{"prepublish":"jake lib/index.js"},"_id":"cssom@0.2.5","dist":{"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.2.5.tgz","shasum":"2682709b5902e7212df529116ff788cd5b254894","size":7592,"noattachment":false,"integrity":"sha512-b9ecqKEfWrNcyzx5+1nmcfi80fPp8dVM8rlAh7fFK14PZbNjp++gRjyZTZfLJQa/Lw0qeCJho7WBIl0nw0v6HA=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"publish_time":1342390914083,"_hasShrinkwrap":false,"_cnpm_publish_time":1342390914083,"_cnpmcore_publish_time":"2021-12-16T10:07:15.455Z"},"0.2.4":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.2.4","homepage":"https://github.com/NV/CSSOM","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git://github.com/NV/CSSOM.git"},"bugs":{"url":"https://github.com/NV/CSSOM/issues"},"directories":{"lib":"./lib"},"main":"./lib/index.js","engines":{"node":">=0.2.0"},"devDependencies":{"jake":"0.2.x"},"licenses":[{"type":"MIT","url":"http://creativecommons.org/licenses/MIT/"}],"scripts":{"prepublish":"jake lib/index.js"},"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"_id":"cssom@0.2.4","dependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.24","_nodeVersion":"v0.6.19","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.2.4.tgz","shasum":"3d989f0ef82910df370ee03d97f5d546759c8b5f","size":7043,"noattachment":false,"integrity":"sha512-0OAJk015AcxboFzepwyKvspVXseHS4lCIR2rhm0NzPezeZoxDau+3VLcZJiXCERWuerhqEIoGEiqzxCz0bBBMA=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"publish_time":1340720019119,"_hasShrinkwrap":false,"_cnpm_publish_time":1340720019119,"_cnpmcore_publish_time":"2021-12-16T10:07:15.668Z"},"0.2.3":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.2.3","homepage":"https://github.com/NV/CSSOM","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git://github.com/NV/CSSOM.git"},"bugs":{"url":"https://github.com/NV/CSSOM/issues"},"directories":{"lib":"./lib"},"main":"./lib/index.js","engines":{"node":">=0.2.0"},"devDependencies":{"jake":"0.2.x"},"licenses":[{"type":"MIT","url":"http://creativecommons.org/licenses/MIT/"}],"scripts":{"prepublish":"jake lib/index.js"},"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"_id":"cssom@0.2.3","dependencies":{},"optionalDependencies":{},"_engineSupported":true,"_npmVersion":"1.1.0-3","_nodeVersion":"v0.6.9","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.2.3.tgz","shasum":"7f9a236c0b05dbc06945ae055ba1c6d8eab91c69","size":6768,"noattachment":false,"integrity":"sha512-BIQF59nG8UTQpFcjnNpZdLN4u/lSmtSQkKL31brHN9xJTStdgVctMEbpJSwjR1NpqsQ34D6e8SIVAt8QQpf7JQ=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"publish_time":1329574214717,"_hasShrinkwrap":false,"_cnpm_publish_time":1329574214717,"_cnpmcore_publish_time":"2021-12-16T10:07:15.862Z"},"0.2.2":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.2.2","homepage":"https://github.com/NV/CSSOM","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git://github.com/NV/CSSOM.git"},"bugs":{"url":"https://github.com/NV/CSSOM/issues"},"directories":{"lib":"./lib"},"main":"./lib/index.js","engines":{"node":">=0.2.0"},"devDependencies":{"jake":"0.2.x"},"licenses":[{"type":"MIT","url":"http://creativecommons.org/licenses/MIT/"}],"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"_id":"cssom@0.2.2","dependencies":{},"_engineSupported":true,"_npmVersion":"1.0.106","_nodeVersion":"v0.6.6","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.2.2.tgz","shasum":"9da13abfa0de8cfba73cf9d5dc3e5d992882613f","size":10240,"noattachment":false,"integrity":"sha512-RFyXl+ruOWy2eL3Ic0a29JrA9GFqWHE9lEyWB5BsQ5NXnwiPqw9Lho6+1lJmUhMBM9bcOziZrXBcQ8lwTkHC9Q=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"publish_time":1325716380885,"_hasShrinkwrap":false,"_cnpm_publish_time":1325716380885,"_cnpmcore_publish_time":"2021-12-16T10:07:16.077Z"},"0.2.1":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.2.1","homepage":"https://github.com/NV/CSSOM","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git://github.com/NV/CSSOM.git"},"bugs":{"url":"https://github.com/NV/CSSOM/issues"},"directories":{"doc":"./doc","lib":"./lib","test":"./test"},"main":"./lib/index.js","engines":{"node":">=0.2.0"},"licenses":[{"type":"MIT","url":"http://creativecommons.org/licenses/MIT/"}],"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"_id":"cssom@0.2.1","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.97","_nodeVersion":"v0.4.8","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.2.1.tgz","shasum":"6f8353134a3462df471827ae768cd1715885f652","size":40960,"noattachment":false,"integrity":"sha512-ggJxRSam/+6kZzrgm+fPFaTSmbj8gvpJ34govDlW1Wf0EMUzSqcH8BeChyar8t3XPJvNO6qMZuHJsh4CiRNZyQ=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"publish_time":1321791529773,"_hasShrinkwrap":false,"_cnpm_publish_time":1321791529773,"_cnpmcore_publish_time":"2021-12-16T10:07:16.350Z"},"0.2.0":{"name":"cssom","description":"CSS Object Model implementation and CSS parser","keywords":["CSS","CSSOM","parser","styleSheet"],"version":"0.2.0","homepage":"https://github.com/NV/CSSOM","author":{"name":"Nikita Vasilyev","email":"me@elv1s.ru"},"repository":{"type":"git","url":"git://github.com/NV/CSSOM.git"},"bugs":{"url":"https://github.com/NV/CSSOM/issues"},"directories":{"doc":"./doc","lib":"./lib","test":"./test"},"main":"./lib/index.js","engines":{"node":">=0.2.0"},"licenses":[{"type":"MIT","url":"http://creativecommons.org/licenses/MIT/"}],"_npmUser":{"name":"nv","email":"me@elv1s.ru"},"_id":"cssom@0.2.0","dependencies":{},"devDependencies":{},"_engineSupported":true,"_npmVersion":"1.0.97","_nodeVersion":"v0.4.8","_defaultsLoaded":true,"dist":{"tarball":"https://registry.npmmirror.com/cssom/-/cssom-0.2.0.tgz","shasum":"ce47d8d63b6bfe46b447476c7feac487b44a8a25","size":40960,"noattachment":false,"integrity":"sha512-IAHXeVCawAZXqmV5nUdlRCPXuDwoiwm3nU6hyGaEsr1tMKOeTEuUlIEA4ULcCfOnvnHJvG/HIM+yowvhZxoOBg=="},"maintainers":[{"name":"nv","email":"me@elv1s.ru"}],"publish_time":1319493500263,"_hasShrinkwrap":false,"_cnpm_publish_time":1319493500263,"_cnpmcore_publish_time":"2021-12-16T10:07:16.792Z"}},"bugs":{"url":"https://github.com/NV/CSSOM/issues"},"homepage":"https://github.com/NV/CSSOM#readme","keywords":["CSS","CSSOM","parser","styleSheet"],"repository":{"type":"git","url":"git+https://github.com/NV/CSSOM.git"},"_source_registry_name":"default"}