{
  "name": "circular-dependency-plugin-visualizer",
  "version": "1.2.3",
  "description": "A tool to help you visualize and understand circular dependencies in your webpack build.",
  "main": "src/index.js",
  "scripts": {
    "cypress": "cypress open",
    "pree2e": "npm run test-server &",
    "e2e": "node ./test/generate-output && wait-on http://localhost:3000 && cypress run",
    "poste2e": "./test/kill-server.sh",
    "check-formatting": "prettier --check .",
    "lint": "eslint .",
    "test": "jest --coverage",
    "test-server": "node test/server",
    "prepublish": "npm run lint && npm run check-formatting && npm run test && npm run e2e",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sfrieson/circular-dependency-plugin-visualizer.git"
  },
  "keywords": [
    "circular",
    "dependency",
    "webpack",
    "visualization"
  ],
  "author": "Steven Frieson",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/sfrieson/circular-dependency-plugin-visualizer/issues"
  },
  "homepage": "https://github.com/sfrieson/circular-dependency-plugin-visualizer#readme",
  "peerDependencies": {
    "circular-dependency-plugin": ">= 4.4.0"
  },
  "devDependencies": {
    "cheerio": "^1.0.0-rc.3",
    "cypress": "^5.1.0",
    "eslint": "^7.32.0",
    "eslint-plugin-cypress": "^2.11.3",
    "eslint-plugin-jest": "^24.4.0",
    "express": "^4.17.1",
    "husky": "^7.0.1",
    "isomorphic-fetch": "^3.0.0",
    "jest": "^24.9.0",
    "lint-staged": "^11.1.2",
    "prettier": "^2.2.1",
    "wait-on": "^3.3.0"
  },
  "jest": {
    "testPathIgnorePatterns": [
      "node_modules",
      "<rootDir>/cypress"
    ]
  },
  "lint-staged": {
    "*.{js,css,md}": "prettier --write",
    "*.js": "eslint --fix"
  }
}
