-
-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@html-to/text-cli",
"version": "0.5.4",
"description": "CLI html to plain text converter",
"keywords": [
"html",
"node",
"text",
"converter",
"html-to-text",
"cli-wrapper"
],
"license": "MIT",
"author": "KillyMXI <[email protected]>",
"homepage": "https://github.com/html-to-text/node-html-to-text",
"repository": {
"type": "git",
"url": "git://github.com/html-to-text/node-html-to-text.git"
},
"bugs": {
"url": "https://github.com/html-to-text/node-html-to-text/issues"
},
"type": "module",
"bin": {
"html-to-text": "./bin/cli.js"
},
"files": [
"bin",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=14.13.1"
},
"scripts": {
"build:rollup": "rollup -c",
"build": "npm run clean && npm run build:rollup && npm run copy:license",
"clean": "rimraf bin",
"copy:license": "copyfiles -f ../../LICENSE ."
},
"dependencies": {
"@selderee/plugin-htmlparser2": "^0.11.0",
"aspargvs": "^0.6.0",
"deepmerge": "^4.3.1",
"htmlparser2": "^8.0.2",
"selderee": "^0.11.0"
}
}