-
Notifications
You must be signed in to change notification settings - Fork 791
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.82 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.82 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "jssip",
"title": "JsSIP",
"description": "The Javascript SIP library",
"version": "3.13.6",
"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/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"
},
"files": [
"LICENSE",
"README.md",
"npm-scripts.mjs",
"lib"
],
"scripts": {
"lint": "node npm-scripts.mjs lint",
"lint:fix": "node npm-scripts.mjs lint:fix",
"test": "node npm-scripts.mjs test",
"coverage": "node npm-scripts.mjs coverage",
"build": "node npm-scripts.mjs build",
"typescript:build": "node npm-scripts.mjs typescript:build",
"release": "node npm-scripts.mjs release",
"docs": "node npm-scripts.mjs docs",
"docs:watch": "node npm-scripts.mjs docs:watch",
"docs:check": "node npm-scripts.mjs docs:check"
},
"dependencies": {
"debug": "^4.3.1",
"events": "^3.3.0",
"sdp-transform": "^2.14.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/debug": "^4.1.12",
"@types/events": "^3.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.10",
"cpx": "^1.5.0",
"esbuild": "^0.27.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.0.0",
"jest": "^30.2.0",
"open-cli": "^8.0.0",
"pegjs": "^0.7.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typedoc": "^0.28.16",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
}
}