maael/node-ann

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "node-ann",
  "version": "0.4.2",
  "description": "A implementation of an Artifical Neural Network with Backpropagation learning.",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "mocha"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/maael/node-ann.git"
  },
  "keywords": [
    "neural",
    "network",
    "artifical",
    "learning",
    "backpropagation",
    "mse"
  ],
  "author": "Matthew Elphick",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/maael/node-ann/issues"
  },
  "homepage": "https://github.com/maael/node-ann",
  "devDependencies": {
    "chai": "^1.10.0",
    "mocha": "^2.1.0"
  }
}