{
  "name": "@typescript-tools/dependency-graph",
  "version": "3.0.1",
  "description": "Generate dependency graph of internal packages",
  "keywords": [
    "dependency",
    "graph",
    "lerna",
    "packages"
  ],
  "homepage": "https://github.com/typescript-tools/typescript-tools",
  "bugs": {
    "url": "https://github.com/typescript-tools/typescript-tools/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/typescript-tools/typescript-tools.git"
  },
  "license": "ISC",
  "author": "Eric Crosson <eric.s.crosson@utexas.edu> (https://github.com/EricCrosson)",
  "main": "dist/src/dependency-graph.js",
  "types": "dist/src/dependency-graph.d.ts",
  "files": [
    "dist/src/"
  ],
  "scripts": {
    "ava": "echo 'No tests defined'",
    "build": "tsc --build .",
    "clean": "rimraf --no-glob dist",
    "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "lint": "eslint --ext ts .",
    "lint-staged": "lint-staged",
    "lint:fix": "eslint --ext ts --fix . package.json",
    "prettier": "prettier --list-different .",
    "prettier:fix": "prettier --write .",
    "test": "echo 'No tests defined'"
  },
  "pre-commit": "lint-staged",
  "dependencies": {
    "@typescript-tools/io-ts": "3.0.1",
    "@typescript-tools/lerna-packages": "3.0.1",
    "@typescript-tools/lerna-utils": "2.1.3",
    "fp-ts": "^2.11.5",
    "io-ts": "~2.1.3"
  },
  "devDependencies": {
    "@types/node": "^14.14.6",
    "@typescript-eslint/eslint-plugin": "^5.0.0",
    "@typescript-eslint/parser": "^5.0.0",
    "ava": "^3.13.0",
    "ava-fast-check": "^3.0.0",
    "codecov": "^3.8.1",
    "eslint": "^7.32.0",
    "fast-check": "^2.6.0",
    "lint-staged": "^10.5.3",
    "nyc": "^15.1.0",
    "pre-commit": "^1.2.2",
    "prettier": "2.2.1",
    "rimraf": "^3.0.2",
    "ts-node": "^9.0.0",
    "typescript": "^4.4.4"
  },
  "ava": {
    "extensions": [
      "ts"
    ],
    "files": [
      "!dist/**/*.d.ts",
      "test/**/test-*.ts"
    ],
    "require": [
      "ts-node/register"
    ]
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "include": [
      "src/*.ts"
    ],
    "require": [
      "ts-node/register"
    ]
  },
  "publishConfig": {
    "access": "public"
  }
}
