-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
67 lines (67 loc) · 2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@stomp/rx-stomp",
"version": "2.0.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"
},
"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.0.0",
"rxjs": "^7.2.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@chiragrupani/karma-chromium-edge-launcher": "^2.2.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-sucrase": "^5.0.1",
"@rollup/plugin-terser": "^0.2.0",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jasmine": "^4.3.1",
"@types/uuid": "^9.0.0",
"jasmine": "^4.5.0",
"karma": "^6.2.0",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-safari-launcher": "git+https://github.com/RLovelett/karma-safari-launcher.git#safari-webdriver",
"karma-summary-reporter": "^3.1.1",
"prettier": "^2.8.1",
"rollup": "^3.7.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"type": "module",
"exports": "./esm6/index.js",
"main": "./esm6/index.js",
"browser": "bundles/rx-stomp.umd.js",
"typings": "index.d.ts",
"sideEffects": false
}