@stomp/stompjs 6.0.0-beta1 → 6.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@stomp/stompjs",
3
- "version": "6.0.0-beta1",
3
+ "version": "6.1.0",
4
4
  "description": "STOMP client for Javascript and Typescript",
5
5
  "scripts": {
6
6
  "clean": "rm -rf bundles esm6",
7
- "build-tsc": "tsc -t es2017 -m es6 --outDir esm6",
8
7
  "build-webpack": "webpack && webpack --mode=production --output-filename=stomp.umd.min.js",
9
- "build": "npm run clean && npm run build-tsc && npm run build-webpack",
8
+ "build": "npm run clean && npx tsc && npm run build-webpack",
10
9
  "test": "jasmine",
11
10
  "karma": "karma start --single-run",
12
11
  "lint": "tslint 'src/**/*.ts'",
12
+ "prettier": "prettier --write .",
13
13
  "prepublishOnly": "npm run lint && npm run build && npm run karma && npm run test"
14
14
  },
15
15
  "repository": {
@@ -26,27 +26,33 @@
26
26
  "SockJS"
27
27
  ],
28
28
  "author": "deepak@kreatio.com",
29
- "license": "MIT",
29
+ "license": "Apache-2.0",
30
30
  "bugs": {
31
31
  "url": "https://github.com/stomp-js/stompjs/issues"
32
32
  },
33
33
  "homepage": "https://github.com/stomp-js/stompjs#readme",
34
34
  "devDependencies": {
35
+ "@chiragrupani/karma-chromium-edge-launcher": "^2.0.0",
35
36
  "awesome-typescript-loader": "^5.2.0",
36
37
  "jasmine": "^3.1.0",
37
38
  "karma": "^5.0.3",
38
39
  "karma-chrome-launcher": "^3.0.0",
40
+ "karma-firefox-launcher": "^2.0.0",
39
41
  "karma-jasmine": "^4.0.0",
42
+ "karma-safari-launcher": "git://github.com/RLovelett/karma-safari-launcher.git#safari-webdriver",
40
43
  "karma-summary-reporter": "^1.5.0",
44
+ "prettier": "^2.1.2",
41
45
  "text-encoding": "^0.7.0",
42
46
  "tslint": "^6.0.0",
47
+ "tslint-config-prettier": "^1.18.0",
43
48
  "typescript": "=3.6.4",
44
49
  "webpack": "^4.33.0",
45
50
  "webpack-cli": "^3.3.2",
46
- "websocket": "^1.0.26"
51
+ "ws": "^7.3.1"
47
52
  },
48
53
  "module": "./esm6/index.js",
49
54
  "main": "bundles/stomp.umd.js",
50
55
  "typings": "index.d.ts",
51
- "sideEffects": false
56
+ "sideEffects": false,
57
+ "dependencies": {}
52
58
  }
package/LICENSE.md DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2018 Deepak Kumar
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.