react / wstein / node_modules / jest-cli / node_modules / jsdom / node_modules / cssom / package.json
80676 views{1"name": "cssom",2"description": "CSS Object Model implementation and CSS parser",3"keywords": [4"CSS",5"CSSOM",6"parser",7"styleSheet"8],9"version": "0.3.0",10"homepage": "https://github.com/NV/CSSOM",11"author": {12"name": "Nikita Vasilyev",13"email": "[email protected]"14},15"repository": {16"type": "git",17"url": "git://github.com/NV/CSSOM.git"18},19"bugs": {20"url": "https://github.com/NV/CSSOM/issues"21},22"main": "./lib/index.js",23"devDependencies": {24"jake": "~0.7.3"25},26"license": {27"type": "MIT",28"url": "http://creativecommons.org/licenses/MIT/"29},30"scripts": {31"prepublish": "jake lib/index.js"32},33"readme": "# CSSOM\n\nCSSOM.js is a CSS parser written in pure JavaScript. It 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 with [Jake](http://github.com/mde/jake):\n\n ➤ jake\n build/CSSOM.js is done\n\nTo use it with Node.js:\n\n npm install cssom\n\n## [Specs](http://nv.github.com/CSSOM/spec/)\n\n## [Who uses CSSOM.js](https://github.com/NV/CSSOM/wiki/Who-uses-CSSOM.js)\n",34"readmeFilename": "README.mdown",35"_id": "[email protected]",36"dist": {37"shasum": "386d5135528fe65c1ee1bc7c4e55a38854dbcf7a",38"tarball": "http://registry.npmjs.org/cssom/-/cssom-0.3.0.tgz"39},40"_resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.0.tgz",41"_from": "cssom@>=0.3.0 <0.4.0",42"_npmVersion": "1.3.8",43"_npmUser": {44"name": "domenic",45"email": "[email protected]"46},47"maintainers": [48{49"name": "nv",50"email": "[email protected]"51},52{53"name": "domenic",54"email": "[email protected]"55}56],57"directories": {},58"_shasum": "386d5135528fe65c1ee1bc7c4e55a38854dbcf7a"59}606162