{
  "name": "peaks-similarity",
  "version": "3.1.1",
  "description": "Peaks similarity - calculate the similarity between 2 ordered arrays of peaks",
  "keywords": [
    "similarity",
    "mass spectroscopy",
    "spectroscopy"
  ],
  "main": "lib/index.js",
  "module": "lib-esm/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib",
    "src",
    "lib-esm"
  ],
  "author": "Luc Patiny",
  "repository": "cheminfo/peaks-similarity",
  "bugs": {
    "url": "https://github.com/cheminfo/peaks-similarity/issues"
  },
  "homepage": "https://github.com/cheminfo/peaks-similarity",
  "license": "MIT",
  "directories": {
    "lib": "src",
    "test": "test"
  },
  "scripts": {
    "build": "cheminfo-build --entry src/index.js --root PeaksSimilarity",
    "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": "vitest run --globals --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"
  },
  "devDependencies": {
    "@types/jest": "^29.2.3",
    "@vitest/coverage-c8": "^0.25.3",
    "c8": "^7.12.0",
    "cheminfo-build": "^1.1.11",
    "eslint": "^8.28.0",
    "eslint-config-cheminfo-typescript": "^11.2.2",
    "prettier": "^2.8.0",
    "typescript": "^4.9.3",
    "vitest": "^0.25.3"
  },
  "dependencies": {
    "ml-stat": "^1.3.3"
  }
}
