mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-01 04:17:55 +01:00
29 lines
780 B
JSON
29 lines
780 B
JSON
{
|
|
"name": "tldr",
|
|
"version": "1.0.0",
|
|
"description": "Simplified, community-driven man pages",
|
|
"dependencies": {
|
|
"glob": "^7.0.0",
|
|
"markdownlint-cli": "^0.1.0",
|
|
"tldr-lint": "^0.0.7",
|
|
"husky": "^0.11.3"
|
|
},
|
|
"scripts": {
|
|
"precommit": "npm test",
|
|
"lint-markdown": "markdownlint pages/**/*.md",
|
|
"lint-tldr": "tldr-lint ./pages",
|
|
"test": "markdownlint pages/ && tldr-lint ./pages",
|
|
"build-index": "node ./scripts/build-index.js > pages/index.json"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tldr-pages/tldr.git"
|
|
},
|
|
"author": "Romain Prieto",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/tldr-pages/tldr/issues"
|
|
},
|
|
"homepage": "http://tldr-pages.github.io"
|
|
}
|