-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 796 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 796 Bytes
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
{
"name": "queuesignal-cloud-support-sla-triage-console",
"version": "2.0.0",
"description": "Full-stack cloud support work queue, SLA, and incident triage console.",
"type": "module",
"main": "server.mjs",
"scripts": {
"start": "node server.mjs",
"check": "node --check server.mjs && node --check src/triageEngine.mjs && node --check src/data/tickets.mjs && node --check public/app.js",
"test": "node tests/triage.test.mjs"
},
"keywords": [
"cloud-support",
"incident-triage",
"sla",
"express",
"javascript",
"support-operations",
"queue-management"
],
"author": "JakesShell",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"helmet": "^8.1.0"
}
}