mirror of https://github.com/CrimsonTome/tldr.git
26 lines
639 B
JSON
26 lines
639 B
JSON
{
|
|
"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": "7.1.3",
|
|
"husky": "^2.2.0",
|
|
"markdownlint-cli": "0.19.0",
|
|
"tldr-lint": "~0.0.8"
|
|
},
|
|
"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"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm test"
|
|
}
|
|
},
|
|
"private": true
|
|
}
|