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
49
50
51
52
53
54
55
56
|
{
"name": "cherry-pick_automation",
"version": "1.0.0",
"description": "Receive Gerrit Webhooks and cherry-pick changes from dev to target branches",
"main": "notifier.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node notifier.js"
},
"author": "daniel.smith@qt.io",
"license": "LGPL3 / GPL2 / GPL3",
"dependencies": {
"@billjs/event-emitter": "1.0.3",
"atob": "2.1.2",
"auto-load": "3.0.4",
"axios": "^1",
"axios-cache-interceptor": "^1.2.0",
"axios-rate-limit": "1.3.0",
"axios-retry": "^3.6.0",
"body-parser": "^1.19.0",
"config-ini-parser": "^1.6.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^7.2.0",
"json-sql": "0.5.0",
"limiter": "^2.1.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.46",
"moniker": "^0.1.2",
"mustache": "^4.2.0",
"net": "1.0.2",
"node-cleanup": "2.1.2",
"node-fetch": "^2.6.5",
"nodemailer": "6.4.17",
"nodemailer-ses-transport": "1.5.1",
"oauth": "^0.10.0",
"on-change": "^3.0.2",
"pg": "8.5.1",
"portfinder": "1.0.28",
"request-ip": "2.1.3",
"safe-json-stringify": "1.2.0",
"socket.io": "^4.6.0",
"throttled-queue": "^2.1.4",
"to-bool": "0.0.1",
"uuidv1": "^1.6.14",
"winston": "3.3.3"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0"
}
}
|