-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
109 lines (109 loc) · 2.88 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
{
"name": "@asyncapi/go-watermill-template",
"version": "0.2.75",
"description": "Template for generating Go module based on async api",
"main": "index.js",
"scripts": {
"test": "npm run test:components",
"release": "semantic-release",
"lint": "eslint --max-warnings 0 --fix --config .eslintrc .",
"generate:readme:toc": "markdown-toc -i README.md",
"generate:assets": "npm run generate:readme:toc",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"dev": "rm -rf output && ag test/asyncapi.yaml ./ -o output --force-write",
"test:components": "jest --coverage ./test/components"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/go-watermill-template"
},
"keywords": [
"asyncapi",
"generator",
"template"
],
"author": "Anand Sunderraman <anand.sunderraman@gmail.com> (https://github.com/anandsunderraman)",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/asyncapi/go-watermill-template"
},
"homepage": "https://github.com/asyncapi/go-watermill-template#readme",
"dependencies": {
"@asyncapi/generator-filters": "^2.0.0",
"@asyncapi/generator-hooks": "^0.1.0",
"@asyncapi/generator-react-sdk": "^0.2.23",
"@asyncapi/modelina": "^3.9.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",
"parameters": {
"moduleName": {
"description": "name of the go module to be generated",
"default": "go-async-api"
}
},
"generator": ">=1.3.0 <2.0.0",
"supportedProtocols": [
"amqp"
]
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.16.7",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.7",
"@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": "^6.8.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^27.4.7",
"markdown-toc": "^1.2.0",
"semantic-release": "^17.1.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
}
}