-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "build",
"description": "yawik build docker image",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "[email protected]:yawik/docker/build.git"
},
"author": "Carsten Bleek",
"license": "MIT",
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/gitlab": "^6.0.8",
"semantic-release": "^17.3.0"
},
"release": {
"branches": [
"latest"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/gitlab",
{
"gitlabUrl": "https://gitlab.com/cross-solution/docs/cross-solution.git",
"assets": [
{
"path": "README.md",
"label": "Documentation"
},
{
"path": "CHANGELOG.md",
"label": "ChangeLog"
}
]
}
],
[
"@semantic-release/exec",
{
"verifyConditionsCmd": "./bin/verify.sh",
"publishCmd": "./bin/publish.sh ${nextRelease.version} ${options.branch} ${commits.length} ${Date.now()}"
}
]
]
}
}