1
0

package.json 704 B

1234567891011121314151617181920212223
  1. {
  2. "name": "tldr",
  3. "version": "1.0.0",
  4. "description": "Simplified, community-driven man pages",
  5. "dependencies": {
  6. "glob": "7.0.0",
  7. "markdownlint-cli": "0.1.0",
  8. "tldr-lint": "~0.0.7",
  9. "husky": "0.11.3"
  10. },
  11. "scripts": {
  12. "precommit": "npm test",
  13. "lint-markdown": "markdownlint pages/**/*.md",
  14. "lint-tldr": "tldr-lint ./pages",
  15. "test": "bash -c 'markdownlint pages/ && tldr-lint ./pages 2>&1 | tee test_result; test ${PIPESTATUS[0]} -eq 0'",
  16. "build-index": "node ./scripts/build-index.js > pages/index.json"
  17. },
  18. "repository": "tldr-pages/tldr",
  19. "author": "Romain Prieto",
  20. "private": true,
  21. "license": "MIT",
  22. "homepage": "http://tldr-pages.github.io"
  23. }