forked from ringcentral/ringcentral-web-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.64 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
{
"name": "ringcentral-web-phone",
"version": "1.0.3",
"homepage": "https://github.com/ringcentral/ringcentral-web-phone",
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-web-phone/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/ringcentral/ringcentral-web-phone.git"
},
"license": "MIT",
"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"
}
],
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"scripts": {
"build": "rm -rf lib && yarn tsc && rm -rf docs && parcel build demo/index.html demo/callback.html --dist-dir docs --public-url ./",
"lint": "eslint --fix '**/*.{ts,tsx,js,jsx}' && prettier --write . && sort-package-json",
"serve": "rm -rf .parcel-cache && parcel demo/index.html demo/callback.html --dist-dir docs",
"test": "jest src/mediaStreams.spec.ts",
"test2": "NODE_OPTIONS=--require=dotenv-override-true/config playwright test test/index.spec.ts --workers=1",
"test:coverage": "cat .coverage/lcov.info | coveralls -v"
},
"dependencies": {
"sip.js": "^0.21.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.44.1",
"@rc-ex/core": "^1.3.15",
"@ringcentral/sdk": "^5.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"bootstrap": "3.4.1",
"buffer": "^6.0.3",
"coveralls": "^3.1.1",
"crypto-browserify": "^3.12.0",
"dotenv-override-true": "^6.2.2",
"eslint": "8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"events": "^3.3.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"parcel": "^2.12.0",
"prettier": "^3.3.1",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"sort-package-json": "^2.10.0",
"stream-browserify": "^3.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"ttpt": "^0.9.6",
"typescript": "^5.4.5",
"wait-for-async": "^0.6.1",
"yarn-upgrade-all": "^0.7.2"
},
"preferGlobal": false,
"targets": {
"main": false,
"module": false,
"types": false,
"browser": false
},
"yarn-upgrade-all": {
"ignore": [
"bootstrap",
"eslint"
]
}
}