forked from ringcentral/ringcentral-web-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.32 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
{
"license": "MIT",
"version": "1.0.0-beta2",
"scripts": {
"test": "jest",
"test:coverage": "cat .coverage/lcov.info | coveralls -v",
"build": "yarn tsc && webpack --progress --color",
"serve": "webpack serve --progress --color",
"lint": "eslint --fix '**/*.{ts,tsx,js}' && prettier --write ."
},
"name": "ringcentral-web-phone",
"dependencies": {
"sip.js": "0.21.2"
},
"devDependencies": {
"@faker-js/faker": "8.0.1",
"@ringcentral/sdk": "4.7.4",
"@types/jest": "29.4.1",
"@types/jest-environment-puppeteer": "5.0.3",
"@types/node": "18.15.2",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"buffer": "6.0.3",
"cache-loader": "4.1.0",
"copy-webpack-plugin": "11.0.0",
"coveralls": "3.1.1",
"crypto-browserify": "3.12.0",
"dotenv-override-true": "6.2.2",
"eslint": "8.36.0",
"eslint-config-alloy": "4.9.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"html-webpack-plugin": "5.5.0",
"istanbul-instrumenter-loader": "3.0.1",
"jest": "29.5.0",
"jest-puppeteer": "8.0.5",
"jquery": "3.6.4",
"prettier": "2.8.4",
"puppeteer": "19.7.4",
"querystring-es3": "0.2.1",
"stream-browserify": "3.0.0",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"ttpt": "0.2.2",
"typescript": "4.9.5",
"wait-for-async": "0.6.0",
"webpack": "5.76.1",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"yarn-upgrade-all": "0.7.2"
},
"preferGlobal": false,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": {
"name": "RingCentral, Inc.",
"email": "[email protected]"
},
"contributors": [
{
"name": "Kirill Konshin"
},
{
"name": "Elias Sun"
},
{
"name": "Vyshakh Babji"
},
{
"name": "Yatin Gera"
},
{
"name": "Tyler Liu"
},
{
"name": "Embbnux Ji"
}
],
"repository": {
"type": "git",
"url": "git://github.com/ringcentral/ringcentral-web-phone.git"
},
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-web-phone/issues"
},
"homepage": "https://github.com/ringcentral/ringcentral-web-phone",
"engines": {
"node": ">=14"
}
}