-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "releaseops-cloud-delivery-launch-readiness-console",
"version": "2.0.0",
"description": "Full-stack cloud delivery, deployment readiness, and release risk console.",
"main": "server.mjs",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "node tests/release.test.mjs",
"start": "node server.mjs",
"check": "node --check server.mjs && node --check src/releaseEngine.mjs && node --check src/data/releases.mjs && node --check public/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JakesShell/TaskFlow-Product-Delivery-Dashboard.git"
},
"keywords": [],
"author": "JakesShell",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/JakesShell/TaskFlow-Product-Delivery-Dashboard/issues"
},
"homepage": "https://github.com/JakesShell/TaskFlow-Product-Delivery-Dashboard#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"helmet": "^8.1.0"
}
}