{
  "name": "@ngneat/lib",
  "version": "5.0.0",
  "description": "A schematics command that create an angular library with open source boilerplate.",
  "scripts": {
    "link:start": "npm link & tsc -p tsconfig.json --watch",
    "start": "tsc -p tsconfig.json --watch",
    "build": "tsc -p tsconfig.json",
    "test": "jest",
    "test:watch": "jest --watch",
    "contributors:add": "all-contributors add",
    "hooks:pre-commit": "node hooks/pre-commit.js",
    "commit": "cz",
    "release": "standard-version",
    "test:headless": "cross-env CI=true npm run test",
    "semantic-release": "semantic-release",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --check src/**/*.ts"
  },
  "keywords": [
    "schematics",
    "library",
    "opensource",
    "boilerplate",
    "angular"
  ],
  "publishConfig": {
    "access": "public"
  },
  "bugs": {
    "url": "https://github.com/ngneat/lib/issues"
  },
  "homepage": "https://github.com/ngneat/lib#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/ngneat/lib"
  },
  "author": {
    "name": "Itay Oded",
    "email": "itayoded1@gmail.com",
    "url": "https://github.com/itayod"
  },
  "license": "MIT",
  "schematics": "./src/collection.json",
  "dependencies": {
    "@angular-devkit/core": "^14.1.3",
    "@angular-devkit/schematics": "^14.1.3",
    "@ngneat/spectator": "^11.1.3",
    "@schematics/angular": "^14.1.3",
    "@types/node": "^18.7.9",
    "prompts": "^2.4.2",
    "rxjs": "^7.5.6",
    "typescript": "~4.7.4"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "npm run hooks:pre-commit && lint-staged"
    }
  },
  "lint-staged": {
    "*.{json,ts}": [
      "prettier --write"
    ],
    "*.{ts}": [
      "eslint --fix --cache"
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^17.0.3",
    "@commitlint/config-conventional": "^17.0.3",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/git": "^10.0.1",
    "@types/jest": "^28.1.7",
    "@types/prompts": "^2.0.14",
    "@types/stringify-object": "^4.0.1",
    "@typescript-eslint/eslint-plugin": "^5.33.1",
    "@typescript-eslint/parser": "^5.33.1",
    "all-contributors-cli": "^6.20.0",
    "cross-env": "^7.0.3",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.22.0",
    "eslint-config-prettier": "^8.5.0",
    "git-cz": "^4.9.0",
    "husky": "^8.0.1",
    "jest": "^28.1.3",
    "jsonc-parser": "^3.1.0",
    "lint-staged": "^13.0.3",
    "prettier": "^2.7.1",
    "semantic-release": "^19.0.3",
    "standard-version": "^9.5.0",
    "ts-jest": "^28.0.8"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  }
}
