* deps: update deps
* chore: update husky from v2 format to v6 (really it's v4)
* move devDependencies below dependencies
* use package-lock.json (lockfile) format v2 (npm 7)
We are in the linter, see
b070d41be2/package-lock.json (L4)
25 lines
657 B
JSON
25 lines
657 B
JSON
{
|
|
"name": "tldr-pages",
|
|
"description": "Simplified and community-driven man pages",
|
|
"author": "Romain Prieto",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"repository": "tldr-pages/tldr",
|
|
"homepage": "https://tldr.sh/",
|
|
"dependencies": {
|
|
"glob": "7.1.6",
|
|
"markdownlint-cli": "0.27.1",
|
|
"tldr-lint": "~0.0.10"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^6.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint-markdown": "markdownlint pages*/**/*.md",
|
|
"lint-tldr-pages": "tldr-lint ./pages",
|
|
"test": "bash scripts/test.sh",
|
|
"build-index": "node ./scripts/build-index.js > index.json",
|
|
"postinstall": "husky install"
|
|
},
|
|
"private": true
|
|
}
|