forked from bigbluebutton/bbb-webhooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.43 KB
/
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
43
44
45
46
47
48
{
"name": "bbb-webhooks",
"version": "3.0.0-beta.0",
"description": "A BigBlueButton mudule for events WebHooks",
"type": "module",
"scripts": {
"start": "node app.js",
"dev-start": "nodemon --watch src --ext js,json,yml,yaml --exec node app.js",
"test": "LOG_LEVEL=silent ALL_TESTS=true ALLOW_CONFIG_MUTATIONS=true mocha --exit",
"test:webhooks": "LOG_LEVEL=silent ALL_TESTS=false ALLOW_CONFIG_MUTATIONS=true WEBHOOKS_SUITE=true mocha --exit",
"test:xapi": "LOG_LEVEL=silent ALL_TESTS=false ALLOW_CONFIG_MUTATIONS=true XAPI_SUITE=true mocha --exit",
"lint": "./node_modules/.bin/eslint ./",
"lint:file": "./node_modules/.bin/eslint",
"jsdoc": "./node_modules/.bin/jsdoc app.js application.js src/ -r"
},
"keywords": [
"bigbluebutton",
"webhooks"
],
"dependencies": {
"bullmq": "^4.11.4",
"config": "^3.3.7",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"luxon": "^3.4.3",
"node-fetch": "^3.3.2",
"pino": "^8.16.1",
"prom-client": "^14.2.0",
"redis": "^4.6.8",
"uuid": "^9.0.1"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"body-parser": "^1.20.2",
"eslint": "^8.49.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"fast-xml-parser": "^4.3.2",
"jsdoc": "^4.0.2",
"mocha": "^9.2.2",
"nodemon": "^3.0.1",
"pino-pretty": "^10.2.3",
"sinon": "^12.0.1",
"supertest": "^3.4.2"
}
}