mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 08:40:38 +00:00
* initial WIP to remove freeswitch from media path when not recording or transcribing dial calls * implement release-media and anchor-media operations * mute/unmute now handled by rtpengine * Dial: dtmf detection now based on SIP INFO events from sbcs and rtpengine * add reason to gather action, bugfixes for transcribe and say
60 lines
2.0 KiB
JSON
60 lines
2.0 KiB
JSON
{
|
|
"name": "jambonz-feature-server",
|
|
"version": "0.6.6",
|
|
"main": "app.js",
|
|
"engines": {
|
|
"node": ">= 10.16.0"
|
|
},
|
|
"keywords": [
|
|
"sip",
|
|
"drachtio",
|
|
"jambonz"
|
|
],
|
|
"author": "Dave Horton",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jambonz/jambonz-feature-server.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jambonz/jambonz-feature-server/issues"
|
|
},
|
|
"scripts": {
|
|
"start": "node app",
|
|
"test": "NODE_ENV=test JAMBONES_HOSTING=1 DRACHTIO_HOST=127.0.0.1 DRACHTIO_PORT=9060 DRACHTIO_SECRET=cymru JAMBONES_MYSQL_HOST=127.0.0.1 JAMBONES_MYSQL_PORT=3360 JAMBONES_MYSQL_USER=jambones_test JAMBONES_MYSQL_PASSWORD=jambones_test JAMBONES_MYSQL_DATABASE=jambones_test JAMBONES_REDIS_HOST=127.0.0.1 JAMBONES_REDIS_PORT=16379 JAMBONES_LOGLEVEL=debug ENABLE_METRICS=0 HTTP_PORT=3000 JAMBONES_SBCS=172.38.0.10 JAMBONES_FREESWITCH=127.0.0.1:8022:ClueCon:docker-host JAMBONES_TIME_SERIES_HOST=127.0.0.1 JAMBONES_NETWORK_CIDR=172.38.0.0/16 node test/ ",
|
|
"coverage": "./node_modules/.bin/nyc --reporter html --report-dir ./coverage npm run test",
|
|
"jslint": "eslint app.js lib"
|
|
},
|
|
"dependencies": {
|
|
"@jambonz/db-helpers": "^0.6.13",
|
|
"@jambonz/mw-registrar": "^0.2.1",
|
|
"@jambonz/realtimedb-helpers": "^0.4.8",
|
|
"@jambonz/stats-collector": "^0.1.5",
|
|
"@jambonz/time-series": "^0.1.5",
|
|
"aws-sdk": "^2.846.0",
|
|
"bent": "^7.3.12",
|
|
"cidr-matcher": "^2.1.1",
|
|
"debug": "^4.3.1",
|
|
"deepcopy": "^2.1.0",
|
|
"drachtio-fsmrf": "^2.0.7",
|
|
"drachtio-srf": "^4.4.55",
|
|
"express": "^4.17.1",
|
|
"ip": "^1.1.5",
|
|
"moment": "^2.29.1",
|
|
"parse-url": "^5.0.2",
|
|
"pino": "^6.11.2",
|
|
"to-snake-case": "^1.0.0",
|
|
"uuid": "^8.3.2",
|
|
"verify-aws-sns-signature": "^0.0.6",
|
|
"xml2js": "^0.4.23"
|
|
},
|
|
"devDependencies": {
|
|
"async": "^3.2.0",
|
|
"clear-module": "^4.1.1",
|
|
"eslint": "^7.20.0",
|
|
"eslint-plugin-promise": "^4.3.1",
|
|
"nyc": "^15.1.0",
|
|
"tape": "^5.2.2"
|
|
}
|
|
}
|