-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.38 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
{
"name": "geekbites",
"version": "2.15.0",
"description": "Onze blog staat live: http://geekbites.move4mobile.io",
"type": "module",
"private": true,
"scripts": {
"prepare": "husky",
"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/move-frontend/geekbites.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/move-frontend/geekbites/issues"
},
"homepage": "https://github.com/move-frontend/geekbites#readme",
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/release-notes-generator": "^14.1.1",
"broken-link-checker-local": "^0.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"luxon": "^3.7.2",
"rimraf": "^6.1.3",
"sass": "^1.98.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"artifacts/**"
],
"successComment": false,
"failComment": false,
"failTitle": false
}
]
]
}
}