-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "jssip_client",
"version": "0.3.4",
"description": "Flowroute SIP over WebSocket and WebRTC JavaScript client",
"main": "cjs/bundle.js",
"module": "src/FlowrouteClient.js",
"scripts": {
"start": "MODE=development webpack-dev-server --watch --https --open --content-base ./demo",
"start:pop": "MODE=development webpack-dev-server --watch --https --open --content-base ./demo --openPage fr_pop.html",
"build:umd": "MODE=production webpack",
"build:cjs": "rollup --config",
"prepare": "npm run build:cjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flowroute/jssip_client.git"
},
"keywords": [
"telephony",
"sip",
"webrtc",
"websocket",
"flowroute"
],
"author": "jchavanton",
"license": "MIT",
"bugs": {
"url": "https://github.com/flowroute/jssip_client/issues"
},
"homepage": "https://github.com/flowroute/jssip_client#readme",
"dependencies": {
"jssip": "^3.3.6",
"lodash.first": "^3.0.0",
"webrtc-adapter": "^7.2.9"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"rollup": "^1.18.0",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"targets": "> 0.25%, not dead"
}