-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "drachtio-siprec-recording-server",
"version": "2.0.2",
"description": "SIPREC recording server built using drachtio and rtpengine",
"main": "app.js",
"scripts": {
"start": "node app.js",
"jslint": "eslint lib app.js",
"test": "NODE_ENV=test node test/ | ./node_modules/.bin/tap-spec",
"coverage": "./node_modules/.bin/nyc --reporter html --report-dir ./coverage npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drachtio/drachtio-siprec-recording-server.git"
},
"keywords": [
"sip",
"siprec",
"drachtio",
"rtpengine",
"recording",
"rfc7865",
"rfc7866"
],
"author": "Dave Horton",
"license": "MIT",
"bugs": {
"url": "https://github.com/drachtio/drachtio-siprec-recording-server/issues"
},
"homepage": "https://github.com/drachtio/drachtio-siprec-recording-server#readme",
"devDependencies": {
"blue-tape": "^1.0.0",
"clear-require": "^2.0.0",
"fs-extra": "^5.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.13.3"
},
"dependencies": {
"config": "^1.31.0",
"debug": "^3.2.7",
"drachtio-srf": "^4.5.28",
"eslint": "^7.17.0",
"eslint-plugin-promise": "^4.2.1",
"lodash": "^4.17.21",
"pino": "^4.17.6",
"redis": "^2.8.0",
"rtpengine-client": "^0.4.12",
"sdp-transform": "^2.14.1",
"uuid": "^8.3.2",
"xml2js": "^0.4.23"
}
}