openvidu/openvidu-browser/package.json

46 lines
2.0 KiB
JSON
Raw Normal View History

{
2018-07-23 11:37:18 +02:00
"author": "OpenVidu",
2018-05-11 10:43:01 +02:00
"dependencies": {
2020-03-28 12:23:06 +01:00
"@types/node": "13.9.5",
"@types/platform": "1.3.2",
"freeice": "2.2.2",
"hark": "1.2.3",
2018-07-23 11:37:18 +02:00
"platform": "1.3.5",
2020-03-28 12:23:06 +01:00
"uuid": "7.0.2",
"wolfy87-eventemitter": "5.2.9"
2018-07-23 11:37:18 +02:00
},
"description": "OpenVidu Browser",
2018-05-11 10:43:01 +02:00
"devDependencies": {
2019-11-08 09:24:16 +01:00
"browserify": "16.5.0",
2020-03-28 12:23:06 +01:00
"grunt": "1.1.0",
"grunt-cli": "1.3.2",
2018-07-23 11:37:18 +02:00
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-sass": "1.0.0",
2019-03-26 09:53:02 +01:00
"grunt-contrib-uglify": "4.0.1",
2018-07-23 11:37:18 +02:00
"grunt-contrib-watch": "1.1.0",
"grunt-postcss": "0.9.0",
2018-07-23 11:37:18 +02:00
"grunt-string-replace": "1.3.1",
"grunt-ts": "6.0.0-beta.22",
"tsify": "4.0.1",
2020-03-28 12:23:06 +01:00
"tslint": "6.1.0",
"typedoc": "0.17.3",
"typescript": "3.8.3",
"uglify-js": "3.8.1"
2018-07-23 11:37:18 +02:00
},
"license": "Apache-2.0",
"main": "lib/index.js",
"name": "openvidu-browser",
2018-05-11 10:43:01 +02:00
"repository": {
2018-07-23 11:37:18 +02:00
"type": "git",
2018-05-11 10:43:01 +02:00
"url": "git://github.com/OpenVidu/openvidu"
2018-07-23 11:37:18 +02:00
},
2018-05-11 10:43:01 +02:00
"scripts": {
"browserify": "VERSION=${VERSION:-dev}; cd src && ../node_modules/browserify/bin/cmd.js Main.ts -p [ tsify ] --exclude kurento-browser-extensions --debug -o ../static/js/openvidu-browser-$VERSION.js -v",
"browserify-prod": "VERSION=${VERSION:-dev}; cd src && ../node_modules/browserify/bin/cmd.js --debug Main.ts -p [ tsify ] --exclude kurento-browser-extensions | ../node_modules/uglify-js/bin/uglifyjs --source-map content=inline --output ../static/js/openvidu-browser-$VERSION.min.js",
"build": "cd src/OpenVidu && ./../../node_modules/typescript/bin/tsc && cd ../.. && ./node_modules/typescript/bin/tsc --declaration src/index.ts --outDir ./lib --sourceMap --lib dom,es5,es2015.promise,scripthost",
2020-04-05 20:03:46 +02:00
"docs": "./node_modules/typedoc/bin/typedoc --options ./config/typedoc.js ./src && rm -rf ../../openvidu.io-docs/docs/api/openvidu-browser/* && cp -R ./docs/. ../../openvidu.io-docs/docs/api/openvidu-browser"
2018-07-23 11:37:18 +02:00
},
"types": "lib/index.d.ts",
2020-03-12 18:21:52 +01:00
"version": "2.12.0"
2019-02-04 12:37:27 +01:00
}