aureooms/js-equation

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@aureooms/js-equation",
  "description": "equations system code bricks for JavaScript",
  "version": "1.0.0",
  "author": "Aurélien Ooms <aurelien.ooms@gmail.com>",
  "ava": {
    "require": [
      "babel-polyfill",
      "babel-register"
    ]
  },
  "babel": {
    "presets": [
      "latest"
    ],
    "env": {
      "development": {
        "sourceMaps": "inline"
      }
    }
  },
  "bugs": {
    "url": "https://github.com/make-github-pseudonymous-again/js-equation/issues"
  },
  "dependencies": {},
  "devDependencies": {
    "@aureooms/js-array": "^4.0.0",
    "@aureooms/js-functools": "^2.0.3",
    "@aureooms/js-itertools": "^3.1.1",
    "@aureooms/js-matrix": "^1.0.2",
    "@aureooms/js-number": "^3.0.0",
    "@aureooms/js-sort": "^7.0.0",
    "@aureooms/js-type": "^1.0.4",
    "ava": "^0.19.0",
    "babel-cli": "^6.23.0",
    "babel-polyfill": "^6.23.0",
    "babel-preset-latest": "^6.22.0",
    "codeclimate-test-reporter": "^0.4.1",
    "coveralls": "^2.11.16",
    "esdoc": "^0.5.2",
    "nyc": "^11.0.0"
  },
  "homepage": "http://make-github-pseudonymous-again.github.io/js-equation/",
  "keywords": [
    "Gauss-Jordan",
    "Gaussian elimination",
    "equations system",
    "javascript",
    "js",
    "matrices"
  ],
  "license": "AGPL-3.0",
  "main": "lib/index.js",
  "repository": {
    "url": "https://github.com/make-github-pseudonymous-again/js-equation.git",
    "type": "git"
  },
  "scripts": {
    "build": "babel src -d lib",
    "cover": "nyc --reporter=lcov npm test",
    "prepublish": "npm run build",
    "test": "ava ./test/src"
  }
}