forked from lgaticaq/semantic-release-gitlab-registry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
119 lines (119 loc) · 2.77 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@alexbabel/semantic-release-docker",
"version": "2.9.0",
"description": "Set of semantic-release plugins to publish to gitlab docker registry",
"main": "index.js",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier-standard 'index.js' 'lib/**/*.js'",
"commit": "commit"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git@github.com:alexanderbabel/semantic-release-docker"
},
"keywords": [
"docker",
"gitlab",
"publish",
"push",
"semantic-release",
"version"
],
"author": "Alexander Babel",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexanderbabel/semantic-release-docker/issues"
},
"homepage": "https://github.com/alexanderbabel/semantic-release-docker#readme",
"dependencies": {
"@semantic-release/error": "^2.2.0",
"execa": "4.0.3",
"semver": "^7.2.1"
},
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@commitlint/prompt-cli": "9.1.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.7",
"@semantic-release/npm": "7.0.5",
"eslint": "7.32.0",
"eslint-config-jsdoc-strict": "2.0.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsdoc": "30.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "4.0.1",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"npm-github-config": "2.0.1",
"prettier-standard": "16.4.1",
"semantic-release": "17.1.1"
},
"peerDependencies": {
"semantic-release": ">17"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"standard",
"jsdoc-strict",
"plugin:promise/recommended",
"plugin:security/recommended"
],
"plugins": [
"promise",
"security"
],
"rules": {
"no-console": "error",
"require-await": "error",
"jsdoc/require-example": "off",
"jsdoc/valid-types": "off",
"jsdoc/check-types": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"index.js": [
"eslint --fix",
"prettier-standard",
"git add"
],
"lib/**/*.js": [
"eslint --fix",
"prettier-standard",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"extends": "npm-github-config"
},
"renovate": {
"automerge": "minor",
"extends": [
"config:js-lib"
],
"includeForks": true
}
}