forked from asyncapi/converter-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.95 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
75
76
77
78
79
80
81
82
{
"name": "@asyncapi/converter",
"version": "1.2.0",
"description": "Convert AsyncAPI documents from older to newer versions.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "cross-env CI=true NODE_ENV=test jest --coverage",
"lint": "echo 'no linter configured yet'",
"release": "semantic-release",
"generate:assets": "npm run generate:readme:toc",
"generate:readme:toc": "markdown-toc -i README.md",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"prepublishOnly": "npm run build"
},
"keywords": [
"asyncapi",
"upgrade",
"version",
"convert"
],
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"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 <fmvilas@gmail.com> (fmvilas.com)",
"license": "Apache-2.0",
"dependencies": {
"js-yaml": "^3.14.1"
},
"devDependencies": {
"@jest/types": "^27.5.1",
"@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",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"semantic-release": "^19.0.3",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"markdown-toc": "^1.2.0"
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}