{
  "name": "lit-flatpickr",
  "version": "0.4.1",
  "description": "A Flatpickr port to Lit Element",
  "repository": "https://github.com/Matsuuu/lit-flatpickr",
  "author": "Matsuuu",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "files": [
    "dist/**/*",
    "custom-elements.json"
  ],
  "scripts": {
    "start": "concurrently --kill-others --names tsc,dev-server \"npm run tsc:watch\" \"wds --app-index demo/index.html --node-resolve --watch --open\"",
    "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",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "format": "npm run format:eslint && npm run format:prettier",
    "analyze": "wca analyze --format json --outFile custom-elements.json",
    "build": "tsc --build tsconfig.json"
  },
  "dependencies": {
    "flatpickr": "^4.6.13",
    "lit": "^2.0.0",
    "tslib": "^1.11.0"
  },
  "devDependencies": {
    "@open-wc/eslint-config": "^2.0.0",
    "@types/node": "13.11.1",
    "@typescript-eslint/eslint-plugin": "^2.20.0",
    "@typescript-eslint/parser": "^2.20.0",
    "@web/dev-server": "^0.1.25",
    "concurrently": "^5.1.0",
    "eslint": "^6.1.0",
    "eslint-config-prettier": "^6.11.0",
    "husky": "^1.0.0",
    "lint-staged": "^8.0.0",
    "prettier": "^2.0.4",
    "typescript": "~3.8.2",
    "web-component-analyzer": "^1.1.6"
  },
  "eslintConfig": {
    "extends": [
      "@open-wc/eslint-config",
      "eslint-config-prettier"
    ]
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid",
    "printWidth": 120
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ]
  }
}
