Files
nats-python/openapi_templete/node_modules/@asyncapi/generator-react-sdk/package.json
T
2026-06-01 13:17:37 +02:00

110 lines
2.9 KiB
JSON

{
"name": "@asyncapi/generator-react-sdk",
"version": "0.2.25",
"description": "The React SDK for templates.",
"license": "Apache-2.0",
"homepage": "https://github.com/asyncapi/generator-react-sdk",
"bugs": {
"url": "https://github.com/asyncapi/generator-react-sdk/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/generator-react-sdk.git"
},
"keywords": [
"asyncapi",
"documentation",
"generator",
"react",
"sdk",
"template"
],
"author": {
"name": "The AsyncAPI maintainers"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"dependencies": {
"@asyncapi/parser": "^1.15.1",
"@babel/core": "7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@rollup/plugin-babel": "^5.2.1",
"babel-plugin-source-map-support": "^2.1.3",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"rollup": "^2.60.1",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.8",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jest": "^26.0.15",
"@types/react": "^17.0.0",
"conventional-changelog-conventionalcommits": "^4.5.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.6.3",
"jsdoc-to-markdown": "^6.0.1",
"markdown-toc": "^1.2.0",
"semantic-release": "^17.3.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
},
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "cross-env CI=true jest --coverage",
"test:watch": "jest --watch",
"docs": "npm run docs:markdown & npm run generate:readme:toc",
"docs:markdown": "./node_modules/.bin/jsdoc2md lib/index.js -f lib/**/*.js > API.md",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix",
"release": "semantic-release",
"generate:assets": "npm run prepublishOnly && npm run docs",
"generate:readme:toc": "markdown-toc -i README.md",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"prepublishOnly": "npm run build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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"
]
}
}