{
  "name": "@maksimyurkov/webtutor-push-notifications",
  "version": "0.1.1-beta.1",
  "description": "Модуль позволяет бесплатно отправлять push-уведомления пользователям WebTutor с помощью Firebase Cloud Messaging",
  "repository": "maksimyurkov/webtutor-push-notifications",
  "keywords": [
    "webtutor",
    "notifications",
    "firebase"
  ],
  "author": "Maksim Yurkov",
  "license": "MIT License",
  "bugs": {
    "url": "https://github.com/maksimyurkov/webtutor-push-notifications/issues"
  },
  "homepage": "https://github.com/maksimyurkov/webtutor-push-notifications",
  "files": [
    "assets",
    "dist",
    "webtutor"
  ],
  "scripts": {
    "start": "concurrently --kill-others --names tsc,es-dev-server \"npm run tsc:watch\" \"es-dev-server --app-index index.html --node-resolve --open --watch\"",
    "build": "npm run format && npm run lint && tsc && webpack --mode production --config webpack/webpack.config.js",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "format": "npm run format:eslint && npm run format:prettier",
    "tsc:watch": "tsc --watch",
    "lint:eslint": "eslint --ext .ts,.html . --ignore-path .gitignore",
    "format:eslint": "eslint --ext .ts,.html . --fix --ignore-path .gitignore",
    "lint:prettier": "prettier \"**/*.js\" \"**/*.ts\" --check --ignore-path .gitignore",
    "format:prettier": "prettier \"**/*.js\" \"**/*.ts\" --write --ignore-path .gitignore"
  },
  "dependencies": {
    "detect.js": "^2.2.3",
    "firebase": "^7.17.1"
  },
  "devDependencies": {
    "@polymer/iron-iconset-svg": "^3.0.1",
    "@polymer/paper-icon-button": "^3.0.2",
    "@vaadin/vaadin-button": "^2.3.0",
    "@vaadin/vaadin-context-menu": "^4.4.0",
    "@vaadin/vaadin-form-layout": "^2.2.0",
    "@vaadin/vaadin-grid": "^5.7.0-alpha5",
    "@vaadin/vaadin-lumo-styles": "^1.6.0",
    "@vaadin/vaadin-notification": "^1.5.0",
    "@vaadin/vaadin-progress-bar": "^1.3.0-alpha1",
    "@vaadin/vaadin-tabs": "^3.2.0-alpha2",
    "@vaadin/vaadin-text-field": "~2.7.0-alpha5",
    "lit-element": "^2.2.1",
    "lit-html": "^1.1.2",
    "@open-wc/building-webpack": "^2.13.38",
    "@open-wc/eslint-config": "^2.0.0",
    "@typescript-eslint/eslint-plugin": "^2.20.0",
    "@typescript-eslint/parser": "^2.20.0",
    "concurrently": "^5.1.0",
    "deepmerge": "^3.2.0",
    "es-dev-server": "^1.23.0",
    "eslint": "^6.1.0",
    "eslint-config-prettier": "^6.11.0",
    "husky": "^1.0.0",
    "lint-staged": "^8.0.0",
    "prettier": "^2.0.4",
    "tslib": "^1.11.0",
    "typescript": "^3.8.3",
    "webpack": "^4.44.0",
    "webpack-cli": "^3.3.12"
  },
  "eslintConfig": {
    "extends": [
      "@open-wc/eslint-config",
      "eslint-config-prettier"
    ]
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ]
  }
}
