-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "wphone",
"version": "0.0.8",
"description": "WebRTC phone",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"start": "http-server public -S -C ./etc/cert.pem -K ./etc/key.pem -o -c10",
"start:unsecured": "http-server public -o -c10",
"build": "tsc && webpack --progress --config webpack.config.cjs",
"test": "echo \"Error: no test specified\" && exit 1",
"gen:docs": "node .scripts/docs-generator.js && cp docs/WPhone.md README.md",
"gen:certs": ""
},
"dependencies": {
"sip.js": "0.19.0"
},
"devDependencies": {
"@types/node": "^14.11.1",
"dotenv": "^8.2.0",
"http-server": "^0.12.3",
"jsdoc-to-markdown": "^7.0.1",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"keywords": [
"WebRTC",
"Fonos",
"SIP.js",
"Web Phone",
"Phone"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fonoster/wphone.git"
},
"bugs": {
"url": "https://github.com/fonoster/wphone/issues"
},
"author": "Pedro Sanders <[email protected]>",
"license": "MIT"
}