generated from gethinode/mod-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.47 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@gethinode/mod-cookieyes",
"version": "2.2.2",
"description": "A Hugo module to integrate CookieYes with your Hinode site",
"keywords": [
"hugo",
"module"
],
"main": "index.js",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prestart": "npm run clean && npm run mod:vendor",
"start": "hugo server -s exampleSite --bind=0.0.0.0 --disableFastRender --printI18nWarnings",
"prebuild": "npm run clean && npm run mod:vendor",
"build": "hugo --gc --minify -s exampleSite",
"clean": "rimraf exampleSite/public exampleSite/resources",
"mod:clean": "hugo mod clean",
"mod:update": "rimraf _vendor && hugo mod get -u ./... && hugo mod get -u && npm run -s mod:vendor && npm run -s mod:tidy",
"mod:tidy": "hugo mod tidy",
"mod:vendor": "rimraf _vendor && hugo mod vendor",
"postinstall": "echo TODO: add postinstall instructions",
"test": "npm run -s build",
"upgrade": "npx npm-check-updates -u && npm run -s mod:update",
"prepare": "node .husky/install.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gethinode/mod-cookieyes.git"
},
"author": "Mark Dumay",
"license": "MIT",
"bugs": {
"url": "https://github.com/gethinode/hinode/issues"
},
"homepage": "https://gethinode.com",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.1",
"cpy-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"hugo-bin": "^0.136.4",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0"
},
"hugo-bin": {
"buildTags": "extended"
},
"release": {
"branches": "main",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
"prepare": "npm install"
}
],
[
"@semantic-release/git",
{
"assets": [
"dist",
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}