vertinho
Version:
Library to make conference apps and softphones through WebSockets with FreeSWITCH mod_verto.
58 lines (57 loc) • 1.62 kB
JSON
{
"name": "vertinho",
"version": "0.3.0",
"description": "Library to make conference apps and softphones through WebSockets with FreeSWITCH mod_verto.",
"main": "./src/index.js",
"scripts": {
"test": "echo 'Run human-specs after demo-app script!' && exit 1",
"start": "webpack-dev-server --watch",
"code-tests": "jest tests/*.test.js --detectOpenHandles",
"human-specs": "SHOW_NIGHTMARE=true WAIT_AFTER_CALL=6000 node tests/*.spec.js",
"invisible-human-specs": "SHOW_NIGHTMARE=false node tests/*.spec.js",
"lint-on-rewritten": "eslint --max-warnings 0 ./src/webrtc/ ./src/conference/ ./src/verto/"
},
"pre-commit": [
"lint-on-rewritten"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Mazuh/vertinho.git"
},
"keywords": [
"freeswitch",
"verto",
"conference",
"webrtc",
"telecommunication"
],
"author": "mazuh",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Mazuh/vertinho/issues"
},
"homepage": "https://github.com/Mazuh/vertinho#readme",
"dependencies": {
"webrtc-adapter": "^7.2.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.24.1",
"jest": "^23.6.0",
"nightmare": "^3.0.1",
"pre-commit": "^1.2.2",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}