123456789101112131415161718192021222324252627 |
- {
- "name": "tldr",
- "version": "1.0.0",
- "description": "Simplified, community-driven man pages",
- "dependencies": {
- "glob": "7.1.3",
- "markdownlint-cli": "0.19.0",
- "tldr-lint": "~0.0.7",
- "husky": "^2.2.0"
- },
- "scripts": {
- "lint-markdown": "markdownlint pages*/**/*.md",
- "lint-tldr": "tldr-lint ./pages",
- "test": "bash scripts/test.sh",
- "build-index": "node ./scripts/build-index.js > index.json"
- },
- "husky": {
- "hooks": {
- "pre-commit": "npm test"
- }
- },
- "repository": "tldr-pages/tldr",
- "author": "Romain Prieto",
- "private": true,
- "license": "MIT",
- "homepage": "http://tldr-pages.github.io"
- }
|