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

Unified Diff: tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/entities/package.json

Issue 125733002: Add vulcanize to tools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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: tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/entities/package.json
diff --git a/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/entities/package.json b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/entities/package.json
new file mode 100644
index 0000000000000000000000000000000000000000..3513d6d5e5edc5d0bd7f81a43f92efade63fbb8d
--- /dev/null
+++ b/tools/vulcanize/node_modules/vulcanize/node_modules/cheerio/node_modules/entities/package.json
@@ -0,0 +1,38 @@
+{
+ "name": "entities",
+ "version": "0.3.0",
+ "description": "Encode & decode XML/HTML entities with ease",
+ "author": {
+ "name": "Felix Boehm",
+ "email": "me@feedic.com"
+ },
+ "keywords": [
+ "html",
+ "xml",
+ "entity",
+ "encoding"
+ ],
+ "main": "./index.js",
+ "directories": {
+ "test": "test"
+ },
+ "devDependencies": {
+ "mocha": "~1.9.0"
+ },
+ "scripts": {
+ "test": "mocha"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/fb55/node-entities.git"
+ },
+ "license": "BSD-like",
+ "readme": "#entities\n\nEn- & decoder for XML/HTML entities.\n\n####Features:\n* Focussed on ___speed___\n* Supports three levels of entities: __XML__, __HTML4__ & __HTML5__\n * Supports _char code_ entities (eg. `&#x55;`)\n\n##How to…\n\n###…install `entities`\n\n npm i entities\n\n###…use `entities`\n\n```javascript\n//encoding\nrequire(\"entities\").encode(<str> data[, <int> level]);\n//decoding\nrequire(\"entities\").decode(<str> data[, <int> level]);\n```\n\nThe `level` attribute indicates what level of entities should be decoded (0 = XML, 1 = HTML4 and 2 = HTML5). The default is 0 (read: XML).\n\nThere are also methods to access the level directly. Just append the name of the level to the action and you're ready to go (e.g. `encodeHTML4(data)`, `decodeXML(data)`).\n",
+ "readmeFilename": "readme.md",
+ "bugs": {
+ "url": "https://github.com/fb55/node-entities/issues"
+ },
+ "homepage": "https://github.com/fb55/node-entities",
+ "_id": "entities@0.3.0",
+ "_from": "entities@0.x"
+}

Powered by Google App Engine
This is Rietveld 408576698