-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
31
32
33
34
35
36
37
38
39
40
{
"name": "meta-heuristicas",
"version": "1.2.0",
"description": "Este repositoria contiene heuristicas y metaheuristicas utiles para inteligencia artificial",
"main": "index.js",
"type": "module",
"scripts": {
"init": "mkdir samples logs plots 2> /dev/null",
"clean": "rm ./plots/*; rm ./logs/*; clear;",
"gen": "node ./dataHandlers/generateSample.js",
"image": "node ./charts/generatePlot.js",
"log": "bash ./util/logger.sh",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndresMpa/meta-heuristicas.git"
},
"keywords": [
"ai",
"node",
"heuristicas",
"metaheuristicas"
],
"author": "AndresMpa",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndresMpa/meta-heuristicas/issues"
},
"homepage": "https://github.com/AndresMpa/meta-heuristicas#readme",
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}