-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.89 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
{
"name": "@formula-monks/scaffoldizr",
"version": "0.6.6",
"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": "^7.2.0",
"chalk": "^5.4.1",
"change-case": "^5.4.4",
"handlebars": "^4.7.8",
"minimist": "^1.2.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@inquirer/testing": "^2.1.39",
"@inquirer/type": "^3.0.2",
"@types/bun": "^1.1.14",
"@types/inquirer": "^9.0.7",
"@types/yargs": "^17.0.33",
"branch-name-lint": "^2.1.1",
"czg": "^1.11.0",
"generate-changelog": "^1.8.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"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"]
}
}