{
  "author": {
    "email": "keesey+phylopic@gmail.com",
    "name": "T. Michael Keesey"
  },
  "description": "Simple utilities for processing directed graphs with numerical vertices.",
  "devDependencies": {
    "@types/node": "^20.12.7",
    "@typescript-eslint/eslint-plugin": "^7.6.0",
    "@typescript-eslint/parser": "^7.6.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "9.1.0",
    "prettier": "^3.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.5",
    "vitest": "^1.5.0",
    "yarn": "^1.22.22"
  },
  "files": [
    "dist/**/*"
  ],
  "keywords": [
    "graph",
    "digraph",
    "graph theory",
    "directed graph",
    "arc"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "name": "simple-digraph",
  "repository": "https://github.com/keesey/simple-digraph",
  "resolutions": {
    "@types/node": "^20.12.7"
  },
  "scripts": {
    "build": "tsc",
    "format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
    "lint": "eslint --ext .js,.ts ./src",
    "postversion": "git push && git push --tags",
    "prepare": "yarn build",
    "prepublishOnly": "yarn test && yarn lint",
    "preversion": "yarn lint",
    "test": "vitest --watch=false",
    "version": "yarn format && yarn lint --fix && git add -A src"
  },
  "types": "dist/index.d.ts",
  "version": "1.1.1"
}
