-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 KB
/
package.json
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
{
"name": "readability-cli",
"version": "2.4.5",
"description": "Firefox Reader Mode in your terminal - get useful text from a web page using Mozilla's Readability library",
"main": "index.js",
"bin": {
"readable": "./index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"man": "marked-man --version=\"v$(node -p 'require(\"./package.json\").version')\" readability-cli.1.md > readability-cli.1"
},
"man": [
"./readability-cli.1"
],
"repository": "gitlab:gardenappl/readability-cli",
"author": "gardenapple <gardenapple@posteo.net>",
"bugs": "https://gitlab.com/gardenappl/readability-cli/-/issues",
"keywords": [
"console",
"terminal",
"cli",
"readable",
"reader-mode",
"firefox",
"mozilla",
"html"
],
"license": "GPL-3.0-only",
"dependencies": {
"@mozilla/readability": "^0.4.4",
"dompurify": "^3.0.5",
"jsdom": "^22.1.0",
"y18n": "^5.0.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"marked-man": "^1.3.1"
}
}