{
  "name": "toobig",
  "description": "Check file and directory sizes against a budget.",
  "version": "3.4.0",
  "license": "MIT",
  "homepage": "https://github.com/unindented/toobig",
  "author": {
    "name": "Daniel Perez Alvarez",
    "email": "unindented@gmail.com",
    "url": "http://unindented.org/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/unindented/toobig.git"
  },
  "bin": {
    "toobig": "dist/cli/index.js"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=14",
    "npm": ">=6"
  },
  "scripts": {
    "clean:coverage": "rimraf coverage",
    "clean:dist": "rimraf dist",
    "clean": "run-p clean:*",
    "build:dist": "tsc --build tsconfig.dist.json",
    "build:chmod": "chmod +x dist/cli/index.js",
    "build": "run-s clean build:*",
    "test:lint": "eslint --ext .js,.ts .",
    "test:unit": "jest --coverage --config config/jest/config.json",
    "test": "run-s test:*",
    "watch:unit": "npm run test:unit -- --watch",
    "watch:build": "npm run build:dist -- --watch",
    "prepublishOnly": "npm run build",
    "semantic-release": "semantic-release"
  },
  "dependencies": {
    "axios": "^0.25.0",
    "bytes": "^3.1.2",
    "chalk": "^4.0.0",
    "cosmiconfig": "^7.0.1",
    "fast-glob": "^3.2.11",
    "fs-extra": "^9.0.0",
    "get-folder-size": "^2.0.1",
    "joi": "^17.6.0",
    "lodash": "^4.17.21",
    "table": "^5.4.6",
    "terminal-link": "^2.1.1",
    "yargs": "^15.3.1"
  },
  "devDependencies": {
    "@commitlint/cli": "^16.1.0",
    "@commitlint/config-conventional": "^16.0.0",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/git": "^10.0.1",
    "@types/bytes": "^3.1.1",
    "@types/fs-extra": "^9.0.13",
    "@types/get-folder-size": "^2.0.0",
    "@types/jest": "^27.4.0",
    "@types/lodash": "^4.14.178",
    "@types/node": "^14.18.10",
    "@types/table": "^5.0.0",
    "@types/yargs": "^15.0.14",
    "@typescript-eslint/eslint-plugin": "^5.10.2",
    "@typescript-eslint/parser": "^5.10.2",
    "commitizen": "^4.2.4",
    "conventional-changelog-conventionalcommits": "^4.6.3",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^8.8.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-jest": "^26.0.0",
    "eslint-plugin-jest-formatting": "^3.1.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^7.0.4",
    "jest": "^27.4.7",
    "npm-run-all": "^4.1.5",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "semantic-release": "^19.0.2",
    "ts-jest": "^27.1.3",
    "typescript": "^4.5.5"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -V -E HUSKY_GIT_PARAMS"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  }
}
