mirror of
https://github.com/danbulant/node-html-parser
synced 2026-05-19 04:18:52 +00:00
43 lines
1 KiB
JSON
43 lines
1 KiB
JSON
{
|
|
"name": "fast-html-parser",
|
|
"version": "1.0.1",
|
|
"description": "A very fast HTML parser, generating a simplified DOM, with basic element query support.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"posttest": "mocha -R travis-cov",
|
|
"coverage": "mocha -R html-cov > coverage.html"
|
|
},
|
|
"author": "Xiaoyi Shi <ashi009@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"apollojs": "^1.3.0",
|
|
"entities": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^1",
|
|
"should": "*",
|
|
"blanket": "*",
|
|
"travis-cov": "*"
|
|
},
|
|
"config": {
|
|
"blanket": {
|
|
"pattern": "index.js",
|
|
"data-cover-never": ["node_modules"]
|
|
},
|
|
"travis-cov": {
|
|
"threshold": 70
|
|
}
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ashi009/node-fast-html-parser.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/ashi009/node-fast-html-parser/issues"
|
|
},
|
|
"homepage": "https://github.com/ashi009/node-fast-html-parser"
|
|
}
|