{
  "name": "@tjmonsi/lit-query",
  "version": "0.0.3",
  "description": "Webcomponent lit-query following open-wc recommendations",
  "author": "lit-query",
  "license": "MIT",
  "main": "index.js",
  "module": "index.js",
  "scripts": {
    "start": "es-dev-server --app-index demo/index.html --node-resolve --open --watch",
    "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",
    "storybook": "start-storybook",
    "storybook:build": "build-storybook",
    "release": "standard-version",
    "push:publish": "git push --follow-tags origin master && npm publish --access public"
  },
  "dependencies": {
    "lit-element": "^2.4.0",
    "lit-html": "^1.3.0"
  },
  "devDependencies": {
    "@babel/plugin-proposal-class-properties": "^7.10.4",
    "@babel/plugin-proposal-decorators": "^7.10.5",
    "@babel/plugin-proposal-object-rest-spread": "^7.11.0",
    "@commitlint/cli": "^9.1.2",
    "@commitlint/config-conventional": "^10.0.0",
    "@open-wc/demoing-storybook": "^2.3.20",
    "@open-wc/eslint-config": "^3.0.0",
    "@open-wc/testing": "^2.5.25",
    "@open-wc/testing-karma": "^4.0.5",
    "conventional-changelog": "^3.1.23",
    "deepmerge": "^4.2.2",
    "es-dev-server": "^1.57.4",
    "eslint": "^7.7.0",
    "eslint-config-prettier": "^6.11.0",
    "husky": "^4.2.5",
    "lint-staged": "^10.2.13",
    "prettier": "^2.1.1",
    "semistandard": "^14.2.3",
    "standard-version": "^9.0.0"
  },
  "eslintConfig": {
    "extends": [
      "@open-wc/eslint-config",
      "eslint-config-prettier"
    ]
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid"
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "semistandard": {
    "plugins": [
      "html",
      "standard",
      "promise",
      "mocha",
      "html",
      "@typescript-eslint",
      "chai-expect"
    ],
    "parser": "babel-eslint",
    "env": [
      "mocha"
    ],
    "ignore": [
      "example/dist",
      "dist",
      "dist/**",
      "public",
      "docs",
      "hugo"
    ],
    "globals": [
      "describe",
      "it",
      "after",
      "before",
      "beforeAll",
      "afterAll",
      "page",
      "expect"
    ]
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ]
  }
}
