{
  "name": "@schuchard/prettier",
  "version": "5.1.0",
  "description": "An Angular schematic for adding prettier",
  "scripts": {
    "build": "tsc -p tsconfig.json -w",
    "build:once": "tsc -p tsconfig.json",
    "test": "yarn run-s build:clean:launch test:sandbox clean",
    "test:schematic": "npm run build && jasmine src/**/*_spec.js",
    "test:sandbox": "cd sandbox && run-s test build",
    "clean": "git checkout HEAD -- sandbox && git clean -f -d sandbox",
    "launch:schematic": "yarn link:sandbox && cd sandbox && yarn && yarn ng g @schuchard/prettier:add",
    "launch:schematic:noPrompts": "yarn link:sandbox && cd sandbox && yarn && yarn ng g @schuchard/prettier:add --printWidth=100 --tabWidth=2 --semi=true --singleQuote=true --trailingComma=es5 --lintStaged=true --formatAllAngularFiles=true",
    "build:clean:launch": "run-s build:once clean launch:schematic:noPrompts && cd sandbox && yarn prettier",
    "dev": "yarn build:clean:launch",
    "link:sandbox": "yarn link && cd sandbox && yarn link \"@schuchard/prettier\"",
    "update:sandbox": "cd sandbox && ng update --all",
    "cm": "git-cz",
    "release": "yarn build:once && yarn np"
  },
  "keywords": [
    "prettier",
    "schematics",
    "angular"
  ],
  "main": "src/prettier/index.js",
  "author": "Kevin Schuchard <schuchard.kevin@gmail.com>",
  "bugs": "https://github.com/schuchard/prettier-schematic/issues",
  "license": "MIT",
  "schematics": "./src/collection.json",
  "ng-add": {
    "save": "devDependencies"
  },
  "engines": {
    "node": ">=8.11.0"
  },
  "dependencies": {
    "@angular-devkit/core": "^11.0.2",
    "@angular-devkit/schematics": "^11.0.2",
    "@types/node": "^14.14.10",
    "husky": "^4.3.0",
    "lint-staged": "^10.5.2",
    "prettier": "^2.2.1",
    "rxjs": "^6.6.3",
    "typescript": "^4.1.2"
  },
  "devDependencies": {
    "@types/jasmine": "^3.6.2",
    "commitizen": "^4.2.2",
    "cz-conventional-changelog": "^3.3.0",
    "jasmine": "^3.6.3",
    "np": "^7.0.0",
    "npm-run-all": "^4.1.5"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/schuchard/prettier-schematic.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,json,css,scss,less,md,ts,html,component.html}": "prettier --write"
  }
}
