package.json 1.19 KB
Newer Older
1
{
2 3
    "author": "OpenVidu",
    "dependencies": {
4 5
        "axios": "0.18.0",
        "buffer": "5.2.1"
6 7 8
    },
    "description": "OpenVidu Node Client",
    "devDependencies": {
9
        "@types/node": "11.13.7",
10
        "grunt": "1.0.4",
11
        "grunt-autoprefixer": "3.0.4",
12
        "grunt-cli": "1.3.2",
13 14
        "grunt-contrib-copy": "1.0.0",
        "grunt-contrib-sass": "1.0.0",
15
        "grunt-contrib-uglify": "4.0.1",
16 17
        "grunt-contrib-watch": "1.1.0",
        "grunt-string-replace": "1.3.1",
18
        "grunt-ts": "6.0.0-beta.22",
19 20
        "ts-node": "8.1.0",
        "tslint": "5.16.0",
21
        "typedoc": "0.14.2",
22
        "typescript": "3.4.4"
23 24 25 26 27 28 29 30 31
    },
    "license": "Apache-2.0",
    "main": "lib/index.js",
    "name": "openvidu-node-client",
    "repository": {
        "type": "git",
        "url": "git://github.com/OpenVidu/openvidu"
    },
    "scripts": {
32
        "build": "./node_modules/typescript/bin/tsc",
33
        "docs": "./node_modules/typedoc/bin/typedoc --options ./config/typedoc.js --out ./docs ./src && rm -rf ../../openvidu.io/api/openvidu-node-client/* && cp -R ./docs/. ../../openvidu.io/api/openvidu-node-client"
34 35
    },
    "typings": "lib/index.d.ts",
36
    "version": "2.9.0"
37
}