forked from wagenaartje/neataptic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
41
42
43
44
45
46
{
"name": "neataptic",
"version": "1.4.7",
"description": "Architecture-free neural network library with genetic algorithm implementations",
"main": "./src/neataptic",
"scripts": {
"test:src": "mocha test/src.js test",
"test:dist": "mocha test/dist.js test",
"build:dist": "webpack",
"build:docs": "cd mkdocs && mkdocs build --site-dir ../docs && cd ../",
"build": "npm run build:dist && npm run build:docs",
"deploy": "npm run build && npm run test:dist && npm publish",
"test:travis": "npm run build:dist && npm run test:dist"
},
"devDependencies": {
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.0.1",
"mocha": "^3.5.3",
"semistandard": "*",
"webpack": "^3.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/wagenaartje/neataptic.git"
},
"keywords": [
"neural network",
"machine learning",
"genetic algorithm",
"mutation",
"neat"
],
"author": {
"name": "Thomas Wagenaar",
"email": "wagenaartje@protonmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wagenaartje/neataptic/issues",
"email": "wagenaartje@protonmail.com"
},
"homepage": "http://wagenaartje.github.io/neataptic/",
"engines": {
"node": ">=7.6"
}
}