mirror of
https://github.com/danbulant/node-html-parser
synced 2026-06-19 06:31:30 +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
|
## Install
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
npm install --save fast-html-parser
|
npm install --save node-html-parser
|
||||||
```
|
```
|
||||||
|
|
||||||
## Performance
|
## Performance
|
||||||
|
|
|
||||||
14
package.json
14
package.json
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "fast-html-parser",
|
"name": "node-html-parser",
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"description": "A very fast HTML parser, generating a simplified DOM, with basic element query support.",
|
"description": "A very fast HTML parser, generating a simplified DOM, with basic element query support.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
|
|
@ -7,7 +7,13 @@
|
||||||
"test": "gulp && mocha",
|
"test": "gulp && mocha",
|
||||||
"build": "gulp"
|
"build": "gulp"
|
||||||
},
|
},
|
||||||
|
"keywords": [
|
||||||
|
"fast html parser nodejs typescript"
|
||||||
|
],
|
||||||
"author": "Xiaoyi Shi <ashi009@gmail.com>",
|
"author": "Xiaoyi Shi <ashi009@gmail.com>",
|
||||||
|
"contributors": [
|
||||||
|
"taoqf<tao_qiufeng@126.com>"
|
||||||
|
],
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"entities": "latest"
|
"entities": "latest"
|
||||||
|
|
@ -42,10 +48,10 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/ashi009/node-fast-html-parser.git"
|
"url": "https://github.com/taoqf/node-fast-html-parser.git"
|
||||||
},
|
},
|
||||||
"bugs": {
|
"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