-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
70 lines (70 loc) · 1.64 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
{
"name": "@asyncapi/converter",
"version": "0.6.1",
"description": "Convert AsyncAPI documents from older to newer versions.",
"bin": {
"asyncapi-converter": "cli.js"
},
"main": "lib/index.js",
"scripts": {
"test": "mocha",
"lint": "echo 'no linter configured yet'",
"release": "semantic-release",
"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",
"upgrade",
"version",
"convert"
],
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/converter-js.git"
},
"bugs": {
"url": "https://github.com/asyncapi/converter-js/issues"
},
"homepage": "https://github.com/asyncapi/converter-js#readme",
"publishConfig": {
"access": "public"
},
"author": "Fran Mendez <[email protected]> (fmvilas.com)",
"license": "Apache-2.0",
"dependencies": {
"commander": "^8.3.0",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^8.0.3",
"@semantic-release/release-notes-generator": "^10.0.3",
"conventional-changelog-conventionalcommits": "^4.6.3",
"semantic-release": "^18.0.1",
"mocha": "^9.1.3"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}