-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.49 KB
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.6.1",
"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 --config=test/.mocharc.yml --exit",
"test:webhooks": "LOG_LEVEL=silent ALL_TESTS=false ALLOW_CONFIG_MUTATIONS=true WEBHOOKS_SUITE=true mocha --config=test/.mocharc.yml --exit",
"test:xapi": "LOG_LEVEL=silent ALL_TESTS=false ALLOW_CONFIG_MUTATIONS=true XAPI_SUITE=true mocha --config=test/.mocharc.yml --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.18.3",
"config": "3.3.12",
"express": "4.22.2",
"js-yaml": "4.1.1",
"luxon": "3.7.2",
"node-fetch": "3.3.2",
"pino": "10.3.1",
"prom-client": "15.1.3",
"redis": "4.7.1",
"uuid": "14.0.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"body-parser": "1.20.5",
"eslint": "8.57.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "46.10.1",
"fast-xml-parser": "5.8.0",
"jsdoc": "4.0.5",
"mocha": "11.7.6",
"nodemon": "3.1.14",
"pino-pretty": "13.1.3",
"sinon": "21.1.1",
"supertest": "7.2.2"
}
}