{
  "name": "js-svm",
  "version": "1.0.4",
  "description": "Package implements linear svm and kernel svm that supports binary and mult-class classification",
  "author": "Xianshun Chen",
  "contributors": [
    "Xianshun Chen <xs0040@gmail.com>"
  ],
  "license": "MIT",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "mocha test",
    "cover": "istanbul cover _mocha",
    "coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
  },
  "bin": {
    "js-stats": "./src/jssvm.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chen0040/js-svm.git"
  },
  "keywords": [
    "linear svm",
    "kernel svm",
    "support vector machine",
    "classification",
    "binary classification",
    "multi-class classification",
    "prediction",
    "gradient descent",
    "svm"
  ],
  "dependencies": {},
  "devDependencies": {
    "chai": "^3.5.0",
    "coveralls": "^2.13.1",
    "grunt": "^1.0.1",
    "grunt-contrib-uglify": "^3.0.0",
    "grunt-eslint": "^19.0.0",
    "grunt-mocha-test": "^0.13.2",
    "istanbul": "^0.4.5",
    "js-datasets-iris": "^1.0.1",
    "mocha": "^3.4.1"
  },
  "bugs": {
    "url": "https://github.com/chen0040/js-svm/issues"
  },
  "homepage": "https://github.com/chen0040/js-svm#readme"
}
