{
  "name": "group-items",
  "version": "4.0.0",
  "description": "Group arrays by complex keys into polymorphic structures",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc",
    "test": "mocha --recursive \"test/**/*.test.*\"",
    "lint": "tsc --noEmit -p tsconfig.lint.json && eslint --ignore-path .gitignore .",
    "lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix --ignore-path .gitignore .",
    "coverage": "c8 --all --src=src --reporter=text --reporter=lcov npm test",
    "benchmark": "ts-node --esm benchmark/index.ts",
    "prepack": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/meyfa/group-items.git"
  },
  "keywords": [
    "group",
    "arrays",
    "array",
    "items",
    "groupby",
    "group-by",
    "grouping",
    "collection",
    "structure",
    "key"
  ],
  "author": "Fabian Meyer",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/meyfa/group-items/issues"
  },
  "homepage": "https://github.com/meyfa/group-items",
  "engines": {
    "node": ">=18.16.1"
  },
  "devDependencies": {
    "@faker-js/faker": "8.1.0",
    "@meyfa/eslint-config": "5.0.0",
    "@types/mocha": "10.0.2",
    "@types/node": "18.18.5",
    "c8": "8.0.0",
    "eslint": "8.51.0",
    "eslint-plugin-jsdoc": "46.8.1",
    "mocha": "10.2.0",
    "ts-node": "10.9.1",
    "typescript": "5.2.2"
  },
  "dependencies": {
    "deep-eql": "^5.0.0"
  }
}
