forked from asyncapi/bundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.01 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
{
"name": "@asyncapi/bundler",
"version": "0.1.1",
"description": "Bundle references from an single AsyncAPI document into a single file.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"docs": "jsdoc2md -f \"lib/**/*.js\" > API.md",
"get:version": "echo $npm_package_version",
"get:name": "echo $npm_package_name",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"release": "semantic-release",
"lint": "echo \"No linter configured yet\"",
"generate:assets": "npm run docs && npm run generate:readme:toc",
"generate:readme:toc": "markdown-toc -i README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/bundler.git"
},
"keywords": [],
"author": "Souvik De <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/bundler/issues"
},
"homepage": "https://github.com/asyncapi/bundler",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@asyncapi/parser": "^1.15.0",
"commander": "^8.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"meow": "^10.1.1"
},
"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",
"jest": "^27.2.5",
"jsdoc": "^3.6.7",
"jsdoc-to-markdown": "^7.1.0",
"markdown-toc": "^1.2.0",
"semantic-release": "^18.0.1"
}
}