-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "opencv-dotnet-runtime-deps",
"version": "1.0.0",
"description": "OpenCV Sharp base image for .NET Core 3.1",
"repository": {
"type": "git",
"url": "git+https://github.com/RaimondB/opencv-dotnet.git"
},
"author": "Raimond Brookman",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/RaimondB/opencv-dotnet/issues"
},
"homepage": "https://github.com/RaimondB/opencv-dotnet#readme",
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"semantic-release": "^17.4.2",
"@eclass/semantic-release-docker": "^1.0.6"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/git",
[
"@eclass/semantic-release-docker",
{
"baseImageName": "opencv-dotnet-runtime-deps",
"registries": [
{
"url": "docker.io",
"imageName": "docker.io/raimondb/opencv-dotnet-runtime-deps",
"user": "DOCKER_REGISTRY_USER",
"password": "DOCKER_REGISTRY_PASSWORD"
}
],
"additionalTags": [
"latest"
]
}
]
]
}
}