2021-04-06 07:36:14 -07:00
|
|
|
{
|
2021-10-08 16:08:45 -07:00
|
|
|
"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": {
|
2023-10-26 14:39:10 -07:00
|
|
|
"@octokit/rest": "^20.0.2",
|
2021-10-08 16:08:45 -07:00
|
|
|
"concurrently": "^6.0.0",
|
|
|
|
"js-yaml": "^3.13.1",
|
|
|
|
"markdownlint": "^0.17.2",
|
2022-06-01 10:58:20 -07:00
|
|
|
"sass": "^1.39.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-07-20 14:09:54 -07:00
|
|
|
"husky": "^8.0.1",
|
2022-09-15 13:54:23 -07:00
|
|
|
"lint-staged": "^13.0.3",
|
2023-07-12 13:20:57 -07:00
|
|
|
"prettier": "^2.6.2"
|
2022-07-20 14:09:54 -07:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"prepare": "husky install"
|
2022-09-15 13:54:23 -07:00
|
|
|
},
|
|
|
|
"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'"
|
2021-10-08 16:08:45 -07:00
|
|
|
}
|
2021-04-06 07:36:14 -07:00
|
|
|
}
|