package.json 647 B

123456789101112131415161718192021222324
  1. {
  2. "name": "tldr-pages",
  3. "description": "Simplified and community-driven man pages",
  4. "author": "Romain Prieto",
  5. "license": "SEE LICENSE IN LICENSE.md",
  6. "repository": "tldr-pages/tldr",
  7. "homepage": "https://tldr.sh/",
  8. "dependencies": {
  9. "glob": "11.0.0",
  10. "markdownlint-cli": "^0.43.0",
  11. "tldr-lint": "^0.0.16"
  12. },
  13. "devDependencies": {
  14. "husky": "^9.1.7"
  15. },
  16. "scripts": {
  17. "lint-markdown": "markdownlint pages*/**/*.md",
  18. "lint-tldr-pages": "tldr-lint ./pages",
  19. "test": "bash scripts/test.sh",
  20. "build-index": "node ./scripts/build-index.js > index.json",
  21. "prepare": "husky"
  22. },
  23. "private": true
  24. }