podchat-browser
Version:
Javascript SDK to use POD's Chat Service - Browser Only
80 lines (79 loc) • 2.46 kB
JSON
{
"name": "podchat-browser",
"version": "12.9.17",
"description": "Javascript SDK to use POD's Chat Service - Browser Only",
"main": "./dist/node/chat.js",
"scripts": {
"test": "mocha --reporter spec --exit",
"publish:snapshot": "npm run version:snapshot && npm run build && npm run commitVersionChanges && npm publish --tag snapshot",
"version:snapshot": "npm version prerelease --preid snapshot",
"publish:release": "npm run version:release && npm run build && npm run commitVersionChanges && npm publish",
"version:release": "npm version 12.9.17",
"build:browser": "browserify -t [ babelify ] src/chat.js > dist/podchat-browser-bundle.js",
"build:npm": "babel src -d dist/node --copy-files",
"commitVersionChanges": "git add . && git commit -m \"Version\" && npm run wait",
"wait": "node -e \"setTimeout(() => process.exit(0), 500)\"",
"build": "node _buildInfo.js && npm run wait && npm run build:browser && npm run build:npm",
"watch": "npm-watch build"
},
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js,html",
"quiet": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/FanapSoft/pod-chat-browser-js-sdk.git"
},
"keywords": [
"POD",
"Chat",
"Fanap",
"Dirana"
],
"engines": {
"node": ">=4.2.4"
},
"author": "Masoud Amjadi <masoudmanson@gmail.com>, Farhan Naysee <farhan.naysee@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FanapSoft/pod-chat-browser-js-sdk/issues"
},
"homepage": "https://github.com/FanapSoft/pod-chat-browser-js-sdk#readme",
"dependencies": {
"crypto-js": "^4.0.0",
"dompurify": "^2.3.3",
"faker": "^5.5.3",
"kurento-utils": "^6.16.0",
"node-rsa": "^1.1.1",
"podasync-ws-only": "2.9.0-snapshot.37",
"tus-js-client": "^2.3.2",
"webrtc-adapter": "^8.0.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.16.11",
"babelify": "^10.0.0",
"mocha": "^8.1.1",
"npm-watch": "^0.11.0",
"watchify": "^4.0.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}