softphone-vendor-headsets 2.4.4 → 2.4.5-develop.42
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/dist/deploy-info.json +2 -2
- package/package.json +81 -79
package/dist/deploy-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vendor-headsets",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "develop",
|
|
4
4
|
"ecosystem": "pc",
|
|
5
5
|
"team": "Genesys Client Media (WebRTC)",
|
|
6
6
|
"indexFiles": [
|
|
@@ -678,5 +678,5 @@
|
|
|
678
678
|
}
|
|
679
679
|
],
|
|
680
680
|
"build": "42",
|
|
681
|
-
"buildDate": "2024-01-
|
|
681
|
+
"buildDate": "2024-01-18T18:58:41.456632Z"
|
|
682
682
|
}
|
package/package.json
CHANGED
|
@@ -1,80 +1,82 @@
|
|
|
1
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
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
2
|
+
"name": "softphone-vendor-headsets",
|
|
3
|
+
"version": "2.4.5-develop.42",
|
|
4
|
+
"author": "Genesys",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"cjs": "dist/cjs/src/library/index.js",
|
|
7
|
+
"module": "dist/es/src/library/index.js",
|
|
8
|
+
"main": "dist/cjs/src/library/index.js",
|
|
9
|
+
"web": "dist/softphone-vendor-headsets.js",
|
|
10
|
+
"typings": "dist/es/src/library/index.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"repository": {
|
|
15
|
+
"url": "https://github.com/purecloudlabs/softphone-vendor-headsets",
|
|
16
|
+
"type": ""
|
|
17
|
+
},
|
|
18
|
+
"publishConfig": {
|
|
19
|
+
"registry": "https://registry.npmjs.org"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"install:all": "npm ci; cd react-app; npm install; cd -",
|
|
23
|
+
"build": "npm run build:react && npm run build:src && npm run build:es && npm run build:module",
|
|
24
|
+
"build:react": "cd react-app; yarn build",
|
|
25
|
+
"build:src": "tsc -p .",
|
|
26
|
+
"build:es": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
|
|
27
|
+
"build:module": "webpack --mode production",
|
|
28
|
+
"compile:module": "tsc -p ./react-app/tsconfig.json",
|
|
29
|
+
"test": "cd react-app; npm run test; cd -",
|
|
30
|
+
"test:watch": "cd react-app; npm run test:watch; cd -",
|
|
31
|
+
"lint": "eslint -c .eslintrc.json ./react-app/src --ext .ts,.tsx",
|
|
32
|
+
"lint:fix": "npm run lint -- --fix"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@gnaudio/jabra-js": "^4.2.1",
|
|
36
|
+
"browserama": "^3.2.0",
|
|
37
|
+
"fetch-jsonp": "^1.2.1",
|
|
38
|
+
"rxjs": "^7.4.0",
|
|
39
|
+
"strict-event-emitter-types": "^2.0.0",
|
|
40
|
+
"uuid": "^9.0.1",
|
|
41
|
+
"whatwg-fetch": "^3.6.2",
|
|
42
|
+
"zone.js": "~0.10.2"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@babel/core": "^7.15.5",
|
|
46
|
+
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
47
|
+
"@babel/preset-env": "^7.15.6",
|
|
48
|
+
"@babel/preset-typescript": "^7.15.0",
|
|
49
|
+
"@types/jest": "^27.5.0",
|
|
50
|
+
"@types/lodash": "^4.14.168",
|
|
51
|
+
"@types/node": "^12.12.37",
|
|
52
|
+
"@types/uuid": "^9.0.7",
|
|
53
|
+
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
|
54
|
+
"@typescript-eslint/parser": "^4.31.1",
|
|
55
|
+
"babel-loader": "^8.1.0",
|
|
56
|
+
"cors": "^2.8.5",
|
|
57
|
+
"eslint": "^7.32.0",
|
|
58
|
+
"express": "^4.17.1",
|
|
59
|
+
"http-errors": "^1.8.0",
|
|
60
|
+
"husky": "^4.0.10",
|
|
61
|
+
"jest-fetch-mock": "^3.0.3",
|
|
62
|
+
"morgan": "^1.9.0",
|
|
63
|
+
"ts-jest": "^29.1.1",
|
|
64
|
+
"ts-node": "~7.0.0",
|
|
65
|
+
"tslib": "^2.3.1",
|
|
66
|
+
"typescript": "^4.1.2",
|
|
67
|
+
"webpack": "^4.44.2",
|
|
68
|
+
"webpack-cli": "^4.9.1",
|
|
69
|
+
"wildstring": "^1.0.9"
|
|
70
|
+
},
|
|
71
|
+
"husky": {
|
|
72
|
+
"hooks": {
|
|
73
|
+
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"prettier": {
|
|
77
|
+
"printWidth": 100,
|
|
78
|
+
"semi": true,
|
|
79
|
+
"singleQuote": true,
|
|
80
|
+
"trailingComma": "es5"
|
|
81
|
+
}
|
|
82
|
+
}
|