-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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
{
"name": "@formula-monks/scaffoldizr",
"version": "0.8.0",
"description": "Opinionated TypeScript/Bun Scaffolding Tool for creating Structurizr DSL Documentations",
"module": "src/main.mjs",
"bin": {
"scfz": "lib/main.ts"
},
"scripts": {
"build:dev": "bun build ./lib/main.ts --compile --outfile ./dist/scfz",
"build:watch": "bun build:dev --watch",
"test:dev": "bun test --watch",
"test": "bun test",
"test:ci": "bun test --coverage",
"test:e2e:smoke": "bun --config=./e2e/e2e.toml test -t '@smoke' --bail --timeout 30000",
"test:e2e": "bun --config=./e2e/e2e.toml test --bail --timeout 30000",
"prepare": "husky"
},
"trustedDependencies": [
".",
"@biomejs/biome"
],
"dependencies": {
"@inquirer/prompts": "^8.1.0",
"chalk": "^5.4.1",
"change-case": "^5.4.4",
"handlebars": "^4.7.8",
"minimist": "^1.2.8",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@inquirer/testing": "^3.0.3",
"@inquirer/type": "^4.0.2",
"@types/bun": "^1.3.8",
"@types/inquirer": "^9.0.7",
"@types/yargs": "^17.0.33",
"branch-name-lint": "^3.0.1",
"czg": "^1.11.0",
"generate-changelog": "^1.8.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"strip-ansi": "^7.1.0"
},
"overrides": {
"cross-spawn": "7.0.6"
},
"branchNameLinter": {
"prefixes": [
"feature",
"bugfix",
"hotfix",
"release",
"dependabot"
],
"suggestions": {
"features": "feature",
"feat": "feature",
"fix": "bugfix",
"releases": "release"
},
"banned": [
"wip"
],
"skip": [
"skip ci",
"main",
"develop"
]
}
}