-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.91 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.91 KB
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
87
88
89
90
{
"name": "geekbites",
"version": "2.15.0",
"description": "Onze blog staat live: http://geekbites.move4mobile.io",
"type": "module",
"private": true,
"scripts": {
"build": "eleventy",
"start": "rimraf dist && eleventy --serve",
"check-broken-links": "npm run check-broken-links:internal && npm run check-broken-links:external",
"check-broken-links:internal": "npx broken-link-checker-local ./dist -roe --filter-level 3 --exclude \"*/__/firebase/*\"",
"check-broken-links:external": "npx broken-link-checker-local ./dist -roi --filter-level 3 --exclude \"*/__/firebase/*\" --exclude \"*/stenciljs.com/*\" --exclude \"*/twitter.com/*\" --exclude \"*/gramsbergen.nl/*\" --exclude \"*/bookmydesk.com/\" --exclude \"*/play.google.com/store/apps/details?id=io.github.webbluetoothcg.bletestperipheral*\" --exclude \"*/phaser.io*\" --exclude \"https://phaser.io/\" --exclude \"*npmjs.com*\" --exclude \"*/windicss.org/*\" --exclude \"*/cdn-images-1.medium.com/*\""
},
"repository": {
"type": "git",
"url": "https://github.com/move4mobile/geekbites.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/move4mobile/geekbites/issues"
},
"homepage": "https://github.com/move4mobile/geekbites#readme",
"devDependencies": {
"@11ty/eleventy": "^3.1.5",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.0.3",
"broken-link-checker-local": "^0.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"luxon": "^3.4.3",
"rimraf": "^5.0.5",
"sass": "^1.98.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip-ci]\n\n${nextRelease.notes}"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/github",
{
"assets": [
"artifacts/**"
]
}
],
"@semantic-release/npm",
"@semantic-release/git"
]
}
}