package.json 2.07 KB
Newer Older
1
{
2
    "author": "OpenVidu",
3
    "dependencies": {
4
        "@types/node": "11.13.6",
5
        "@types/platform": "1.3.2",
6 7
        "freeice": "2.2.2",
        "hark": "1.2.3",
8 9
        "platform": "1.3.5",
        "uuid": "3.3.2",
10
        "wolfy87-eventemitter": "5.2.6"
11 12
    },
    "description": "OpenVidu Browser",
13
    "devDependencies": {
14
        "browserify": "16.2.3",
15
        "grunt": "1.0.4",
16
        "grunt-autoprefixer": "3.0.4",
17
        "grunt-cli": "1.3.2",
18 19
        "grunt-contrib-copy": "1.0.0",
        "grunt-contrib-sass": "1.0.0",
20
        "grunt-contrib-uglify": "4.0.1",
21 22
        "grunt-contrib-watch": "1.1.0",
        "grunt-string-replace": "1.3.1",
23
        "grunt-ts": "6.0.0-beta.22",
24
        "tsify": "4.0.1",
25
        "tslint": "5.16.0",
26
        "typedoc": "0.14.2",
27 28
        "typescript": "3.4.4",
        "uglify-js": "3.5.6"
29 30 31 32
    },
    "license": "Apache-2.0",
    "main": "lib/index.js",
    "name": "openvidu-browser",
33
    "repository": {
34
        "type": "git",
35
        "url": "git://github.com/OpenVidu/openvidu"
36
    },
37
    "scripts": {
38 39 40
        "browserify": "VERSION=${VERSION:-}; 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:-}; 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",
41
        "docs": "./node_modules/typedoc/bin/typedoc --options ./config/typedoc.js --out ./docs ./src && rm -rf ../../openvidu.io/api/openvidu-browser/* && cp -R ./docs/. ../../openvidu.io/api/openvidu-browser",
42
        "test": "echo \"Error: no test specified\" && exit 1"
43 44
    },
    "types": "lib/index.d.ts",
45
    "version": "2.9.0"
46
}