{
  "name": "@danielsogl/jest-schematic",
  "version": "4.0.0",
  "description": "Schematic to add jest to an Angular CLI project",
  "repository": "danielsogl/jest-schematic",
  "bugs": "https://github.com/danielsogl/jest-schematic/issues",
  "homepage": "https://github.com/danielsogl/jest-schematic",
  "main": "src/jest/index.js",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "reset": "ts-node --project=./scripts/tsconfig.json ./scripts/e2e.ts",
    "test": "ts-node --project=./scripts/tsconfig.json ./scripts/e2e.ts",
    "test:single": "yarn test single",
    "test:workspace": "yarn test workspace",
    "test:reset": "yarn test reset",
    "release": "np"
  },
  "keywords": [
    "schematics",
    "jest-schematic",
    "jest",
    "angular"
  ],
  "author": "Daniel Sogl",
  "license": "MIT",
  "schematics": "./src/collection.json",
  "dependencies": {
    "@angular-devkit/core": "^12.0.0",
    "@angular-devkit/schematics": "^12.0.0",
    "@schematics/angular": "^12.0.0",
    "@schuchard/schematics-core": "^0.4.1",
    "rxjs": "6.5.5"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/jasmine": "^3.7.4",
    "@types/node": "^12.20.13",
    "@types/shelljs": "^0.8.8",
    "husky": "^4.3.8",
    "jasmine": "^3.7.0",
    "lint-staged": "^11.0.0",
    "np": "^7.5.0",
    "prettier": "^2.3.0",
    "shelljs": "^0.8.4",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.4"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,json,md,ts}": [
      "prettier --write"
    ]
  },
  "prettier": {
    "printWidth": 100,
    "tabWidth": 2,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5",
    "bracketSpacing": true,
    "arrowParens": "always"
  },
  "np": {
    "anyBranch": true
  }
}
