{
  "name": "yt-dlp-exec",
  "description": "A simple Node.js wrapper for yt-dlp",
  "homepage": "https://github.com/Marinos33/yt-dlp-exec",
  "version": "1.0.2",
  "main": "src/index.js",
  "author": {
    "name": "Marinos33",
    "url": "https://github.com/Marinos33"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Marinos33/yt-dlp-exec.git"
  },
  "bugs": {
    "url": "https://github.com/Marinos33/yt-dlp-exec/issues"
  },
  "keywords": [
    "binary",
    "nodejs",
    "youtube-dl",
    "youtube-dl-wrapper",
    "youtube-downloader",
    "yt-dlp",
    "yt-dlp-downloader",
    "yt-dlp-wrapper"
  ],
  "dependencies": {
    "dargs": "~7.0.0",
    "execa": "~5.1.0",
    "is-unix": "~2.0.1",
    "mkdirp": "~1.0.4",
    "node-fetch": "~2.6.5"
  },
  "devDependencies": {
    "@commitlint/cli": "latest",
    "@commitlint/config-conventional": "latest",
    "ava": "latest",
    "ci-publish": "latest",
    "conventional-github-releaser": "latest",
    "finepack": "latest",
    "git-authors-cli": "latest",
    "lint-staged": "latest",
    "npm-check-updates": "latest",
    "nyc": "latest",
    "prettier-standard": "latest",
    "simple-git-hooks": "latest",
    "standard": "latest",
    "standard-markdown": "latest",
    "standard-version": "latest"
  },
  "engines": {
    "node": ">= 12"
  },
  "files": [
    "scripts",
    "src"
  ],
  "scripts": {
    "clean": "rm -rf node_modules",
    "contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "lint": "standard-markdown README.md && standard",
    "postinstall": "node scripts/postinstall.js",
    "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
    "preinstall": "npx bin-version-check-cli python \">=2\"",
    "prerelease": "npm run update:check && npm run contributors",
    "pretest": "npm run lint",
    "release": "standard-version -a",
    "release:github": "conventional-github-releaser -p angular",
    "release:tags": "git push --follow-tags origin HEAD:master",
    "test": "nyc ava",
    "update": "ncu -u",
    "update:check": "ncu -- --error-level 2"
  },
  "license": "MIT",
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "package.json": [
      "finepack"
    ],
    "*.js,!*.min.js,": [
      "prettier-standard"
    ],
    "*.md": [
      "standard-markdown"
    ]
  },
  "simple-git-hooks": {
    "commit-msg": "npx commitlint --edit",
    "pre-commit": "npx lint-staged"
  }
}
