-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
70 lines (70 loc) · 1.58 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
{
"name": "ringcentral-call-control",
"version": "0.2.9",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-call-control-js.git"
},
"homepage": "https://github.com/ringcentral/ringcentral-call-control-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": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"@ringcentral/sdk": "^4.7.3",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"coveralls": "^3.1.1",
"fetch-mock": "^7.3.9",
"http-server": "^14.1.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.8.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"keywords": [
"ringcentral",
"callcontrol",
"telephony",
"javascript",
"library",
"typescript"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFiles": [
"<rootDir>/test/support/setup.js"
],
"setupFilesAfterEnv": [
"<rootDir>/test/support/jest.setup.js"
],
"reporters": [
"default"
],
"testMatch": [
"**/test/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
}
}
}