-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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
{
"name": "@asyncapi/php-template",
"version": "0.1.0",
"description": "Template package for AsyncAPI code generation",
"main": "index.js",
"scripts": {
"get-version": "echo $npm_package_version",
"gen-readme-toc": "markdown-toc -i README.md",
"lint": "eslint --max-warnings 0 --fix --config .eslintrc .",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"keywords": [
"asyncapi",
"generator",
"template",
"php"
],
"author": "Emiliano Zublena <[email protected]> (https://github.com/emilianozublena/)",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@asyncapi/generator-filters": "^1.1.0",
"@asyncapi/generator-hooks": "^0.1.0",
"lodash": "^4.17.15"
},
"generator": {
"renderer": "nunjucks",
"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"
},
"pdf": {
"description": "Set to `true` to get index.pdf generated next to your index.html",
"default": false
},
"png": {
"description": "Set to `true` to get index.png generated next to your index.html",
"default": false
},
"svg": {
"description": "Set to `true` to get index.svg generated next to your index.html",
"default": false
},
"maxTextSize": {
"description": "It is possible that in case of an extremely large AsyncAPI document default mermaid recommended text size will not be enough. Then you need to explicitly make it larger",
"default": 50000
},
"packageName": {
"description": "Name of the package, this is used as the base namespace for all classes within gen code. Useful for whitelabel as well ;)",
"default": "AsyncAPI"
}
},
"filters": [
"@asyncapi/generator-filters"
],
"generator": ">=1.1.0 <2.0.0"
},
"devDependencies": {
"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"
}
}