package.json 639 B

12345678910111213141516171819202122232425
  1. {
  2. "description": "Simplified and community-driven man pages",
  3. "author": "Romain Prieto",
  4. "license": "SEE LICENSE IN LICENSE.md",
  5. "repository": "tldr-pages/tldr",
  6. "homepage": "https://tldr.sh/",
  7. "dependencies": {
  8. "glob": "7.1.3",
  9. "husky": "^2.2.0",
  10. "markdownlint-cli": "0.19.0",
  11. "tldr-lint": "~0.0.9"
  12. },
  13. "scripts": {
  14. "lint-markdown": "markdownlint pages*/**/*.md",
  15. "lint-tldr-pages": "tldr-lint ./pages",
  16. "test": "bash scripts/test.sh",
  17. "build-index": "node ./scripts/build-index.js > index.json"
  18. },
  19. "husky": {
  20. "hooks": {
  21. "pre-commit": "npm test"
  22. }
  23. },
  24. "private": true
  25. }