{
  "name": "leasot",
  "description": "Parse and output TODOs and FIXMEs from comments in your files",
  "version": "14.4.0",
  "author": "Gilad Peleg <gilad@giladpeleg.com> (https://www.giladpeleg.com)",
  "type": "module",
  "bin": {
    "leasot": "./dist/cli/leasot.js",
    "leasot-reporter": "./dist/cli/leasot-reporter.js"
  },
  "dependencies": {
    "async": "^3.2.4",
    "chalk": "^5.0.1",
    "commander": "^9.4.0",
    "eol": "^0.9.1",
    "get-stdin": "^9.0.0",
    "globby": "^13.1.2",
    "json2xml": "^0.1.3",
    "lodash": "^4.17.21",
    "log-symbols": "^5.1.0",
    "strip-ansi": "^7.0.1",
    "text-table": "^0.2.0"
  },
  "devDependencies": {
    "@types/async": "^3.2.15",
    "@types/lodash": "^4.14.182",
    "@types/mocha": "^10.0.1",
    "@types/node": "^18.0.6",
    "@types/normalize-path": "^3.0.0",
    "@types/text-table": "^0.2.2",
    "husky": "^9.0.11",
    "jsdoc-to-markdown": "^8.0.0",
    "lint-staged": "^13.0.3",
    "mocha": "^10.0.0",
    "normalize-path": "3.0.0",
    "prettier": "^2.7.1",
    "rimraf": "^3.0.2",
    "should": "^13.2.3",
    "ts-node": "^10.9.1",
    "typedoc": "^0.23.8",
    "typescript": "^4.7.4"
  },
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist",
    "bin"
  ],
  "keywords": [
    "fixme",
    "todo",
    "comments",
    "list",
    "parse",
    "generator",
    "ci",
    "productivity",
    "automation",
    "typescript",
    "prettier"
  ],
  "license": "MIT",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "repository": "pgilad/leasot",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "clean": "rimraf docs dist",
    "docs": "typedoc src/index.ts src/definitions.ts",
    "predocs:publish": "npm run release:prepare",
    "prettier": "prettier --write src/ tests/",
    "prettier-check": "prettier --check src/ tests/",
    "release:prepare": "npm run clean && npm run prettier && npm run build && npm run test && npm run docs",
    "test": "mocha"
  },
  "lint-staged": {
    "*.yml": [
      "prettier --write"
    ],
    "*.ts": [
      "prettier --write"
    ]
  }
}
