-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.04 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
{
"name": "semantic-release-docker-gitlab-ci",
"version": "1.1.0",
"description": "semantic-release plugin to publish Docker containers to GitLab Container Registry",
"main": "index.js",
"files": [
"src",
"index.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaibloecker/semantic-release-docker-gitlab-ci.git"
},
"keywords": [
"semantic-release",
"docker",
"gitlab",
"version",
"publish"
],
"author": "Kai Blöcker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kaibloecker/semantic-release-docker-gitlab-ci/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/kaibloecker/semantic-release-docker-gitlab-ci#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"!*.{js,jsx,ts,tsx}": "prettier --write --ignore-unknown",
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --max-warnings=0"
]
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"semantic-release": "^20.1.0"
},
"dependencies": {
"@semantic-release/error": "^3.0.0",
"got": "^11.8.5",
"semver": "^7.3.8"
},
"peerDependencies": {
"semantic-release": ">=19.0.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/kaibloecker"
},
{
"type": "liberapay",
"url": "https://liberapay.com/kaibloecker"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/kaibloecker"
}
]
}