softphone-vendor-headsets 0.1.3-develop.5 → 0.1.3
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 +3 -3
- package/package.json +88 -90
package/dist/deploy-info.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vendor-headsets",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"ecosystem": "pc",
|
|
5
5
|
"team": "Genesys Client Media (WebRTC)",
|
|
6
6
|
"indexFiles": [
|
|
@@ -749,6 +749,6 @@
|
|
|
749
749
|
"file": "3.softhphone-vendor-headsets.js.map"
|
|
750
750
|
}
|
|
751
751
|
],
|
|
752
|
-
"build": "
|
|
753
|
-
"buildDate": "2022-03-
|
|
752
|
+
"build": "12",
|
|
753
|
+
"buildDate": "2022-03-30T00:52:46.858579Z"
|
|
754
754
|
}
|
package/package.json
CHANGED
|
@@ -1,91 +1,89 @@
|
|
|
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
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
}
|
|
91
|
-
}
|
|
2
|
+
"name": "softphone-vendor-headsets",
|
|
3
|
+
"version": "0.1.3",
|
|
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 && yarn --pure-lockfile",
|
|
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
|
+
"start-test-server": "npm run stop-test-server; bash ./scripts/start-test-server.sh",
|
|
29
|
+
"stop-test-server": "bash ./scripts/stop-test-server.sh",
|
|
30
|
+
"pretest": "npm run start-test-server",
|
|
31
|
+
"posttest": "npm run stop-test-server",
|
|
32
|
+
"compile:module": "tsc -p ./react-app/tsconfig.json",
|
|
33
|
+
"test:complete": "npm run pretest; npm run lint; npm run test:unit --collectCoverage=true --runInBand; npm run posttest",
|
|
34
|
+
"test:coverage": "npm run pretest; jest --collectCoverage=true --runInBand; npm run posttest",
|
|
35
|
+
"test:unit": "npm run pretest; jest --runInBand; npm run posttest",
|
|
36
|
+
"test:watch": "npm run pretest; jest --watch --collectCoverage=false --runInBand; npm run posttest",
|
|
37
|
+
"lint": "eslint -c .eslintrc.json ./react-app/src --ext .ts,.tsx",
|
|
38
|
+
"lint:fix": "npm run lint -- --fix"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@gnaudio/jabra-js": "^4.0.1",
|
|
42
|
+
"bootstrap": "^4.4.1",
|
|
43
|
+
"browserama": "^3.2.0",
|
|
44
|
+
"fetch-jsonp": "^1.2.1",
|
|
45
|
+
"rxjs": "^7.4.0",
|
|
46
|
+
"strict-event-emitter-types": "^2.0.0",
|
|
47
|
+
"utils": "^0.3.1",
|
|
48
|
+
"uuid": "^3.4.0",
|
|
49
|
+
"whatwg-fetch": "^3.6.2",
|
|
50
|
+
"zone.js": "~0.10.2"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@babel/core": "^7.15.5",
|
|
54
|
+
"@babel/plugin-proposal-class-properties": "^7.14.5",
|
|
55
|
+
"@babel/preset-env": "^7.15.6",
|
|
56
|
+
"@babel/preset-typescript": "^7.15.0",
|
|
57
|
+
"@types/jest": "^27.0.1",
|
|
58
|
+
"@types/lodash": "^4.14.168",
|
|
59
|
+
"@types/node": "^12.12.37",
|
|
60
|
+
"@types/uuid": "^8.0.0",
|
|
61
|
+
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
|
62
|
+
"@typescript-eslint/parser": "^4.31.1",
|
|
63
|
+
"babel-loader": "^8.2.2",
|
|
64
|
+
"broadcast-channel": "^4.5.0",
|
|
65
|
+
"cors": "^2.8.5",
|
|
66
|
+
"eslint": "^7.32.0",
|
|
67
|
+
"express": "^4.17.1",
|
|
68
|
+
"http-errors": "^1.8.0",
|
|
69
|
+
"husky": "^4.0.10",
|
|
70
|
+
"jest-fetch-mock": "^3.0.3",
|
|
71
|
+
"morgan": "^1.9.0",
|
|
72
|
+
"ts-jest": "^27.0.5",
|
|
73
|
+
"ts-node": "~7.0.0",
|
|
74
|
+
"tslib": "^2.3.1",
|
|
75
|
+
"typescript": "^4.1.2",
|
|
76
|
+
"webpack": "^4.46.0",
|
|
77
|
+
"webpack-cli": "^4.9.1",
|
|
78
|
+
"wildstring": "^1.0.9"
|
|
79
|
+
},
|
|
80
|
+
"husky": {
|
|
81
|
+
"hooks": {}
|
|
82
|
+
},
|
|
83
|
+
"prettier": {
|
|
84
|
+
"printWidth": 100,
|
|
85
|
+
"semi": true,
|
|
86
|
+
"singleQuote": true,
|
|
87
|
+
"trailingComma": "es5"
|
|
88
|
+
}
|
|
89
|
+
}
|