forked from MaibornWolff/codecharta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 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
{
"author": "MaibornWolff GmbH <dist_intern_codecharta@maibornwolff.de>",
"homepage": "https://maibornwolff.github.io/codecharta/",
"bugs": {
"url": "https://github.com/MaibornWolff/codecharta/issues",
"email": "dist_intern_codecharta@maibornwolff.de"
},
"name": "codecharta",
"version": "0.0.2",
"engines": {
"node": ">=20"
},
"description": "MaibornWolff CodeCharta placeholder",
"license": "BSD-3-Clause",
"prettier": {
"semi": false,
"singleQuote": false,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid"
},
"scripts": {
"format": "biome format --fix --no-errors-on-unmatched",
"format:check": "biome check",
"prepare": "husky install",
"commitlint": "commitlint --config commitlint.config.js --edit"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"badge-maker": "^5.0.0",
"husky": "^9.0.0",
"lint-staged": "^16.0.0"
},
"lint-staged": {
"*": "npm run format"
}
}