-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.06 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
41
42
43
44
45
{
"name": "hget",
"description": "Render websites in plain text from your terminal",
"version": "3.1.0",
"homepage": "https://github.com/bevacqua/hget",
"authors": [
"Nicolas Bevacqua <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/bevacqua/hget.git"
},
"bugs": {
"url": "https://github.com/bevacqua/hget/issues"
},
"bin": {
"hget": "./cli"
},
"scripts": {
"test": "lab -P test -v",
"coverage": "lab -P test -r lcov -o coverage/lcov.info -r html -o coverage/index.html",
"publish-coverage": "coveralls < coverage/lcov.info"
},
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"cheerio": "^0.22.0",
"default-pager": "^1.1.0",
"get-stdin": "^5.0.1",
"he": "^1.1.0",
"html-md-2": "3.0.0",
"minimist": "^1.2.0",
"request": "^2.79.0",
"stripcolorcodes": "^0.1.0",
"type-is": "^1.6.14",
"ultramarked": "^1.7.0"
},
"devDependencies": {
"code": "^4.0.0",
"coveralls": "^2.11.15",
"lab": "^11.2.2"
}
}