forked from versatica/JsSIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "jssip",
"title": "JsSIP",
"description": "the Javascript SIP library",
"version": "3.10.1",
"homepage": "https://jssip.net",
"contributors": [
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)"
],
"types": "lib/JsSIP.d.ts",
"main": "lib-es5/JsSIP.js",
"keywords": [
"sip",
"websocket",
"webrtc",
"node",
"browser",
"library"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/versatica/JsSIP.git"
},
"bugs": {
"url": "https://github.com/versatica/JsSIP/issues"
},
"dependencies": {
"@types/events": "^3.0.0",
"@types/debug": "^4.1.7",
"debug": "^4.3.1",
"events": "^3.3.0",
"sdp-transform": "^2.14.1"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"ansi-colors": "^3.2.4",
"browserify": "^16.5.1",
"eslint": "^5.16.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^5.0.0",
"gulp-expect-file": "^1.0.2",
"gulp-header": "^2.0.9",
"gulp-nodeunit-runner": "^0.2.2",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^1.4.0",
"gulp-uglify-es": "^1.0.4",
"pegjs": "^0.7.0",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"lint": "node npm-scripts.js lint",
"test": "node npm-scripts.js test",
"prepublish": "node npm-scripts.js prepublish",
"release": "node npm-scripts.js release"
}
}