91 lines
2.2 KiB
JSON
91 lines
2.2 KiB
JSON
{
|
|
"name": "@asyncapi/specs",
|
|
"version": "4.3.1",
|
|
"description": "AsyncAPI schema versions",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"test": "npm run build && nyc mocha",
|
|
"build": "npm run bundle",
|
|
"release": "semantic-release",
|
|
"generate:assets": "npm run build",
|
|
"prepublishOnly": "npm run build",
|
|
"bundle": "cd tools/bundler && npm i && npm run bundle",
|
|
"startNewVersion": "newVersion=$npm_config_new_version node scripts/add-new-version.js",
|
|
"lint": "echo 'No linter integrated yet'",
|
|
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/asyncapi/spec-json-schemas.git"
|
|
},
|
|
"author": {
|
|
"name": "Fran Mendez",
|
|
"email": "fmvilas@gmail.com"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Bruno Pedro",
|
|
"email": "bpedro@hitchhq.com"
|
|
}
|
|
],
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/asyncapi/spec-json-schemas/issues"
|
|
},
|
|
"homepage": "https://github.com/asyncapi/spec-json-schemas#readme",
|
|
"devDependencies": {
|
|
"mocha": "^10.0.0",
|
|
"nyc": "^15.1.0",
|
|
"@semantic-release/commit-analyzer": "^8.0.1",
|
|
"@semantic-release/github": "7.2.3",
|
|
"@semantic-release/npm": "^7.0.3",
|
|
"@semantic-release/release-notes-generator": "^9.0.1",
|
|
"conventional-changelog-conventionalcommits": "^4.2.3",
|
|
"semantic-release": "19.0.3"
|
|
},
|
|
"release": {
|
|
"branches": [
|
|
"master",
|
|
{
|
|
"name": "next-major",
|
|
"prerelease": true
|
|
},
|
|
{
|
|
"name": "next-spec",
|
|
"prerelease": true
|
|
},
|
|
{
|
|
"name": "next-major-spec",
|
|
"prerelease": true
|
|
},
|
|
{
|
|
"name": "next-major",
|
|
"prerelease": true
|
|
}
|
|
],
|
|
"plugins": [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
"preset": "conventionalcommits"
|
|
}
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
"preset": "conventionalcommits"
|
|
}
|
|
],
|
|
"@semantic-release/npm",
|
|
"@semantic-release/github"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@types/json-schema": "^7.0.11"
|
|
}
|
|
}
|