forked from MyPureCloud/genesys-cloud-webrtc-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.84 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "genesys-cloud-webrtc-sdk",
"version": "6.1.3",
"description": "client for the interfacing with Genesys Cloud WebRTC",
"repository": "https://github.com/mypurecloud/genesys-cloud-webrtc-sdk",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"cjs": "dist/cjs/index.js",
"module": "dist/es/index.js",
"main": "dist/genesys-cloud-webrtc-sdk.js",
"browser": "dist/genesys-cloud-webrtc-sdk.js",
"typings": "dist/es/index.d.ts",
"files": [
"dist"
],
"pre-push": [
"test"
],
"watch": {
"watchy": {
"patterns": [
"src"
],
"extensions": "ts",
"ignore": "node_modules/**",
"legacyWatch": true,
"delay": 2000
}
},
"scripts": {
"watchy": "npm run build:src && npm run build:module",
"watch": "npm-watch watchy",
"prebuild": "rimraf dist",
"build": "npm run build:src && npm run build:es && npm run build:cdn && npm run build:module",
"build:src": "tsc -p . && node copy-version.js",
"build:es": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
"build:cdn": "webpack --env.cdn && webpack --env.cdn --env.production",
"build:module": "webpack && webpack --env.production",
"build:sample": "./test/test-pages/build.sh",
"build:watch": "tsc -p . && webpack --watch",
"build-run-local": "concurrently \"./test/test-pages/build-dev.sh\" \"npm start\"",
"start": "stupid-server -s -p 8443",
"start:sample": "npm run build-run-local",
"test": "npm run lint && npm run test:unit",
"test:unit": "NODE_ENV=test jest --runInBand",
"test:watch": "jest --watch --collectCoverage=false --runInBand",
"lint": "eslint -c .eslintrc.json --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"greenkeep": "npx npm-check --update",
"codecov": "codecov"
},
"author": "",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@babel/runtime-corejs3": "^7.12.5",
"backoff-web": "^1.0.1",
"browserama": "^3.1.1",
"core-js": "^3.7.0",
"genesys-cloud-client-logger": "^2.0.0",
"genesys-cloud-streaming-client": "^13.2.8",
"lodash": "^4.17.15",
"safe-json-stringify": "^1.2.0",
"strict-event-emitter-types": "^2.0.0",
"typescript": "^4.0.5",
"uuid": "^3.4.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-property-mutators": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/nock": "^11.1.0",
"@types/node": "^15.12.0",
"@types/safe-json-stringify": "^1.1.0",
"@types/superagent": "^4.1.3",
"@types/uuid": "^3.4.9",
"@types/webrtc": "0.0.29",
"@types/ws": "^7.2.9",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^26.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-env": "^1.7.0",
"babelify": "^10.0.0",
"browserify": "^16.3.0",
"codecov": "^3.8.1",
"concurrently": "^5.1.0",
"crypto": "^1.0.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsdoc": "^36.0.8",
"gulp": "^4.0.2",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"jest": "^26.6.3",
"nock": "^13.0.2",
"npm-watch": "^0.10.0",
"pre-push": "^0.1.1",
"purecloud-platform-client-v2": "^116.0.0",
"rimraf": "^3.0.0",
"stupid-server": "^0.2.5",
"ts-jest": "^26.4.4",
"uglify-js": "^3.11.5",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watch": "^1.0.2",
"webpack": "^4.35.3",
"webpack-auto-inject-version": "^1.2.2",
"webpack-cli": "^3.3.5",
"ws": "^7.4.0"
},
"false": {}
}