You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
780 B
41 lines
780 B
8 months ago
|
{
|
||
|
"name": "domhandler",
|
||
|
"version": "2.2.1",
|
||
|
"description": "handler for htmlparser2 that turns pages into a dom",
|
||
|
"main": "index.js",
|
||
|
"directories": {
|
||
|
"test": "tests"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "mocha -R list && jshint index.js test/"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/fb55/DomHandler.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"dom",
|
||
|
"htmlparser2"
|
||
|
],
|
||
|
"dependencies": {
|
||
|
"domelementtype": "1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"htmlparser2": "3.2",
|
||
|
"mocha": "1",
|
||
|
"jshint": "~2.3.0"
|
||
|
},
|
||
|
"author": "Felix Boehm <me@feedic.com>",
|
||
|
"jshintConfig": {
|
||
|
"quotmark": "double",
|
||
|
"trailing": true,
|
||
|
"unused": true,
|
||
|
"undef": true,
|
||
|
"node": true,
|
||
|
"proto": true,
|
||
|
"globals": {
|
||
|
"it": true
|
||
|
}
|
||
|
}
|
||
|
}
|