{
  "name": "ml-anova",
  "version": "1.1.5",
  "description": "Analysis of variance",
  "main": "./lib/index.js",
  "module": "./lib-esm/index.js",
  "types": "./lib/index.d.ts",
  "keywords": [],
  "author": "Michaël Zasso",
  "license": "MIT",
  "files": [
    "src",
    "lib",
    "lib-esm"
  ],
  "scripts": {
    "clean": "rimraf lib lib-esm",
    "eslint": "eslint src --ext ts",
    "eslint-fix": "npm run eslint -- --fix",
    "prepublishOnly": "npm run tsc",
    "test": "npm run test-coverage && npm run eslint",
    "test-coverage": "npm run test-only -- --coverage",
    "test-only": "jest",
    "tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
    "tsc-cjs": "tsc --project tsconfig.cjs.json",
    "tsc-esm": "tsc --project tsconfig.esm.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mljs/anova.git"
  },
  "bugs": {
    "url": "https://github.com/mljs/anova/issues"
  },
  "homepage": "https://github.com/mljs/anova#readme",
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node"
  },
  "prettier": {
    "arrowParens": "always",
    "semi": true,
    "singleQuote": true,
    "tabWidth": 2,
    "trailingComma": "all"
  },
  "devDependencies": {
    "@types/jest": "^26.0.14",
    "eslint": "^7.11.0",
    "eslint-config-cheminfo-typescript": "^8.0.3",
    "jest": "^26.5.3",
    "ml-dataset-iris": "^1.1.1",
    "ml-matrix": "^6.5.3",
    "prettier": "^2.1.2",
    "rimraf": "^3.0.2",
    "ts-jest": "^26.4.1",
    "typescript": "^4.0.3"
  },
  "dependencies": {
    "cephes": "^1.2.0",
    "ml-array-mean": "^1.1.4"
  }
}
