-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.11 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": "git@github.com:bifravst/renovate-config.git",
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@bifravst/prettier-config": "1.1.1",
"@commitlint/config-conventional": "19.5.0",
"commitlint": "19.5.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"renovate": "38.142.7"
},
"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",
{
"successComment": false,
"failTitle": false
}
]
]
}
}