-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
138 lines (138 loc) · 3.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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@asyncapi/java-template",
"version": "0.0.1",
"description": "Java JMS template for AsyncAPI generator",
"main": "template/index.js",
"scripts": {
"test": "jest",
"lint": "eslint --max-warnings 0 --fix --config .eslintrc .",
"release": "semantic-release",
"generate:assets": ""
},
"engines": {
"node": ">=11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/java-template"
},
"keywords": [
"asyncapi",
"generator",
"template"
],
"author": "AsyncAPI (https://github.com/asyncapi)",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/asyncapi/java-template/issues"
},
"homepage": "https://github.com/asyncapi/java-template",
"dependencies": {
"@asyncapi/generator-filters": "^2.1.0",
"@asyncapi/generator-hooks": "^0.1.0",
"@asyncapi/generator-react-sdk": "^1.1.2",
"generate-schema": "^2.6.0"
},
"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",
"apiVersion": "v3",
"parameters": {
"server": {
"description": "The server you want to use in the code.",
"required": true
},
"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"
},
"user": {
"description": "Username for the server to generate code for",
"required": false,
"default": "app"
},
"password": {
"description": "Password for the server to generate code for",
"required": false,
"default": "passw0rd"
},
"package": {
"description": "Java package name for generated code",
"required": false,
"default": "com.asyncapi"
},
"mqTopicPrefix": {
"description": "MQ topic prefix. Used for ibmmq protocols. Default will work with dev MQ instance",
"required": false,
"default": "dev//"
}
},
"supportedProtocols": [
"ibmmq",
"ibmmq-secure",
"kafka",
"kafka-secure"
],
"nonRenderableFiles": [
"style.css",
"sample.gif"
],
"generator": ">=1.3.0 <2.0.0",
"hooks": {
"@asyncapi/generator-hooks": "createAsyncapiFile"
}
},
"devDependencies": {
"@asyncapi/generator": "^1.17.25",
"@asyncapi/parser": "^3.1.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"all-contributors-cli": "^6.20.0",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^25.2.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.10.0",
"jest": "^27.2.5",
"jest-esm-transformer": "^1.0.0",
"semantic-release": "^17.4.4"
},
"jest": {
"transform": {
"\\.m?jsx?$": "jest-esm-transformer"
},
"collectCoverageFrom": [
"{filters,hooks}/**/*.js",
"!hooks/generateExtraFormats.js"
],
"moduleNameMapper": {
"^nimma/legacy$": "<rootDir>/node_modules/nimma/dist/legacy/cjs/index.js",
"^nimma/(.*)": "<rootDir>/node_modules/nimma/dist/cjs/$1"
}
}
}