{
  "name": "@wctools/build-polymer",
  "version": "2.0.0",
  "description": "Library for building Polymer projects",
  "license": "BSD-3-Clause",
  "author": "The Polymer Project Authors",
  "main": "lib/polymer-build.js",
  "typings": "lib/polymer-build.d.ts",
  "scripts": {
    "clean": "rm -rf lib/",
    "build": "npm run clean && tsc && node scripts/generate-helpers.js && npm run lint",
    "format": "find src -name \"*.ts\" | xargs clang-format --style=file -i",
    "lint": "tslint -p . && node scripts/depcheck.js",
    "test": "npm run build && npm run lint && mocha \"lib/test/**/*_test.js\"",
    "test:unit": "mocha \"lib/test/**/*_test.js\"",
    "test:watch": "tsc-then -- mocha \"lib/test/**/*_test.js\""
  },
  "dependencies": {
    "@babel/core": "^7.0.0",
    "@babel/plugin-external-helpers": "^7.0.0",
    "@babel/plugin-proposal-async-generator-functions": "^7.0.0",
    "@babel/plugin-proposal-object-rest-spread": "^7.0.0",
    "@babel/plugin-syntax-async-generators": "^7.0.0",
    "@babel/plugin-syntax-dynamic-import": "^7.0.0",
    "@babel/plugin-syntax-import-meta": "^7.0.0",
    "@babel/plugin-syntax-object-rest-spread": "^7.0.0",
    "@babel/plugin-transform-arrow-functions": "^7.0.0",
    "@babel/plugin-transform-async-to-generator": "^7.0.0",
    "@babel/plugin-transform-block-scoped-functions": "^7.0.0",
    "@babel/plugin-transform-block-scoping": "^7.0.0",
    "@babel/plugin-transform-classes": "^7.0.0",
    "@babel/plugin-transform-computed-properties": "^7.0.0",
    "@babel/plugin-transform-destructuring": "^7.0.0",
    "@babel/plugin-transform-duplicate-keys": "^7.0.0",
    "@babel/plugin-transform-exponentiation-operator": "^7.0.0",
    "@babel/plugin-transform-for-of": "^7.0.0",
    "@babel/plugin-transform-function-name": "^7.0.0",
    "@babel/plugin-transform-instanceof": "^7.0.0",
    "@babel/plugin-transform-literals": "^7.0.0",
    "@babel/plugin-transform-modules-amd": "^7.0.0",
    "@babel/plugin-transform-object-super": "^7.0.0",
    "@babel/plugin-transform-parameters": "^7.0.0",
    "@babel/plugin-transform-regenerator": "^7.0.0",
    "@babel/plugin-transform-shorthand-properties": "^7.0.0",
    "@babel/plugin-transform-spread": "^7.0.0",
    "@babel/plugin-transform-sticky-regex": "^7.0.0",
    "@babel/plugin-transform-template-literals": "^7.0.0",
    "@babel/plugin-transform-typeof-symbol": "^7.0.0",
    "@babel/plugin-transform-unicode-regex": "^7.0.0",
    "@babel/traverse": "^7.0.0",
    "@polymer/esm-amd-loader": "^1.0.0",
    "@types/babel-types": "^6.25.1",
    "@types/babylon": "^6.16.2",
    "@types/gulp-if": "0.0.33",
    "@types/html-minifier": "^3.5.1",
    "@types/is-windows": "^0.2.0",
    "@types/mz": "0.0.31",
    "@types/parse5": "^2.2.34",
    "@types/resolve": "0.0.7",
    "@types/uuid": "^3.4.3",
    "@types/vinyl": "^2.0.0",
    "@types/vinyl-fs": "^2.4.8",
    "babel-plugin-minify-guarded-expressions": "^0.4.3",
    "babel-plugin-transform-block-scope-to-iife": "^1.1.2",
    "babel-preset-minify": "^0.5.0",
    "babylon": "^7.0.0-beta.42",
    "css-slam": "^2.1.2",
    "dom5": "^3.0.0",
    "gulp-if": "^2.0.2",
    "html-minifier": "^3.5.10",
    "matcher": "^1.1.0",
    "multipipe": "^1.0.2",
    "mz": "^2.6.0",
    "parse5": "^4.0.0",
    "plylog": "^1.0.0",
    "polymer-analyzer": "^3.1.3",
    "polymer-bundler": "^4.0.9",
    "polymer-project-config": "^4.0.3",
    "regenerator-runtime": "^0.11.1",
    "stream": "0.0.2",
    "sw-precache": "^5.1.1",
    "uuid": "^3.2.1",
    "vinyl": "^1.2.0",
    "vinyl-fs": "^2.4.4"
  },
  "devDependencies": {
    "@types/fs-extra": "0.0.37",
    "@types/mocha": "^7.0.2",
    "@types/sinon": "^5.0.0",
    "chai": "^4.2.0",
    "depcheck": "^0.6.3",
    "fs-extra": "^5.0.0",
    "istanbul": "^0.4.5",
    "merge-stream": "^1.0.1",
    "mocha": "^7.1.1",
    "sinon": "^5.0.7",
    "source-map-support": "^0.5.4",
    "strip-indent": "^2.0.0",
    "temp": "^0.8.3",
    "tsc-then": "^1.1.0",
    "tslint": "^6.1.1",
    "typescript": "^3.8.3",
    "@commitlint/cli": "^8.0.0",
    "@commitlint/config-conventional": "^8.0.0",
    "@semantic-release/changelog": "^5.0.0",
    "@semantic-release/git": "^9.0.0",
    "commitizen": "^4.0.0",
    "cz-conventional-changelog": "^3.0.0",
    "husky": "^4.0.0",
    "semantic-release": "^17.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "husky": {
    "hooks": {
      "pre-push": "npm t",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "release": {
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      "@semantic-release/changelog",
      "@semantic-release/git"
    ],
    "branch": "master",
    "tagFormat": "${version}"
  },
  "directories": {
    "lib": "lib",
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wc-tools/build-polymer.git"
  },
  "keywords": [
    "polymer",
    "web-components",
    "build"
  ],
  "bugs": {
    "url": "https://github.com/wc-tools/build-polymer/issues"
  },
  "homepage": "https://github.com/wc-tools/build-polymer#readme"
}
