forked from pulumi/pulumi-hugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 898 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "pulumi-hugo",
"version": "0.0.1",
"private": true,
"repository": "[email protected]:pulumi/pulumi-hugo",
"author": "Christian Nunciato <[email protected]>",
"license": "Apache-2.0",
"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'"
}
}