{
  "name": "watskeburt",
  "version": "1.0.1",
  "description": "List files changed since a git revision",
  "keywords": [
    "git",
    "diff"
  ],
  "homepage": "https://github.com/sverweij/watskeburt",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sverweij/watskeburt"
  },
  "bugs": {
    "url": "https://github.com/sverweij/watskeburt/issues"
  },
  "author": {
    "name": "Sander Verweij",
    "url": "https://sverweij.github.io"
  },
  "license": "MIT",
  "bin": "dist/cli.js",
  "main": "dist/main.js",
  "module": "dist/main.js",
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": [
      {
        "import": "./dist/main.js"
      },
      "./dist/main.js"
    ]
  },
  "types": "types/watskeburt.d.ts",
  "files": [
    "dist",
    "!**/*.DS_Store",
    "types",
    "LICENSE",
    "package.json",
    "README.md"
  ],
  "devDependencies": {
    "@types/node": "20.5.1",
    "@typescript-eslint/eslint-plugin": "6.4.1",
    "c8": "8.0.1",
    "dependency-cruiser": "13.1.4",
    "eslint": "8.47.0",
    "eslint-config-moving-meadow": "4.0.2",
    "eslint-config-prettier": "9.0.0",
    "eslint-plugin-budapestian": "5.0.1",
    "eslint-plugin-eslint-comments": "3.2.0",
    "eslint-plugin-import": "2.28.1",
    "eslint-plugin-mocha": "10.1.0",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-security": "1.7.1",
    "eslint-plugin-unicorn": "48.0.1",
    "npm-run-all": "4.1.5",
    "prettier": "3.0.2",
    "ts-node": "10.9.1",
    "typescript": "5.1.6",
    "upem": "8.0.0"
  },
  "engines": {
    "node": "^16.14||>=18"
  },
  "scripts": {
    "build": "npm-run-all --sequential build:clean build:version build:dist",
    "build:version": "node --no-warnings --loader ts-node/esm tools/get-version.ts > src/version.ts",
    "build:clean": "rm -rf dist/*",
    "build:dist": "tsc",
    "check": "npm-run-all --parallel --aggregate-output lint depcruise test:cover",
    "clean": "rm -rf dist",
    "test": "node --no-warnings --loader 'ts-node/esm' --test-reporter ./tools/dot-with-summary.reporter.js --test src/*.spec.ts src/**/*.spec.ts",
    "test:cover": "c8 npm test",
    "depcruise": "depcruise dist src types",
    "depcruise:graph": "depcruise src types --include-only '^(dist|src|types)' --output-type dot | dot -T svg | tee docs/dependency-graph.svg | depcruise-wrap-stream-in-html > docs/dependency-graph.html",
    "depcruise:graph:archi": "depcruise src --include-only '^(dist|src|types)' --output-type archi | dot -T svg | depcruise-wrap-stream-in-html > docs/high-level-dependency-graph.html",
    "depcruise:graph:dev": "depcruise dist src types --include-only '^(dist|src|types)' --prefix vscode://file/$(pwd)/ --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
    "depcruise:graph:diff:dev": "depcruise dist src types --include-only '^(dist|src|types)' --highlight \"$(node dist/cli.js main -T regex)\" --prefix vscode://file/$(pwd)/ --output-type dot | dot -T svg | depcruise-wrap-stream-in-html | browser",
    "depcruise:graph:diff:mermaid": "depcruise dist src types --include-only '^(dist|src|types)' --output-type mermaid --output-to - --highlight \"$(node dist/cli.js $SHA -T regex)\"",
    "depcruise:html": "depcruise src types --progress --output-type err-html --output-to dependency-violation-report.html",
    "depcruise:text": "depcruise src types --progress --output-type text",
    "depcruise:focus": "depcruise src types --progress --output-type text --focus",
    "depcruise:reaches": "depcruise src types --progress --output-type text --reaches",
    "format": "prettier --write \"{src,tools}/**/*.{js,ts}\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
    "format:check": "prettier --log-level warn --check \"{src,tools}/**/*.ts\" \"types/**/*.ts\" \"*.{json,yml,md,js}\"",
    "lint": "npm-run-all --parallel --aggregate-output format:check lint:eslint lint:types",
    "lint:fix": "npm-run-all --parallel --aggregate-output format lint:eslint:fix",
    "lint:eslint": "eslint src types tools --cache --cache-location node_modules/.cache/eslint/",
    "lint:eslint:fix": "eslint src types tools --fix --cache --cache-location node_modules/.cache/eslint/",
    "lint:types": "tsc --noEmit",
    "scm:stage": "git add .",
    "update-dependencies": "run-s upem:update upem:install lint:fix check",
    "upem-outdated": "npm outdated --json --long | upem --dry-run",
    "upem:install": "npm install",
    "upem:update": "npm outdated --json --long | upem | pbcopy && pbpaste",
    "version": "npm-run-all --sequential clean build lint depcruise:graph scm:stage"
  }
}
