package.json 659 B

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