1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
"name": "htmlparser2",
"description": "Fast & forgiving HTML/XML/RSS parser",
"version": "3.3.0",
"author": "Felix Boehm <me@feedic.com>",
"keywords": ["html", "parser", "streams", "xml", "dom", "rss", "feed", "atom"],
"contributors": ["Chris Winberry <chris@winberry.net>"],
"repository": {
"type": "git",
"url": "git://github.com/fb55/htmlparser2.git"
},
"bugs": {
"mail": "me@feedic.com",
"url": "http://github.com/fb55/htmlparser2/issues"
},
"directories": {
"lib": "lib/"
},
"main": "lib/index.js",
"scripts": {
"test": "mocha -R spec"
},
"dependencies": {
"domhandler": "2.1",
"domutils": "1.1",
"domelementtype": "1",
"readable-stream": "1.0"
},
"devDependencies": {
"mocha": "1"
},
"licenses": [{
"type": "MIT",
"url": "http://github.com/fb55/htmlparser2/raw/master/LICENSE"
}]
}
|