-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (71 loc) · 2.02 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
{
"name": "@asyncapi/proto-schema-parser",
"version": "2.0.1",
"description": "An AsyncAPI schema parser for Protocol Buffers data types.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive",
"release": "semantic-release",
"lint": "eslint --max-warnings 0 --config .eslintrc --fix .",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/proto-schema-parser.git"
},
"keywords": [
"asyncapi",
"protbuff",
"datatype",
"schema",
"parser"
],
"author": "Greenrover",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/proto-schema-parser/issues"
},
"homepage": "https://github.com/asyncapi/proto-schema-parser#readme",
"dependencies": {
"protocol-buffers-schema": "^3.6.0"
},
"devDependencies": {
"@asyncapi/parser": "^1.18.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^8.36.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-sonarjs": "^0.18.0",
"mocha": "^10.1.0"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}