-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1 KB
/
package.json
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
{
"name": "tfg-optimization-of-simulation-model-for-resource-planning-in-hospitals",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"genetic": "npx ts-node src/algorithms/GeneticAlgorithm",
"random-search": "npx ts-node src/algorithms/RandomSearch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtote/tfg-optimization-of-simulation-model-for-resource-planning-in-hospitals.git"
},
"keywords": [],
"author": "Néstor Torres Díaz <neeestor08@gmail.com> (https://github.com/dtote)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dtote/tfg-optimization-of-simulation-model-for-resource-planning-in-hospitals/issues"
},
"homepage": "https://github.com/dtote/tfg-optimization-of-simulation-model-for-resource-planning-in-hospitals#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"@types/yargs": "^17.0.10",
"typescript": "^4.7.4"
},
"dependencies": {
"random-js": "^2.1.0",
"yargs": "^17.5.1"
}
}