{
  "name": "@apiture/api-ref-resolver",
  "version": "1.3.2",
  "description": "Tool to merge multiple OpenAPI or AsyncAPI documents that use JSON Reference links (`$ref`) to reference API definition elements across source files.",
  "main": "lib/src/index.js",
  "bin": {
    "arr": "lib/src/cli.js",
    "api-ref-resolver": "lib/src/cli.js"
  },
  "files": [
    "lib",
    "src",
    "package.json",
    "README.md"
  ],
  "scripts": {
    "prepare": "npx tsc",
    "compile": "npx tsc",
    "test": "npx jest --collect-coverage test",
    "coverage": "true",
    "lint": "npx eslint --fix --ext .ts src test ",
    "pipeline-lint": "npx eslint --ext .ts src test",
    "clean": "rm -rf lib"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:apiture/api-ref-resolver.git"
  },
  "keywords": [
    "JSON",
    "$ref",
    "resolve",
    "OpenAPI",
    "AsyncAPI"
  ],
  "pre-push": [
    "lint",
    "test"
  ],
  "author": { "name": "David Biesack", "url": "https://github.com/DavidBiesack"},
  "license": "ISC",
  "homepage": "https://github.com/apiture/api-ref-resolver/blob/main/README.md",
  "dependencies": {
    "bl": "^5.0.0",
    "commander": "^9.0.0",
    "fs-extra": "^10.0.0",
    "js-yaml": "^4.1.0",
    "json-pointer": "^0.6.1",
    "mkdirs": "0.0.3"
  },
  "devDependencies": {
    "@types/commander": "^2.12.2",
    "@typescript-eslint/eslint-plugin": "^5.12.0",
    "@typescript-eslint/parser": "^5.12.0",
    "jest": "^27.5.1",
    "pre-push": "^0.1.1",
    "@jest/globals": "^27.5.1",
    "ts-jest": "^27.1.3",
    "typescript": "^4.5.5",
    "eslint": "^8.9.0",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-jsx-a11y": "^6.5.1",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-react": "^7.28.0",
    "prettier": "^2.5.1"
  }
}
