-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "@meemalabs/renovate-config",
"version": "0.1.3",
"description": "Meema Labs presets for the Renovate bot.",
"contributors": [
"Chris Breuer <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/meemalabs/renovate-config",
"repository": {
"type": "git",
"url": "git+https://github.com/meemalabs/renovate-config.git"
},
"bugs": {
"url": "https://github.com/meemalabs/renovate-config/issues"
},
"scripts": {
"validate": "renovate-config-validator",
"release": "standard-version && git push --follow-tags && npm publish"
},
"files": [],
"renovate-config": {
"default": {
"description": "Default config for Meema repositories",
"extends": [
"config:base",
"group:allNonMajor",
":semanticCommitTypeAll(chore)"
],
"meteor": {
"enabled": false
},
"rangeStrategy": "bump",
"npm": {
"commitMessageTopic": "{{prettyDepType}} {{depName}}"
}
}
},
"devDependencies": {
"renovate": "^32.74.3",
"standard-version": "^9.3.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}