forked from asyncapi/github-action-for-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.13 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
73
74
{
"name": "github-action-for-generator",
"version": "2.1.8",
"description": "GitHub action to generate all the things form your AsyncAPI document",
"main": "dist/index.js",
"scripts": {
"release": "semantic-release",
"lint": "eslint --max-warnings 0 --config .eslintrc lib",
"package": "ncc build lib/index.js -o dist -s --external=\"@npmcli/run-script\"",
"test": "jest --coverage",
"start": "node lib/index.js",
"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",
"docker:build": "docker build -t asyncapi/github-action-for-generator:latest ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/github-action-for-generator.git"
},
"keywords": [
"GitHub",
"Actions",
"AsyncAPI"
],
"author": "Lukasz Gornicki <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/github-action-for-generator/issues"
},
"homepage": "https://github.com/asyncapi/github-action-for-generator#readme",
"devDependencies": {
"@npmcli/run-script": "^1.8.5",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@vercel/ncc": "^0.31.1",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^6.8.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.6.3",
"semantic-release": "^19.0.3"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@asyncapi/generator": "^1.9.14"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github"
]
}
}