{
  "name": "ml-pca",
  "version": "4.1.1",
  "description": "Principal component analysis",
  "main": "lib/pca.js",
  "module": "lib-esm/pca.js",
  "types": "lib/pca.d.ts",
  "files": [
    "pca.js",
    "pca.d.ts",
    "src",
    "lib",
    "lib-esm"
  ],
  "scripts": {
    "check-types": "tsc --noEmit",
    "clean": "rimraf lib lib-esm",
    "eslint": "eslint src",
    "eslint-fix": "npm run eslint -- --fix",
    "prepack": "npm run tsc",
    "prettier": "prettier --check src",
    "prettier-write": "prettier --write src",
    "test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types",
    "test-only": "jest --coverage",
    "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": "https://github.com/mljs/pca.git"
  },
  "keywords": [
    "pca",
    "principal",
    "component",
    "analysis",
    "dimensionality",
    "reduction",
    "data",
    "mining",
    "datamining",
    "machine",
    "learning"
  ],
  "author": "Jefferson Hernández",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mljs/pca/issues"
  },
  "homepage": "https://github.com/mljs/pca",
  "dependencies": {
    "ml-matrix": "^6.8.0"
  },
  "devDependencies": {
    "@types/jest": "^27.0.2",
    "eslint": "^8.1.0",
    "eslint-config-cheminfo-typescript": "^10.2.2",
    "jest": "^27.3.1",
    "jest-matcher-deep-close-to": "^3.0.2",
    "ml-dataset-iris": "^1.2.1",
    "prettier": "^2.4.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.0.7",
    "typescript": "^4.4.4"
  }
}
