This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
121 lines (121 loc) · 3.77 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
{
"name": "@asyncapi/dotnet-nats-template",
"version": "0.12.1",
"description": "NATS .NET template for the AsyncAPI generator",
"keywords": [
"asyncapi",
"generator",
"dotnet",
".net",
"C#",
"nats",
"template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/dotnet-nats-template.git"
},
"bugs": {
"url": "https://github.com/asyncapi/dotnet-nats-template/issues"
},
"homepage": "https://github.com/asyncapi/dotnet-nats-template#readme",
"author": "Jonas Lagoni (jonas-lt@live.dk)",
"license": "Apache-2.0",
"scripts": {
"test": "echo \"No tests specified yet\"",
"lint": "eslint --max-warnings 0 --config .eslintrc ./",
"lint:fix": "npm run lint -- --fix",
"generate:assets": "npm run generate:examples",
"generate:examples": "npm run generate:examples:pubsub && npm run generate:examples:newtonsoft",
"generate:examples:pubsub": "cd \"examples/pubsub\" && sh ./Generate.sh",
"generate:examples:newtonsoft": "cd \"examples/newtonsoft\" && sh ./Generate.sh",
"build:examples": "npm run build:examples:pubsub && npm run build:examples:newtonsoft",
"build:examples:pubsub": "cd \"examples/pubsub\" && sh ./Build.sh",
"build:examples:newtonsoft": "cd \"examples/newtonsoft\" && sh ./Build.sh",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"release": "semantic-release",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"@asyncapi/generator-react-sdk": "^0.2.23",
"@asyncapi/modelina": "^1.2.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@asyncapi/cli": "0.32.0",
"@babel/core": "^7.21.3",
"@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",
"all-contributors-cli": "^6.20.0",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^7.0.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-security": "^1.6.0",
"eslint-plugin-sonarjs": "^0.18.0",
"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",
"supportedProtocols": [
"nats"
],
"parameters": {
"version": {
"default": "0.0.1",
"description": "Version of the generated library"
},
"projectName": {
"default": "AsyncapiNatsClient",
"description": "Name of the generated library"
},
"repositoryUrl": {
"description": "Repository url for the project file, often needed for release pipelines"
},
"targetFramework": {
"default": "netstandard2.0;netstandard2.1",
"description": "The project target framework"
},
"packageVersion": {
"description": "PackageVersion of the generated library"
},
"assemblyVersion": {
"description": "AssemblyVersion of the generated library"
},
"fileVersion": {
"description": "FileVersion of the generated library"
},
"serializationLibrary": {
"description": "Which serialization library should the models use? `newtonsoft` or `json` (system.text.json)",
"default": "json"
}
},
"generator": ">=1.1.1 <2.0.0"
}
}