-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
122 lines (122 loc) · 3.33 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
120
121
122
{
"name": "@asyncapi/dotnet-rabbitmq-template",
"version": "1.0.0",
"description": "Template package for AsyncAPI code generation",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"get-version": "echo $npm_package_version",
"gen-readme-toc": "markdown-toc -i README.md",
"lint": "eslint --max-warnings 0 --fix --config .eslintrc .",
"release": "semantic-release",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"generate:assets": "",
"generate:examples": ""
},
"keywords": [
"asyncapi",
"generator",
"template",
"dotnet",
"rabbitmq"
],
"author": "Peter Wikström <[email protected]> (https://github.com/mr-nuno)",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@asyncapi/generator-filters": "^1.1.0",
"@asyncapi/generator-hooks": "^0.1.0",
"@asyncapi/modelina": "^0.59.4",
"lodash": "^4.17.15"
},
"devDependencies": {
"@asyncapi/generator": "^1.9.18",
"@asyncapi/parser": "^1.15.1",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "7.2.3",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"all-contributors-cli": "^6.19.0",
"conventional-changelog-conventionalcommits": "^4.4.0",
"eslint": "^7.17.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.4.2",
"jest-esm-transformer": "^1.0.0",
"markdown-toc": "^1.2.0",
"rimraf": "^3.0.2",
"semantic-release": "19.0.3"
},
"generator": {
"renderer": "react",
"parameters": {
"supportedProtocols": [
"amqp"
],
"asyncapiFileDir": {
"description": "Custom location of the AsyncAPI file that you provided as an input in generation. By default it is located in the root of the output directory"
},
"namespace": {
"description": "Name of the package, this is used as the base namespace for all classes within gen code. Useful for whitelabel as well ;)",
"default": "Demo"
},
"user": {
"description": "The user to the AMQP broker",
"default": "user"
},
"password": {
"description": "The password to the AMQP broker",
"default": "password"
}
},
"filters": [
"@asyncapi/generator-filters"
],
"generator": ">=1.1.0 <2.0.0"
},
"babel": {
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"jsx"
]
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}