forked from asyncapi/markdown-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.71 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
{
"name": "@asyncapi/markdown-template",
"version": "0.13.11",
"description": "Markdown template for the AsyncAPI generator.",
"keywords": [
"asyncapi",
"generator",
"markdown",
"template"
],
"author": "Fran Mendez <[email protected]> (fmvilas.com)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/markdown-template.git"
},
"bugs": {
"url": "https://github.com/asyncapi/markdown-template/issues"
},
"homepage": "https://github.com/asyncapi/markdown-template#readme",
"scripts": {
"test": "echo \"No test specified yet\"",
"lint": "echo \"No linter specified yet\"",
"release": "semantic-release",
"dev": "ag test/spec/asyncapi.yml ./ -o test/output --force-write --watch-template",
"generate:assets": "echo 'No additional assets need to be generated at the moment'",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@asyncapi/generator-filters": "^1.1.0",
"@asyncapi/generator-react-sdk": "^0.2.7",
"yaml": "^1.10.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": {
"renderer": "react",
"generator": ">=1.1.0 <2.0.0",
"parameters": {
"frontMatter": {
"description": "The name of a JSON or YAML formatted file containing values to provide the YAML frontmatter for static-site or documentation generators. The file may contain {{title}} and {{version}} replaceable tags.",
"required": false
},
"outFilename": {
"description": "The name of the output markdown file",
"default": "asyncapi.md",
"required": false
},
"toc": {
"description": "Include a Table-of-Contents in the output markdown.",
"default": "true",
"required": false
},
"version": {
"description": "Override the version of your application provided under `info.version` location in the specification file.",
"required": false
}
}
}
}