forked from tldr-pages/tldr-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "tldr",
"version": "3.4.0",
"description": "Simplified and community-driven man pages",
"author": "Romain Prieto",
"license": "MIT",
"repository": "tldr-pages/tldr-node-client",
"keywords": [
"man",
"pages",
"cheatsheets",
"examples",
"help",
"unix",
"linux",
"osx",
"openbsd",
"freebsd",
"netbsd",
"commands",
"command-line",
"shell",
"bash",
"zsh"
],
"homepage": "https://tldr.sh",
"engines": {
"node": ">=16"
},
"main": "bin/tldr",
"files": [
"bin",
"config.json",
"lib",
"LICENSE.md"
],
"bin": {
"tldr": "./bin/tldr"
},
"preferGlobal": true,
"directories": {
"test": "test"
},
"scripts": {
"start": "node ./bin/tldr",
"example": "node ./bin/tldr tar",
"test": "mocha",
"test:quiet": "mocha --reporter=dot",
"lint": "eslint lib test bin/tldr",
"watch": "mocha --reporter=min --watch --growl",
"test:functional": "bash test/functional-test.sh",
"test:coverage": "nyc mocha",
"test:all": "npm run lint && npm test && npm run test:functional"
},
"dependencies": {
"adm-zip": "^0.5.10",
"axios": "^1.6.0",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"he": "^1.2.0",
"lodash": "^4.17.20",
"marked": "^4.0.10",
"ms": "^2.1.2",
"natural": "^8.0.1",
"ora": "^5.1.0"
},
"devDependencies": {
"eslint": "^8.39.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^17.1.0",
"should": "^13.2.3",
"sinon": "^19.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test:quiet"
}
},
"funding": {
"type": "liberapay",
"url": "https://liberapay.com/tldr-pages"
}
}