forked from stomp-js/stompjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "@stomp/stompjs",
"version": "5.5.2",
"description": "STOMP client for Javascript and Typescript",
"scripts": {
"clean": "rm -rf bundles esm5 esm6",
"build-tsc": "tsc -m es6 --outDir esm6",
"build-webpack": "webpack && webpack --mode=production --output-filename=stomp.umd.min.js",
"build": "npm run clean && tsc && npm run build-tsc && npm run build-webpack",
"test": "jasmine",
"karma": "karma start --single-run",
"lint": "tslint 'src/**/*.ts'",
"prepublishOnly": "npm run lint && npm run build && npm run karma && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stomp-js/stompjs.git"
},
"keywords": [
"STOMP",
"RabbitMQ",
"ActiveMQ",
"Websocket",
"messaging",
"queue",
"SockJS"
],
"author": "deepak@kreatio.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/stomp-js/stompjs/issues"
},
"homepage": "https://github.com/stomp-js/stompjs#readme",
"devDependencies": {
"awesome-typescript-loader": "^5.2.0",
"jasmine": "^3.1.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-summary-reporter": "^1.5.0",
"text-encoding": "^0.7.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2",
"websocket": "^1.0.26"
},
"esm5": "./esm5/index.js",
"esm6": "./esm6/index.js",
"main": "bundles/stomp.umd.js",
"typings": "index.d.ts",
"sideEffects": false
}