47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|