-
Notifications
You must be signed in to change notification settings - Fork 208
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "minimumcd",
"version": "1.0.0",
"description": "Minimum Viable CD",
"keywords": [
"ci",
"cd",
"ci/cd",
"mvp",
"agile",
"continuous",
"integration",
"delivery",
"trunk-based",
"trunk"
],
"homepage": "https://minimumcd.org/minimumcd/",
"bugs": {
"url": "https://github.com/Minimum-CD/cd-manifesto/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Minimum-CD/cd-manifesto.git"
},
"license": "CC-BY-4.0",
"author": "MinimumCD.org",
"main": "hugo serve",
"scripts": {
"build": "hugo --minify",
"build:clean": "rm -rf public && npm run build",
"link-check": "npm run build:clean && linkinator --recurse public/ --config ./linkinator.config.json",
"lint": "markdownlint ./content/**/*.md",
"lint:fix": "markdownlint -f ./content/**/*.md",
"prepare": "husky",
"start": "rm -rf public && hugo serve",
"test": "npm run lint",
"update": "hugo mod get -u ./... && hugo mod tidy && npx npm-check-updates -u && npm install"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"hugo-extended": "0.136.2",
"husky": "^9.1.6",
"linkinator": "^6.1.2",
"markdownlint-cli": "^0.42.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"prettier": "^3.3.3",
"prettier-plugin-go-template": "^0.0.15"
}
}