forked from asyncapi/python-paho-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (81 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (81 loc) · 2.28 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
81
82
{
"name": "@tornabene.org/python-paho-template",
"version": "0.2.16",
"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/tornabene/python-template.git"
},
"bugs": {
"url": "https://github.com/tornabene/python-template/issues"
},
"homepage": "https://github.com/tornabene/python-template#readme",
"dependencies": {
"@asyncapi/generator-filters": "^2.1.0",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15"
},
"devDependencies": {
"@asyncapi/generator": "^1.9.14",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^7.0.0",
"semantic-release": "^19.0.3"
},
"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"
]
}
}