-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
100 lines (100 loc) · 2.25 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@semantic-release/gitlab",
"description": "semantic-release plugin to publish a GitLab release",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager (https://twitter.com/@pvdlg_)",
"type": "module",
"ava": {
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/semantic-release/gitlab/issues"
},
"contributors": [
"Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"Gregor Martynus (https://twitter.com/gr2m)"
],
"dependencies": {
"@semantic-release/error": "^4.0.0",
"aggregate-error": "^5.0.0",
"debug": "^4.0.0",
"dir-glob": "^3.0.0",
"escape-string-regexp": "^5.0.0",
"formdata-node": "^6.0.3",
"fs-extra": "^11.0.0",
"globby": "^14.0.0",
"got": "^14.0.0",
"hpagent": "^1.0.0",
"lodash-es": "^4.17.21",
"parse-url": "^9.0.0",
"url-join": "^4.0.0"
},
"devDependencies": {
"ava": "6.2.0",
"c8": "10.1.2",
"nock": "13.5.6",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"sinon": "19.0.2",
"tempy": "1.0.1"
},
"engines": {
"node": ">=20.8.1"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/semantic-release/gitlab#readme",
"keywords": [
"git",
"gitlab",
"publish",
"release",
"semantic-release",
"version"
],
"license": "MIT",
"main": "index.js",
"c8": {
"include": [
"lib/**/*.js",
"index.js",
"cli.js"
],
"reporter": [
"json",
"text",
"html"
],
"all": true
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"peerDependencies": {
"semantic-release": ">=20.1.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "https://github.com/semantic-release/gitlab.git"
},
"scripts": {
"lint": "prettier --check \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/*.js\"",
"lint:fix": "prettier --write \"*.{js,json,md}\" \".github/**/*.{md,yml}\" \"{bin,lib,test}/*.js\"",
"semantic-release": "semantic-release",
"test": "c8 ava --verbose"
},
"renovate": {
"extends": [
"github>semantic-release/.github:renovate-config"
]
}
}