forked from ringcentral/ringcentral-web-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.78 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
{
"name": "ringcentral-web-phone",
"version": "0.7.5",
"scripts": {
"test": "npm run test:karma && npm run test:e2e",
"test:watch": "karma start",
"test:karma": "npm run test:watch -- --single-run",
"test:coverage": "cat .coverage/lcov.info | coveralls -v",
"test:e2e": "jest --runInBand",
"build": "npm run build:tsc && npm run build:webpack",
"build:tsc": "tsc",
"build:webpack": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --color",
"start": "webpack-dev-server --config webpack.config.js --progress --color",
"server": "http-server --port ${PORT:-8080}",
"watch": "npm-run-all --print-label --parallel \"build:** -- --watch\"",
"lint": "eslint --cache --cache-location node_modules/.cache/eslint --fix",
"lint:all": "npm run lint \"src/**/*.ts\" \"demo/**/*.js\"",
"lint:staged": "lint-staged"
},
"dependencies": {
"getstats": "1.2.0",
"sip.js": "0.13.5"
},
"devDependencies": {
"@types/expect-puppeteer": "3.3.1",
"@types/jest": "24.0.15",
"@types/jest-environment-puppeteer": "4.0.0",
"@types/karma": "3.0.3",
"@types/node": "12.0.8",
"bootstrap": "3.4.1",
"cache-loader": "4.0.0",
"copy-webpack-plugin": "5.0.3",
"coveralls": "3.0.4",
"cross-env": "5.2.0",
"dotenv": "8.0.0",
"eslint": "5.16.0",
"eslint-config-ringcentral-typescript": "1.0.0",
"html-webpack-plugin": "3.2.0",
"http-server": "0.11.1",
"husky": "2.4.1",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "3.4.0",
"jest": "24.8.0",
"jest-puppeteer": "4.2.0",
"jquery": "3.4.1",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.5",
"karma-env": "0.1.0",
"karma-jasmine": "2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "4.0.2",
"lint-staged": "8.2.1",
"npm-run-all": "4.1.5",
"puppeteer": "1.18.0",
"ringcentral": "3.2.2",
"ts-jest": "24.0.2",
"ts-loader": "6.0.3",
"typescript": "3.5.2",
"uglifyjs-webpack-plugin": "2.1.3",
"webpack": "4.35.0",
"webpack-cli": "3.3.4",
"webpack-dev-server": "3.7.2"
},
"preferGlobal": false,
"private": false,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": {
"name": "RingCentral, Inc.",
"email": "[email protected]"
},
"contributors": [
{
"name": "Kirill Konshin"
}
],
"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": ">=0.10.36"
},
"license": "MIT"
}