Comparing version 1.1.2 to 1.1.3
{ | ||
"name": "parse5", | ||
"description": "Fast full-featured HTML parser for Node. Based on WHATWG HTML5 specification.", | ||
"version": "1.1.2", | ||
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)", | ||
"contributors": [ | ||
"Sebastian Mayr <sebmaster16@gmail.com> (http://blog.smayr.name)", | ||
"Sean Lang <slang800@gmail.com> (http://slang.cx)" | ||
], | ||
"devDependencies": { | ||
"nodeunit": "0.8.0" | ||
}, | ||
"keywords": [ | ||
"html", | ||
"parser", | ||
"html5", | ||
"WHATWG", | ||
"specification", | ||
"fast", | ||
"html parser", | ||
"html5 parser", | ||
"htmlparser", | ||
"parse5", | ||
"serializer", | ||
"html serializer", | ||
"htmlserializer", | ||
"sax", | ||
"simple api" | ||
], | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://raw.github.com/inikulin/parse5/master/LICENSE" | ||
} | ||
], | ||
"main": "./index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/inikulin/parse5.git" | ||
}, | ||
"scripts": { | ||
"test": "node test/run_tests.js" | ||
"name": "parse5", | ||
"description": "Fast full-featured HTML parsing/serialization toolset for Node. Based on WHATWG HTML5 specification. ", | ||
"version": "1.1.3", | ||
"author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)", | ||
"contributors": [ | ||
"Sebastian Mayr <sebmaster16@gmail.com> (http://blog.smayr.name)", | ||
"Sean Lang <slang800@gmail.com> (http://slang.cx)" | ||
], | ||
"devDependencies": { | ||
"nodeunit": "0.8.0" | ||
}, | ||
"keywords": [ | ||
"html", | ||
"parser", | ||
"html5", | ||
"WHATWG", | ||
"specification", | ||
"fast", | ||
"html parser", | ||
"html5 parser", | ||
"htmlparser", | ||
"parse5", | ||
"serializer", | ||
"html serializer", | ||
"htmlserializer", | ||
"sax", | ||
"simple api" | ||
], | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://raw.github.com/inikulin/parse5/master/LICENSE" | ||
} | ||
], | ||
"main": "./index.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/inikulin/parse5.git" | ||
}, | ||
"scripts": { | ||
"test": "node test/run_tests.js" | ||
} | ||
} |
![logo](https://raw.github.com/inikulin/parse5/master/logo.png) | ||
[![Build Status](http://img.shields.io/travis/inikulin/parse5.svg?style=flat-square)](https://travis-ci.org/inikulin/parse5) | ||
[![Build Status](http://img.shields.io/travis/inikulin/parse5.svg?style=flat-square)](https://travis-ci.org/inikulin/parse5) | ||
@@ -10,5 +10,5 @@ Fast full-featured HTML parsing/serialization toolset for Node. Based on WHATWG HTML5 specification. | ||
**Included tools:** | ||
* [Parser](https://github.com/inikulin/parse5/blob/master/README.md#class-parser) - HTML to DOM-tree parser. | ||
* [SimpleApiParser](https://github.com/inikulin/parse5/blob/master/README.md#class-simpleapiparser) - [SAX](http://en.wikipedia.org/wiki/Simple_API_for_XML)-style parser for HTML. | ||
* [TreeSerializer](https://github.com/inikulin/parse5/blob/master/README.md#class-treeserializer) - DOM-tree to HTML serializer. | ||
* [Parser](#class-parser) - HTML to DOM-tree parser. | ||
* [SimpleApiParser](#class-simpleapiparser) - [SAX](http://en.wikipedia.org/wiki/Simple_API_for_XML)-style parser for HTML. | ||
* [TreeSerializer](#class-treeserializer) - DOM-tree to HTML serializer. | ||
@@ -21,3 +21,3 @@ ##Install | ||
##Simple usage | ||
##Usage | ||
```js | ||
@@ -155,3 +155,3 @@ var Parser = require('parse5').Parser; | ||
parse.parse('<body>Yo!</body>'); | ||
parser.parse('<body>Yo!</body>'); | ||
``` | ||
@@ -158,0 +158,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
371304
20