{
  "name": "@custom-elements-manifest/analyzer",
  "version": "0.1.8",
  "description": "",
  "license": "MIT",
  "bin": {
    "custom-elements-manifest": "./dist/index.js",
    "cem": "./dist/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/open-wc/custom-elements-manifest.git"
  },
  "author": "open-wc",
  "homepage": "https://github.com/open-wc/custom-elements-manifest",
  "bugs": {
    "url": "https://github.com/open-wc/custom-elements-manifest"
  },
  "main": "dist/index.js",
  "module": "index.mjs",
  "scripts": {
    "build": "tsc",
    "format:prettier": "node node_modules/prettier/bin-prettier.js \"**/*.{ts,js,mjs,cjs,md}\" \"**/package.json\" --write --ignore-path .eslintignore",
    "lint:eslint": "eslint --ext .ts,.js,.mjs,.cjs .",
    "start": "nodemon dist/index.js analyze --dev --litelement --globs './fixtures/-TEST/package'",
    "test": "mocha \"test/**/*.test.{ts,js,mjs,cjs}\" --require ts-node/register",
    "test:watch": "mocha \"test/**/*.test.{ts,js,mjs,cjs}\" --watch --require ts-node/register",
    "tsc:watch": "tsc --watch",
    "update-fixtures": "node scripts/update-version.mjs --version 0.1.0"
  },
  "keywords": [
    "custom-elements",
    "custom-elements-json",
    "custom-elements-manifest",
    "customelements",
    "webcomponents",
    "customelementsjson",
    "customelementsmanifest"
  ],
  "dependencies": {
    "@custom-elements-manifest/helpers": "^0.0.3",
    "@web/config-loader": "^0.1.3",
    "command-line-args": "^5.1.1",
    "comment-parser": "^0.7.6",
    "globby": "^11.0.1",
    "typescript": "~4.0.0"
  },
  "devDependencies": {
    "@types/chai": "^4.2.12",
    "@types/command-line-args": "^5.0.0",
    "@types/mocha": "^8.0.3",
    "@types/node": "^14.11.2",
    "@typescript-eslint/eslint-plugin": "^4.15.0",
    "@typescript-eslint/parser": "^4.15.0",
    "chai": "^4.2.0",
    "custom-elements-manifest": "^0.1.0",
    "eslint": "^7.9.0",
    "mocha": "^8.1.3",
    "nodemon": "^2.0.4",
    "prettier": "^2.1.2",
    "prettier-plugin-package": "^1.0.0",
    "ts-node": "^9.0.0"
  },
  "contributors": [
    "Pascal Schilp <pascalschilp@gmail.com>"
  ],
  "eslintConfig": {
    "parser": "@typescript-eslint/parser",
    "plugins": [
      "@typescript-eslint"
    ],
    "extends": [
      "eslint:recommended",
      "eslint-config-prettier",
      "plugin:@typescript-eslint/recommended"
    ],
    "env": {
      "browser": true,
      "node": true,
      "mocha": true,
      "es2020": true
    },
    "rules": {
      "@typescript-eslint/no-non-null-assertion": "off",
      "@typescript-eslint/explicit-module-boundary-types": "off",
      "@typescript-eslint/no-explicit-any": "off",
      "@typescript-eslint/no-empty-interface": "off",
      "@typescript-eslint/no-unused-vars": "error",
      "@typescript-eslint/no-var-requires": "off"
    }
  },
  "files": [
    "*.d.ts",
    "*.js",
    "*.mjs",
    "dist",
    "plugins"
  ],
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid",
    "printWidth": 100,
    "trailingComma": "all"
  },
  "customElementsManifest": "custom-elements.json"
}
