This repository has been archived by the owner on Feb 12, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@ianwalter/renovate-config",
"version": "1.4.3",
"description": "Ian's Renovate config preset",
"main": "package.json",
"scripts": {
"test": "renovate-config-validator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianwalter/renovate-config.git"
},
"keywords": [
"renovate",
"config",
"preset"
],
"author": {
"name": "Ian Walter",
"url": "https://ianwalter.dev"
},
"license": "SEE LICENSE IN LICENSE",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ianwalter/renovate-config/issues"
},
"homepage": "https://github.com/ianwalter/renovate-config#readme",
"devDependencies": {
"@changesets/cli": "^2.14.1",
"@ianwalter/renovate-config": "file:./",
"renovate": "^24.47.0"
},
"renovate-config": {
"default": {
"extends": [
":combinePatchMinorReleases",
":ignoreUnstable",
":prImmediately",
":renovatePrefix",
":updateNotScheduled",
":ignoreModulesAndTests",
":rebaseStalePrs"
],
"rangeStrategy": "bump",
"suppressNotifications": [
"prIgnoreNotification",
"prEditNotification"
],
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"automerge": true
},
{
"packagePatterns": [
"^@ianwalter/bff"
],
"groupName": "bff"
},
{
"packagePatterns": [
"^@ianwalter/nrg"
],
"groupName": "nrg"
},
{
"packagePatterns": [
"^@sentry"
],
"groupName": "Sentry"
}
],
"reviewers": []
}
},
"renovate": {
"extends": [
"@ianwalter"
]
}
}