forked from aakatev/bigbluebutton-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1011 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "bigbluebutton-js",
"version": "0.2.0",
"description": "JavaScript wrapper for BigBlueButton API",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && webpack --config webpack.config.js",
"test": "mocha",
"example": "node examples/meetings.js | jq"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/aakatev/bigbluebutton-js.git"
},
"keywords": [
"bigbluebutton",
"bbb",
"api"
],
"author": "Artem Akatev",
"license": "ISC",
"bugs": {
"url": "https://github.com/aakatev/bigbluebutton-js/issues"
},
"homepage": "https://bigbluebutton.network/",
"dependencies": {
"axios": "^0.21.1",
"fast-xml-parser": "^3.17.2",
"hash.js": "^1.1.7"
},
"devDependencies": {
"@types/node": "^14.14.28",
"dotenv": "^8.2.0",
"mocha": "^7.2.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12"
}
}