-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "publish-gitlab-release",
"version": "0.0.7",
"description": "publish-gitlab-release is a command-line tool that automates the process of creating GitLab releases, including generating changelogs, adding comments to merge requests and linked issues, all while providing flexibility in versioning schemes.",
"license": "MIT",
"repository": "https://github.com/jase88/publish-gitlab-release",
"homepage": "https://github.com/jase88/publish-gitlab-release#readme",
"keywords": [
"gitlab",
"release",
"publish"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "nx serve",
"build": "nx build",
"lint": "nx lint",
"test": "nx test",
"format": "nx format:check"
},
"bin": {
"publish-gitlab-release": "./main.js"
},
"type": "module",
"dependencies": {
"@gitbeaker/rest": "39.10.2"
},
"devDependencies": {
"@nx/esbuild": "16.6.0",
"@nx/eslint-plugin": "16.6.0",
"@nx/jest": "16.6.0",
"@nx/js": "16.6.0",
"@nx/linter": "16.6.0",
"@nx/node": "16.6.0",
"@nx/workspace": "16.6.0",
"@types/jest": "29.5.3",
"@types/node": "20.4.8",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"esbuild": "0.17.19",
"eslint": "8.46.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-unicorn": "48.0.1",
"jest": "29.6.2",
"jest-environment-node": "29.6.2",
"nx": "16.6.0",
"prettier": "2.8.8",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}