UNPKG

@asyncapi/generator

Version:

The AsyncAPI generator. It can generate documentation, code, anything!

45 lines (44 loc) 1.49 kB
{ "name": "core-template-client-websocket-javascript", "private": true, "description": "This is a template generating JavaScript websocket client", "scripts": { "test": "jest --coverage --passWithNoTests", "test:update": "npm run test -- -u", "test:integration": "npm --prefix ../test/integration-test run test:javascript", "test:integration:update": "npm --prefix ../test/integration-test run test:javascript: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-components": "0.6.0", "@asyncapi/generator-helpers": "1.1.0", "@asyncapi/generator-react-sdk": "*", "@asyncapi/keeper": "0.5.0", "ws": "^8.19.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" } ] ] } }