-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.69 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.69 KB
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
{
"name": "ringcentral-call",
"version": "0.2.19",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-call-js.git"
},
"homepage": "https://github.com/ringcentral/ringcentral-call-js#readme",
"scripts": {
"prepublish": "tsc && webpack",
"tsc": "tsc",
"build": "webpack",
"watch": "webpack --watch",
"dev-server": "http-server -p 8080",
"start": "yarn dev-server",
"test": "jest",
"test:coverage": "yarn test --coverage",
"test:showCoverage": "echo 'Coverage report available in ./coverage/lcov-report/index.html'"
},
"peerDependencies": {
"ringcentral-call-control": "^0.2.8",
"ringcentral-web-phone": "^0.8.10"
},
"devDependencies": {
"@ringcentral/sdk": "^4.7.3",
"@ringcentral/subscriptions": "^4.7.3",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.0",
"@types/pubnub": "4.0.2",
"http-server": "^14.1.0",
"jest": "^29.7.0",
"ringcentral-call-control": "^0.2.8",
"ringcentral-web-phone": "^0.8.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.4.2",
"tslint": "^6.1.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/test/support/setup.js"
],
"setupFilesAfterEnv": [
"<rootDir>/test/support/jest.setup.js"
],
"reporters": [
"default"
],
"testMatch": [
"**/test/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"transform": {
"^.+\\.tsx?$": ["ts-jest", {
"diagnostics": false
}]
}
}
}