mirror of https://github.com/CrimsonTome/tldr.git
24 lines
704 B
JSON
24 lines
704 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": "bash -c 'markdownlint pages/ && tldr-lint ./pages 2>&1 | tee test_result; test ${PIPESTATUS[0]} -eq 0'",
|
|
"build-index": "node ./scripts/build-index.js > pages/index.json"
|
|
},
|
|
"repository": "tldr-pages/tldr",
|
|
"author": "Romain Prieto",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"homepage": "http://tldr-pages.github.io"
|
|
}
|