@asyncapi/generator
Version:
The AsyncAPI generator. It can generate documentation, code, anything!
43 lines (42 loc) • 1.4 kB
JSON
{
"name": "core-template-client-websocket-python",
"private": true,
"description": "This is a template generating Python websocket client",
"scripts": {
"test": "jest --coverage",
"test:update": "npm run test -- -u",
"test:integration": "npm --prefix ../test/integration-test run test:python",
"test:integration:update": "npm --prefix ../test/integration-test run test:python:update",
"lint": "eslint --max-warnings 0 --config ../../../../../.eslintrc --ignore-path ../../../../../.eslintignore .",
"lint:fix": "eslint --fix --max-warnings 0 --config ../../../../../.eslintrc --ignore-path ../../../../../.eslintignore ."
},
"author": "Lukasz Gornicki <lpgornicki@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@asyncapi/generator-react-sdk": "*",
"@asyncapi/generator-helpers": "1.1.0",
"@asyncapi/generator-components": "0.6.0"
},
"devDependencies": {
"@asyncapi/parser": "^3.4.0",
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-sonarjs": "^0.5.0"
},
"babel": {
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
}
}