@stomp/rx-stomp
Version:
RxJS STOMP client for Javascript and Typescript
67 lines (66 loc) • 1.97 kB
JSON
{
"name": "@stomp/rx-stomp",
"version": "2.4.0",
"description": "RxJS STOMP client for Javascript and Typescript",
"scripts": {
"clean": "rm -rf bundles esm6",
"rollup": "rollup -c --bundleConfigAsCjs && rm -f bundles/*.d.ts",
"build": "npm run clean && tsc && npm run rollup",
"karma": "karma start spec/karma.conf.js --single-run",
"lint": "tslint 'src/**/*ts' 'spec/**/*ts'",
"prepublishOnly": "npm run lint && npm run karma && npm run build",
"prettier": "prettier --write 'src/**/*.ts' 'spec/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stomp-js/rx-stomp.git"
},
"keywords": [
"STOMP",
"RabbitMQ",
"ActiveMQ",
"Websocket",
"messaging",
"queue",
"RxJS",
"SockJS"
],
"author": "deepak@kreatio.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/stomp-js/rx-stomp/issues"
},
"homepage": "https://github.com/stomp-js/rx-stomp#readme",
"peerDependencies": {
"@stomp/stompjs": "^7.2.0",
"rxjs": "^7.2.0",
"uuid": ">=9.0.0 <15.0.0"
},
"devDependencies": {
"@chiragrupani/karma-chromium-edge-launcher": "^2.4.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-sucrase": "^5.0.2",
"@rollup/plugin-terser": "^1.0.0",
"@types/jasmine": "^5.1.9",
"@types/uuid": "^11.0.0",
"jasmine": "^5.10.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-summary-reporter": "^4.0.1",
"prettier": "^3.6.2",
"rollup": "^4.50.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.9.2"
},
"type": "module",
"exports": "./esm6/index.js",
"main": "./esm6/index.js",
"browser": "bundles/rx-stomp.umd.js",
"typings": "index.d.ts",
"sideEffects": false
}