{
  "name": "@asyncapi/diff",
  "version": "0.5.0",
  "description": "AsyncDiff is a library which compares two AsyncAPI Documents and provides information about the differences by pointing out explicitly informations like breaking changes.",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "files": [
    "/lib",
    "./README.md",
    "./LICENSE"
  ],
  "scripts": {
    "start": "tsc --watch",
    "build": "tsc",
    "docs": "typedoc --entryPointStrategy expand --options typedoc.json",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "lint": "eslint --max-warnings 0 --config .eslintrc .",
    "lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix",
    "get:version": "echo $npm_package_version",
    "get:name": "echo $npm_package_name",
    "generate:readme:toc": "markdown-toc -i README.md",
    "generate:assets": "npm run build && npm run docs && npm run generate:readme:toc",
    "bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/asyncapi/diff.git"
  },
  "keywords": [
    "asyncapi",
    "diff"
  ],
  "author": "aayushmau5",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/asyncapi/diff/issues"
  },
  "homepage": "https://github.com/asyncapi/diff#readme",
  "dependencies": {
    "fast-json-patch": "^3.0.0-1",
    "js-yaml": "^4.1.0",
    "json2md": "^1.12.0"
  },
  "devDependencies": {
    "@asyncapi/parser": "^3.1.0",
    "@types/jest": "^29.5.1",
    "@types/js-yaml": "^4.0.5",
    "@types/json2md": "^1.5.1",
    "@types/node": "^15.12.1",
    "@typescript-eslint/eslint-plugin": "^4.26.0",
    "@typescript-eslint/parser": "^4.26.0",
    "conventional-changelog-conventionalcommits": "^5.0.0",
    "eslint": "^7.28.0",
    "eslint-plugin-github": "^4.1.3",
    "eslint-plugin-security": "^1.4.0",
    "eslint-plugin-sonarjs": "^0.8.0-125",
    "jest": "^29.5.0",
    "markdown-toc": "^1.2.0",
    "ts-jest": "^29.1.0",
    "typedoc": "^0.22.11",
    "typedoc-plugin-markdown": "^3.11.12",
    "typedoc-plugin-rename-defaults": "^0.4.0",
    "typescript": "^4.3.2"
  },
  "publishConfig": {
    "access": "public"
  }
}
