mirror of
https://github.com/danbulant/node-html-parser
synced 2026-05-19 04:18:52 +00:00
change package name
This commit is contained in:
parent
c23500f868
commit
7e2b3016b8
2 changed files with 11 additions and 5 deletions
|
|
@ -11,7 +11,7 @@ no closing `<li>`, `<td>` etc).
|
|||
## Install
|
||||
|
||||
```shell
|
||||
npm install --save fast-html-parser
|
||||
npm install --save node-html-parser
|
||||
```
|
||||
|
||||
## Performance
|
||||
|
|
|
|||
14
package.json
14
package.json
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "fast-html-parser",
|
||||
"name": "node-html-parser",
|
||||
"version": "1.1.0",
|
||||
"description": "A very fast HTML parser, generating a simplified DOM, with basic element query support.",
|
||||
"main": "index.js",
|
||||
|
|
@ -7,7 +7,13 @@
|
|||
"test": "gulp && mocha",
|
||||
"build": "gulp"
|
||||
},
|
||||
"keywords": [
|
||||
"fast html parser nodejs typescript"
|
||||
],
|
||||
"author": "Xiaoyi Shi <ashi009@gmail.com>",
|
||||
"contributors": [
|
||||
"taoqf<tao_qiufeng@126.com>"
|
||||
],
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"entities": "latest"
|
||||
|
|
@ -42,10 +48,10 @@
|
|||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ashi009/node-fast-html-parser.git"
|
||||
"url": "https://github.com/taoqf/node-fast-html-parser.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/ashi009/node-fast-html-parser/issues"
|
||||
"url": "https://github.com/taoqf/node-fast-html-parser/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ashi009/node-fast-html-parser"
|
||||
"homepage": "https://github.com/taoqf/node-fast-html-parser"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue