-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 944 Bytes
/
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
{
"name": "@methodswithclass/evolve",
"version": "7.0.2",
"description": "This library optimizes your agent's performance by way of an evolutionary algorithm, a model of biological evolution: rank fitness, crossover of best performing, mutation, run next generation.",
"main": "dist/main.js",
"browser": "dist/main.browser.js",
"files": [
"dist"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/methodswithclass/evolve.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/methodswithclass/evolve/issues"
},
"homepage": "https://github.com/methodswithclass/evolve#readme",
"dependencies": {
"uuid": "^9.0.0"
},
"devDependencies": {
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}