UNPKG

1.77 kBJSONView Raw
1{
2 "name": "@stomp/stompjs",
3 "version": "6.1.2",
4 "description": "STOMP client for Javascript and Typescript",
5 "scripts": {
6 "clean": "rm -rf bundles esm6",
7 "build-webpack": "webpack && webpack --mode=production --output-filename=stomp.umd.min.js",
8 "build": "npm run clean && npx tsc && npm run build-webpack",
9 "test": "jasmine",
10 "karma": "karma start --single-run",
11 "lint": "tslint 'src/**/*.ts'",
12 "prettier": "prettier --write .",
13 "prepublishOnly": "npm run lint && npm run build && npm run karma && npm run test"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/stomp-js/stompjs.git"
18 },
19 "keywords": [
20 "STOMP",
21 "RabbitMQ",
22 "ActiveMQ",
23 "Websocket",
24 "messaging",
25 "queue",
26 "SockJS"
27 ],
28 "author": "deepak@kreatio.com",
29 "license": "Apache-2.0",
30 "bugs": {
31 "url": "https://github.com/stomp-js/stompjs/issues"
32 },
33 "homepage": "https://github.com/stomp-js/stompjs#readme",
34 "devDependencies": {
35 "@chiragrupani/karma-chromium-edge-launcher": "^2.0.0",
36 "awesome-typescript-loader": "^5.2.0",
37 "jasmine": "^3.1.0",
38 "karma": "^5.0.3",
39 "karma-chrome-launcher": "^3.0.0",
40 "karma-firefox-launcher": "^2.0.0",
41 "karma-jasmine": "^4.0.0",
42 "karma-safari-launcher": "git://github.com/RLovelett/karma-safari-launcher.git#safari-webdriver",
43 "karma-summary-reporter": "^2.0.2",
44 "prettier": "^2.1.2",
45 "text-encoding": "^0.7.0",
46 "tslint": "^6.0.0",
47 "tslint-config-prettier": "^1.18.0",
48 "typescript": "=3.6.4",
49 "webpack": "^4.33.0",
50 "webpack-cli": "^3.3.2",
51 "ws": "^8.2.0"
52 },
53 "module": "./esm6/index.js",
54 "main": "bundles/stomp.umd.js",
55 "typings": "index.d.ts",
56 "sideEffects": false,
57 "dependencies": {}
58}