{
  "name": "repository-provider",
  "version": "35.4.21",
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "types": "./types/index.d.mts",
  "exports": {
    ".": {
      "types": "./types/index.d.mts",
      "default": "./src/index.mjs"
    }
  },
  "description": "abstract interface to git repository providers like github, bitbucket and gitlab",
  "keywords": [
    "git",
    "repository-provider"
  ],
  "contributors": [
    {
      "name": "Markus Felten",
      "email": "markus.felten@gmx.de"
    }
  ],
  "license": "0BSD",
  "scripts": {
    "prepare": "node --run prepare:typescript",
    "prepare:typescript": "tsc --allowJs --declaration --emitDeclarationOnly --declarationDir types --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext --rootDir src ./src**/*.mjs",
    "test": "node --run test:browser-ava && node --run test:ava",
    "test:ava": "ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs",
    "test:browser-ava": "browser-ava --headless --no-keep-open tests/*-ava.mjs tests/*-ava-browser.mjs",
    "cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 4m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
    "docs": "documentation readme --section=API ./src**/*.mjs",
    "lint": "node --run lint:docs && node --run lint:typescript",
    "lint:docs": "documentation lint ./src**/*.mjs",
    "lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
  },
  "dependencies": {
    "content-entry": "^14.2.3",
    "matching-iterator": "^2.1.4",
    "pacc": "^3.4.5"
  },
  "devDependencies": {
    "ava": "^6.4.0",
    "browser-ava": "^2.3.31",
    "c8": "^10.1.3",
    "documentation": "^14.0.3",
    "repository-provider-test-support": "^3.1.40",
    "semantic-release": "^24.2.5",
    "typescript": "^5.8.3"
  },
  "engines": {
    "node": ">=22.15.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/arlac77/repository-provider.git"
  },
  "bugs": {
    "url": "https://github.com/arlac77/repository-provider/issues"
  },
  "homepage": "https://github.com/arlac77/repository-provider#readme",
  "template": {
    "inheritFrom": [
      "arlac77/template-arlac77-github",
      "arlac77/template-browser-ava",
      "arlac77/template-javascript-component",
      "arlac77/template-typescript"
    ]
  }
}
