forked from samcamwilliams/HyperBEAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 965 Bytes
/
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": "hyperbeam-tooling",
"description": "Tooling for enforcing project conventions on hyperbeam",
"type": "module",
"scripts": {
"prepare": "husky",
"staged": "lint-staged --max-arg-length=1 --concurrent=20"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/package.json": [
"sort-package-json"
],
"**/*.md": [
"markdown-toc-gen insert",
"prettier --write"
],
"src/**/*.{hrl,erl,app.src}": [
"rebar3 fmt"
],
"rebar.config": [
"rebar3 fmt"
]
},
"prettier": {
"printWidth": 120,
"proseWrap": "always"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"markdown-toc-gen": "^1.1.0",
"prettier": "^3.3.3",
"sort-package-json": "^2.10.1"
},
"engines": {
"node": ">=22"
}
}