-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 745 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 745 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
{
"name": "shift-scheduler",
"version": "1.0.0",
"description": "A web application for generating fair and balanced work schedules using round-robin pairing algorithms",
"main": "shift-scheduler.html",
"scripts": {
"test": "node src/tests/schedule-generator-tests.js",
"start": "open shift-scheduler.html || start shift-scheduler.html || xdg-open shift-scheduler.html"
},
"keywords": [
"scheduler",
"shift",
"worker",
"round-robin",
"schedule",
"workforce"
],
"author": "Shift Scheduler Project",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-username/shift-scheduler-2.git"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {}
}