{
  "name": "k-medoids",
  "version": "1.0.7",
  "description": "Implementation of the k-mediods clustering algorithm",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "clean": "rimraf ./dist",
    "prebuild:publish": "npm run clean",
    "build:publish": "tsc -p ./tsconfig.publish.json",
    "postbuild:publish": "tslint -p ./tsconfig.publish.json",
    "prepublish": "npm run build:publish",
    "build:test": "tsc",
    "pretest": "npm run build:test",
    "postruntests": "tslint -p .",
    "runtests": "mocha --require source-map-support/register",
    "test": "npm run runtests",
    "watch-tests": "tsc-watch --onSuccess \"npm run runtests\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stewart-r/k-medoids.git"
  },
  "keywords": [
    "k-medoids",
    "kmedoids",
    "clustering",
    "cluster",
    "partition",
    "partitioning",
    "medoid"
  ],
  "author": "Stewart Robertson <stewart_robertson@sky.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/stewart-r/k-medoids/issues"
  },
  "homepage": "https://github.com/stewart-r/k-medoids#readme",
  "devDependencies": {
    "@types/chai": "^4.1.0",
    "@types/js-combinatorics": "^0.5.29",
    "@types/mocha": "^2.2.46",
    "chai": "^4.1.2",
    "js-combinatorics": "^0.5.3",
    "mocha": "^10.2.0",
    "rimraf": "^2.6.2",
    "source-map-support": "^0.5.0",
    "tsc-watch": "^1.0.13",
    "tslint": "^5.9.1",
    "typescript": "^2.6.2"
  }
}