johnpaulada/matrix-factorization-js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "matrix-factorization",
  "version": "2.0.0",
  "description": "A matrix factorization implementation written in JavaScript.",
  "main": "index.js",
  "scripts": {
    "docs": "documentation build src/** -f html -o docs",
    "test": "./node_modules/.bin/nyc --reporter=lcov --reporter=text-lcov ava tests",
    "report": "./node_modules/.bin/nyc report --reporter=html"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/johnpaulada/matrix-factorization-js.git"
  },
  "keywords": [
    "matrix-factorization",
    "javascript"
  ],
  "author": "John Paul Ada",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/johnpaulada/matrix-factorization-js/issues"
  },
  "homepage": "https://github.com/johnpaulada/matrix-factorization-js#readme",
  "devDependencies": {
    "ava": "^0.23.0",
    "babel-core": "^6.26.0",
    "babel-preset-es2015": "^6.24.1",
    "coveralls": "^3.0.0",
    "gulp": "^3.9.1",
    "gulp-babel": "^7.0.0",
    "gulp-rename": "^1.2.2",
    "gulp-uglify": "^3.0.0",
    "nyc": "^11.2.1",
    "pump": "^1.0.2",
    "uglify-js": "^3.1.6"
  },
  "nyc": {
    "include": [
      "src/**"
    ]
  }
}