-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "@semantic-release/gitlab-config",
"description": "semantic-release shareable config to publish npm packages with GitLab",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://github.com/pvdlg)",
"bugs": {
"url": "https://github.com/semantic-release/gitlab-config/issues"
},
"contributors": [
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/gitlab": "^13.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0"
},
"devDependencies": {
"semantic-release": "23.1.1",
"prettier": "3.3.3"
},
"engines": {
"node": ">=20.8.1"
},
"files": [
"index.js"
],
"homepage": "https://github.com/semantic-release/gitlab-config#readme",
"keywords": [
"gitlab",
"conventional-changelog",
"release",
"semantic-release",
"semantic-release-config",
"version"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"semantic-release": ">=20.1.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/gitlab-config.git"
},
"scripts": {
"semantic-release": "semantic-release",
"lint": "prettier --check \"*.{js,json,md}\" \".github/**/*.yml\"",
"lint:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.yml\""
},
"renovate": {
"extends": [
"github>semantic-release/.github:renovate-config"
]
}
}