-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 647 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "tldr-pages",
"description": "Simplified and community-driven man pages",
"author": "Romain Prieto",
"license": "SEE LICENSE IN LICENSE.md",
"repository": "tldr-pages/tldr",
"homepage": "https://tldr.sh/",
"dependencies": {
"glob": "13.0.6",
"markdownlint-cli": "^0.48.0",
"tldr-lint": "^0.0.22"
},
"devDependencies": {
"husky": "^9.1.7"
},
"scripts": {
"lint-markdown": "markdownlint pages*/**/*.md",
"lint-tldr-pages": "tldr-lint ./pages",
"test": "bash scripts/test.sh",
"build-index": "node ./scripts/build-index.js > index.json",
"prepare": "husky"
},
"private": true
}