-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
35 lines (35 loc) · 852 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": "neatjs",
"version": "0.3.1",
"description": "NeuroEvolution of Augmenting Topologies (NEAT) implemented in Javascript (with tests done in Mocha for verification). Can be used as a node module or in a browser",
"keywords": [
"Neural Network",
"NN",
"Artificial Neural Networks",
"ANN",
"CPPN",
"NEAT",
"HyperNEAT"
],
"author": {
"name": "Paul Szerlip",
"email": "[email protected]",
"url": "http://designforcode.com/"
},
"main": "neat.js",
"repository": {
"type": "git",
"url": "https://github.com/OptimusLime/neatjs.git"
},
"bugs": "https://github.com/OptimusLime/neatjs/issues",
"license": "MIT",
"dependencies": {
"cppnjs": "0.x.x",
"win-utils": "*"
},
"devDependencies": {
"mocha": "1.1.x",
"should": "1.1.x",
"xml2js": "0.2.x"
}
}