-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.95 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.95 KB
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
{
"name": "@asyncapi/nodejs-ably-template",
"version": "0.7.0",
"description": "Node.js WebSockets template for AsyncAPI generator.",
"keywords": [
"asyncapi",
"generator",
"nodejs",
"websockets",
"ws",
"ably",
"template"
],
"author": "Thomas Camp <tom.camp@ably.com>",
"license": "Apache-2.0",
"scripts": {
"test": "echo \"No test specified yet\"",
"release": "semantic-release",
"get-version": "echo $npm_package_version"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@asyncapi/generator-filters": "^1.0.0",
"@asyncapi/generator-hooks": "^0.1.0",
"ably": "^1.2.1",
"dotenv": "^8.2.0",
"filenamify": "^4.1.0"
},
"devDependencies": {
"@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",
"conventional-changelog-conventionalcommits": "^4.2.3",
"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": {
"supportedProtocols": [
"ws"
],
"parameters": {
"server": {
"description": "The server you want to use in the code."
},
"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"
}
},
"generator": ">=0.50.0 <2.0.0",
"filters": [
"@asyncapi/generator-filters"
],
"hooks": {
"@asyncapi/generator-hooks": "createAsyncapiFile"
}
}
}