{
  "name": "gcp-img",
  "version": "0.1.4",
  "description": "Lazily load and configure your images from Google Cloud Storage.",
  "author": "adrianengine",
  "license": "LGPL-3.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/adrianengine/gcp-img.git"
  },
  "bugs": {
    "url": "https://github.com/adrianengine/gcp-img/issues"
  },
  "keywords": [
    "web-component",
    "e2015-modules",
    "images",
    "google-cloud",
    "google-cloud-storage"
  ],
  "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",
    "build:min": "terser src/GcpImg.js -o src/gcp-img.min.js",
    "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"
  },
  "devDependencies": {
    "@open-wc/eslint-config": "^2.0.6",
    "@open-wc/testing": "^2.0.0",
    "@open-wc/testing-karma": "^3.0.0",
    "deepmerge": "^3.2.0",
    "es-dev-server": "^1.23.0",
    "eslint": "^6.1.0",
    "eslint-config-prettier": "^6.11.0",
    "husky": "^1.3.1",
    "lint-staged": "^8.0.0",
    "prettier": "^2.0.4"
  },
  "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"
    ]
  }
}
