-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.26 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/python-paho-template",
"version": "0.2.13",
"description": "Python Paho template for the AsyncAPI generator.",
"scripts": {
"release": "semantic-release",
"test": "echo \"No test specified yet\"",
"lint": "echo \"No linter specified yet\"",
"generate:assets": "echo 'No additional assets need to be generated at the moment'",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
},
"keywords": [
"asyncapi",
"cloud",
"generator",
"python",
"paho",
"template"
],
"publishConfig": {
"access": "public"
},
"author": "Michael Davis <michael@damaru.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/python-paho-template.git"
},
"bugs": {
"url": "https://github.com/asyncapi/python-paho-template/issues"
},
"homepage": "https://github.com/asyncapi/python-paho-template#readme",
"dependencies": {
"@asyncapi/generator-filters": "^2.1.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^10.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^6.8.0",
"semantic-release": "^21.0.1"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"generator": {
"generator": ">=0.50.0 <2.0.0",
"parameters": {
"view": {
"description": "The view that the template uses. By default it is the client view, which means that when the document says publish, we subscribe. In the case of the provider view, when the document says publish, we publish. Values are client or provider. The default is client.",
"required": false
}
},
"filters": [
"@asyncapi/generator-filters"
]
}
}