{
  "name": "linqts",
  "version": "3.2.0",
  "description": "LinQ + TypeScript",
  "es2015": "index.ts",
  "source": "index.ts",
  "type": "module",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "scripts": {
    "build": "tsc",
    "commit": "git-cz",
    "prebuild": "rimraf dist",
    "pretty": "prettier src/*.ts --write",
    "check-coverage": "c8 check-coverage --statements 97 --branches 97 --functions 97 --lines 97",
    "cover": "c8 -r text -r lcov npm test",
    "test": "ava",
    "test:no-coverage": "ava",
    "prepare": "husky install",
    "validate": "npm run cover && npm run check-coverage"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kutyel/linq.ts.git"
  },
  "keywords": [
    "linq",
    "typescript"
  ],
  "files": [
    "dist",
    "linq.ts",
    "readme.md"
  ],
  "author": {
    "name": "Flavio Corpa",
    "email": "flaviocorpa@gmail.com",
    "url": "https://github.com/kutyel"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kutyel/linq.ts/issues"
  },
  "homepage": "https://github.com/kutyel/linq.ts#readme",
  "devDependencies": {
    "@ava/typescript": "^4.1.0",
    "all-contributors-cli": "^6.20.0",
    "ava": "^5.2.0",
    "c8": "^10.1.3",
    "commitizen": "^4.3.0",
    "cz-conventional-changelog": "^2.1.0",
    "esm": "^3.2.25",
    "husky": "^9.1.7",
    "prettier": "^1.13.7",
    "rimraf": "^2.6.2",
    "tap-nyan": "^1.1.0",
    "ts-node": "^10.9.1",
    "tslint": "^5.10.0",
    "tslint-config-prettier": "^1.13.0",
    "tslint-config-standard": "^7.1.0",
    "typedoc": "^0.26.5",
    "typescript": "^5.5.4"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    }
  },
  "ava": {
    "files": [
      "__tests__/**/*.ts"
    ],
    "typescript": {
      "compile": "tsc",
      "rewritePaths": {
        "src/": "dist/src/",
        "__tests__/": "dist/__tests__/"
      }
    }
  }
}
