forked from asyncapi/markdown-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "@michalmela/asyncapi-asciidoctor-template",
"version": "0.12.2",
"description": "Asciidoctor template for the AsyncAPI generator.",
"keywords": [
"asyncapi",
"generator",
"adoc",
"asciidoc",
"asciidoctor",
"template"
],
"author": "Michal Mela",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/michalmela/asyncapi-asciidoctor-template.git"
},
"bugs": {
"url": "https://github.com/michalmela/asyncapi-asciidoctor-template/issues"
},
"homepage": "https://github.com/michalmela/asyncapi-asciidoctor-template#readme",
"scripts": {
"test": "echo \"No test specified yet\"",
"release": "semantic-release",
"get-version": "echo $npm_package_version",
"dev": "ag test/spec/asyncapi.yml ./ -o test/output --force-write --watch-template"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@asyncapi/generator-filters": "^1.1.0"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"semantic-release": "^17.0.4"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"generator": {
"generator": ">=0.50.0 <2.0.0",
"filters": [
"@asyncapi/generator-filters"
],
"parameters": {
"outFilename": {
"description": "The name of the output markdown file",
"default": "asyncapi.adoc",
"required": false
}
}
}
}