-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.08 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
{
"name": "@ls-age/renovate-config",
"version": "0.3.0",
"description": "Renovate sharable config",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ls-age/renovate-config.git"
},
"bugs": {
"url": "https://github.com/ls-age/renovate-config/issues"
},
"homepage": "https://github.com/ls-age/renovate-config#readme",
"author": "Lukas Hechenberger <[email protected]>",
"main": "package.json",
"scripts": {
"test": "renovate-config-validator"
},
"keywords": [],
"devDependencies": {
"renovate": "35.71.6"
},
"renovate-config": {
"default": {
"extends": [
"config:base"
],
"semanticCommits": "disabled",
"commitMessagePrefix": "chore(package):"
},
"automergeDev": {
"extends": [
"@ls-age"
],
"packageRules": [
{
"automerge": true,
"automergeType": "branch",
"matchDepTypes": [
"devDependencies"
]
}
]
}
},
"renovate": {
"extends": [
"@ls-age:automergeDev"
]
}
}