Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(692)

Unified Diff: node_modules/vulcanize/node_modules/cssom/package.json

Issue 800513006: Added vulcanize under third_party/npm_modules (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: node_modules/vulcanize/node_modules/cssom/package.json
diff --git a/node_modules/vulcanize/node_modules/cssom/package.json b/node_modules/vulcanize/node_modules/cssom/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..dceb8e022619ba08977da48374833e6d917465a0
--- /dev/null
+++ b/node_modules/vulcanize/node_modules/cssom/package.json
@@ -0,0 +1,46 @@
+{
+ "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"
+ },
+ "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/node-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",
+ "readmeFilename": "README.mdown",
+ "_id": "cssom@0.2.5",
+ "_from": "cssom@^0.2.3"
+}
« no previous file with comments | « node_modules/vulcanize/node_modules/cssom/lib/parse.js ('k') | node_modules/vulcanize/node_modules/nopt/.npmignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698