{
  "name": "@advanced-rest-client/headers-parser-mixin",
  "description": "Headers parser Polymer Mixin to be implemented to elements that needs to parse headers data",
  "version": "3.2.0",
  "license": "Apache-2.0",
  "main": "index.js",
  "module": "index.js",
  "keywords": [
    "web-components",
    "headers-parser",
    "api-components",
    "arc-components"
  ],
  "authors": [
    "Pawel Psztyc",
    "The Advanced REST client authors <arc@mulesoft.com>"
  ],
  "contributors": [
    "Pawel Psztyc",
    "The Advanced REST client authors <arc@mulesoft.com>"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/advanced-rest-client/headers-parser-mixin.git"
  },
  "bugs": {
    "url": "https://github.com/advanced-rest-client/headers-parser-mixin/issues"
  },
  "dependencies": {
    "@open-wc/dedupe-mixin": "^1.2.17"
  },
  "devDependencies": {
    "@advanced-rest-client/testing-karma-sl": "^1.3.1",
    "@open-wc/eslint-config": "^2.0.6",
    "@open-wc/testing": "^2.5.16",
    "@open-wc/testing-karma": "^3.3.19",
    "deepmerge": "^4.2.2",
    "es-dev-server": "^1.48.1",
    "eslint": "^6.1.0",
    "eslint-config-prettier": "^6.11.0",
    "husky": "^4.2.5",
    "lint-staged": "^10.2.2",
    "lit-element": "^2.3.1",
    "lit-html": "^1.2.1",
    "prettier": "^2.0.5",
    "typescript": "^3.8.3",
    "typescript-lit-html-plugin": "^0.9.0"
  },
  "scripts": {
    "lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
    "format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
    "lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
    "format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "format": "npm run format:eslint && npm run format:prettier",
    "test": "karma start --coverage",
    "test:watch": "karma start --auto-watch=true --single-run=false",
    "test:sl": "karma start karma.sl.config.js --compatibility auto --coverage",
    "lint:types": "tsc"
  },
  "eslintConfig": {
    "extends": [
      "@open-wc/eslint-config",
      "eslint-config-prettier"
    ]
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ]
  }
}
