-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.09 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.09 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
{
"type": "module",
"name": "siperb-provisioning",
"version": "1.0.0",
"description": "This project show how to Provision a Siperb Device and load Browser Phone, SIP.js JsSIP.js or your own custom Web-based SIP client.",
"main": "Siperb-Provisioning.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"start": "npm run build && http-server -p 7777 -a 127.0.0.1 -c-1 -o test-index.html",
"start:sipjs": "npm run build && http-server -p 7777 -a 127.0.0.1 -c-1 -o test-SIPJS.html",
"start:jssip": "npm run build && http-server -p 7777 -a 127.0.0.1 -c-1 -o test-JSSIP.html",
"start:phone": "npm run build && http-server -p 7777 -a 127.0.0.1 -c-1 -o test-Browser-Phone.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"http-server": "^14.1.1",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"jssip": "^3.10.1",
"sip.js": "^0.21.2"
}
}