-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "scaffoldizr",
"version": "0.2.1",
"description": "Opinionated Scaffolding Tool for Structurizr",
"module": "src/main.mjs",
"bin": {
"scfz": "lib/main.ts"
},
"scripts": {
"test:dev": "bun test --watch",
"test": "bun test",
"test:ci": "bun test --coverage",
"postinstall": "scripts/install-git-hooks.sh"
},
"trustedDependencies": ["."],
"type": "module",
"dependencies": {
"chalk": "^5.3.0",
"change-case": "^5.2.0",
"handlebars": "^4.7.8",
"inquirer": "^9.2.15",
"minimist": "^1.2.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.4.0",
"@types/bun": "^1.0.6",
"@types/yargs": "^17.0.32",
"branch-name-lint": "^2.1.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"generate-changelog": "^1.8.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"signal-exit": "3.x"
},
"lint-staged": {
"*.{json,ts,js,mjs,mts}": ["bun biome ci"],
"*.{ts,mjs}": ["bun test:ci"]
},
"branchNameLinter": {
"prefixes": ["feature", "bugfix", "hotfix", "release"],
"suggestions": {
"features": "feature",
"feat": "feature",
"fix": "bugfix",
"releases": "release"
},
"banned": ["wip"],
"skip": ["skip-ci"],
"disallowed": ["main", "develop"]
}
}