-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "@bifravst/renovate-config",
"version": "0.0.0-development",
"description": "Prettier config for our projects",
"type": "module",
"main": "prettierrc.json",
"repository": "[email protected]:bifravst/renovate-config.git",
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.6.0",
"commitlint": "19.6.1",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"renovate": "39.98.0"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"scripts": {
"prepare": "husky"
},
"prettier": "@bifravst/prettier-config",
"lint-staged": {
"*.{yml,md,js,json}": [
"prettier --write"
]
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
}
}