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 13
/
Copy pathpackage.json
106 lines (106 loc) · 2.75 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
{
"name": "@asyncapi/ts-nats-template",
"version": "0.10.3",
"description": "NATS TypeScript/Node.js template for the AsyncAPI generator.",
"keywords": [
"asyncapi",
"generator",
"ts",
"nats",
"template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/ts-nats-template.git"
},
"bugs": {
"url": "https://github.com/asyncapi/ts-nats-template/issues"
},
"homepage": "https://github.com/asyncapi/ts-nats-template#readme",
"author": "Jonas Lagoni ([email protected])",
"license": "Apache-2.0",
"scripts": {
"generate:examples": "cd scripts && node generate-examples.js",
"release": "semantic-release",
"lint": "./node_modules/.bin/eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "./node_modules/.bin/eslint --max-warnings 0 --config .eslintrc . --fix",
"test": "echo \"No unit tests specified yet\"",
"test:examples": "cd scripts && node test-examples.js",
"generate:assets": "npm run generate:examples",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"dependencies": {
"@asyncapi/generator-filters": "^2.1.0",
"@asyncapi/generator-react-sdk": "^0.2.11",
"@asyncapi/modelina": "^2.0.0",
"@asyncapi/parser": "^1.17.2",
"cross-env": "^7.0.2",
"filenamify": "^4.1.0",
"is-url": "1.2.4",
"js-beautify": "^1.13.5",
"lodash": "^4.17.20"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@asyncapi/generator": "^1.9.14",
"@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",
"@types/jest": "^27.0.2",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^7.0.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^27.2.5",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.3.0",
"typescript": "^4.4.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": {
"generateTestClient": {
"description": "Generate the test client",
"default": false,
"required": false
},
"promisifyReplyCallback": {
"description": "Use promises as callbacks for reply operation",
"default": false,
"required": false
}
},
"generator": ">=1.1.1 <2.0.0"
}
}