forked from Minimum-CD/cd-manifesto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"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",
"link-check": "npm run build && linkinator ./public --config .linkinator.config.json ",
"lint": "markdownlint ./content/**/*.md",
"lint:fix": "markdownlint -f ./content/**/*.md",
"prepare": "husky install",
"start": "hugo serve",
"test": "rm -rf public && npm run lint && npm run link-check"
},
"devDependencies": {
"husky": "^8.0.3",
"linkinator": "^5.0.1",
"markdownlint-cli": "^0.35.0"
},
"engines": {
"node": "^16 || ^18"
}
}