sip-connector 6.20.1 → 6.21.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "sip-connector",
3
- "version": "6.20.1",
3
+ "version": "6.21.1",
4
4
  "description": "Module for connect to Vinteo server",
5
5
  "keywords": [
6
6
  "webrtc",
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
14
- "url": "https://github.com/Krivega/sip-connector.git"
14
+ "url": "git+https://github.com/Krivega/sip-connector.git"
15
15
  },
16
16
  "license": "MIT",
17
17
  "author": {
@@ -24,6 +24,10 @@
24
24
  ".": {
25
25
  "require": "./dist/index.cjs",
26
26
  "import": "./dist/index.js"
27
+ },
28
+ "./doMock": {
29
+ "require": "./dist/doMock.cjs",
30
+ "import": "./dist/doMock.js"
27
31
  }
28
32
  },
29
33
  "main": "./dist/index.js",
@@ -42,14 +46,14 @@
42
46
  "release": "standard-version && yarn release:publish",
43
47
  "release:major": "standard-version --release-as major && yarn release:publish",
44
48
  "release:pre": "standard-version --prerelease && yarn release:publish",
45
- "release:publish": "git push --follow-tags origin master && npm publish",
49
+ "release:publish": "git push --follow-tags origin master && npm publish --access=public",
46
50
  "test": "jest --watch",
47
51
  "test:ci": "cross-env CI=true jest --passWithNoTests",
48
52
  "test:coverage": "yarn test:ci --coverage --reporters=default --reporters=jest-junit"
49
53
  },
50
54
  "dependencies": {
51
55
  "@krivega/cancelable-promise": "^1.1.0",
52
- "@krivega/jssip": "^3.23.0",
56
+ "@krivega/jssip": "^3.23.3",
53
57
  "debug": "^4.3.4",
54
58
  "events-constructor": "^1.2.2",
55
59
  "sequent-promises": "^1.0.0",
@@ -98,8 +102,6 @@
98
102
  "@krivega/jssip": "^3.22.0",
99
103
  "debug": "^4.3.4",
100
104
  "events-constructor": "^1.2.2",
101
- "sequent-promises": "^1.0.0",
102
- "stack-promises": "^1.0.0",
103
105
  "ts-debounce": "^4.0.0"
104
106
  },
105
107
  "main:src": "src/index.ts"