{
  "name": "@coyoapp/plugin-adapter",
  "version": "1.3.0",
  "description": "COYO plug-in adapter",
  "author": "COYO GmbH",
  "homepage": "https://gitlab.com/coyoapp/plugins/adapter",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/coyoapp/plugins/adapter.git"
  },
  "license": "MIT",
  "keywords": [
    "COYO",
    "social intranet",
    "plug-in",
    "integration"
  ],
  "scripts": {
    "build": "run-p build:*",
    "build:main": "tsc -p tsconfig.json",
    "build:module": "tsc -p tsconfig.module.json",
    "postbuild": "size-limit",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "test": "run-s build test:*",
    "test:lint": "eslint src --ext .ts",
    "test:prettier": "prettier \"src/**/*.ts\" --list-different",
    "test:unit": "jest --coverage",
    "watch:build": "tsc -p tsconfig.module.json -w",
    "watch:test": "jest --watch",
    "cov": "run-s build test:unit && open-cli coverage/lcov-report/index.html",
    "doc": "run-s build doc:html && open-cli build/docs/index.html",
    "doc:html": "typedoc src/ --exclude **/*.spec.ts --excludePrivate --out build/docs",
    "doc:json": "typedoc src/ --exclude **/*.spec.ts --excludePrivate --json build/docs/typedoc.json",
    "release:patch": "standard-version --release-as patch",
    "release:minor": "standard-version --release-as minor",
    "release:major": "standard-version --release-as major",
    "reset": "rm -rf ./build ./coverage ./node_modules",
    "reset-hard": "git clean -dfx && git reset --hard && npm i"
  },
  "engines": {
    "node": "^16.0.0"
  },
  "dependencies": {
    "core-js": "3.21.1",
    "jwt-decode": "3.1.2",
    "resize-observer-polyfill": "1.5.1",
    "rfc4648": "1.5.1"
  },
  "devDependencies": {
    "@size-limit/preset-small-lib": "^7.0.8",
    "@types/jest": "^27.4.1",
    "@typescript-eslint/eslint-plugin": "^5.17.0",
    "@typescript-eslint/parser": "^5.17.0",
    "cz-conventional-changelog": "^3.0.1",
    "eslint": "^8.12.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-import": "^2.25.4",
    "jest": "^27.5.1",
    "jest-createspyobj": "^2.0.0",
    "jest-mock-extended": "^2.0.4",
    "npm-run-all": "^4.1.5",
    "open-cli": "^7.0.1",
    "prettier": "^2.6.1",
    "size-limit": "^7.0.8",
    "standard-version": "^9.3.2",
    "ts-jest": "^27.1.4",
    "ts-node": "^10.7.0",
    "typedoc": "^0.22.13",
    "typescript": "~4.6.3"
  },
  "files": [
    "build/main",
    "build/module",
    "!**/*.spec.*",
    "!**/*.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "prettier": {
    "printWidth": 120,
    "singleQuote": true,
    "trailingComma": "none",
    "arrowParens": "avoid"
  },
  "jest": {
    "preset": "ts-jest",
    "rootDir": "src",
    "testEnvironment": "jsdom",
    "coverageDirectory": "../coverage",
    "coverageReporters": [
      "lcov",
      "cobertura",
      "text-summary"
    ]
  },
  "size-limit": [
    {
      "path": "build/main/index.js",
      "limit": "25 KB"
    },
    {
      "path": "build/module/index.js",
      "limit": "25 KB"
    }
  ]
}
