30 lines
891 B
JSON
30 lines
891 B
JSON
{
|
|
"name": "pulumi-hugo",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"repository": "git@github.com:pulumi/pulumi-hugo",
|
|
"author": "Christian Nunciato <c@nunciato.org>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@octokit/rest": "^20.0.2",
|
|
"concurrently": "^6.0.0",
|
|
"js-yaml": "^3.13.1",
|
|
"markdownlint": "^0.17.2",
|
|
"sass": "^1.39.2"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^8.0.1",
|
|
"lint-staged": "^13.0.3",
|
|
"prettier": "^2.6.2"
|
|
},
|
|
"scripts": {
|
|
"prepare": "husky install"
|
|
},
|
|
"lint-staged": {
|
|
"themes/default/**/*.md": "node ./scripts/lint/lint-markdown.js",
|
|
"themes/default/**/*.html": "yarn run prettier --write 'themes/default/**/*.html'",
|
|
"**/*.yaml": "yarn run prettier --write '**/*.yaml'",
|
|
"**/*.yml": "yarn run prettier --write '**/*.yml'"
|
|
}
|
|
}
|