package.json 653 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": "7.1.7",
  10. "markdownlint-cli": "0.27.1",
  11. "tldr-lint": "~0.0.11"
  12. },
  13. "devDependencies": {
  14. "husky": "^7.0.1"
  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 install"
  22. },
  23. "private": true
  24. }