{
  "name": "@rollup-umd/documentation-cli",
  "version": "1.1.3",
  "description": "CLI utilities for maintaining the documentation of any Rollup UMD projects.",
  "bin": "lib/cli/index.js",
  "homepage": "https://rollup-umd.github.io/documentation-cli",
  "engines": {
    "node": ">=8"
  },
  "browserslist": [
    "IE >= 9",
    "last 2 versions"
  ],
  "author": "Dimitri Kopriwa <dimitri.kopriwa@yeutech.vn> (https://github.com/kopax)",
  "scripts": {
    "prebuild": "npm run build:clean",
    "build": "npm run build:lib",
    "prebuild:lib": "rimraf lib/*",
    "build:lib": "BABEL_ENV=production babel --out-dir lib src --copy-files",
    "build:clean": "rimraf lib/*",
    "build:readme": "toctoc README.md -w",
    "build:lib:watch": "npm run build:lib -- --watch",
    "test": "npm run lint && npm run test:web",
    "test:web": "NODE_ENV=test jest --coverage",
    "test:clean": "rimraf ./coverage",
    "test:watch": "npm run test -- --watch",
    "lint": "eslint src",
    "prepublish": "npm run build",
    "lint-staged": "lint-staged",
    "styleguide": "styleguidist server",
    "styleguide:build": "styleguidist build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rollup-umd/documentation-cli.git"
  },
  "bugs": {
    "url": "https://github.com/rollup-umd/documentation-cli/issues"
  },
  "keywords": [
    "yeutech.vn",
    "documentation",
    "cli"
  ],
  "license": "MIT",
  "eslintConfig": {
    "parser": "babel-eslint",
    "extends": "airbnb-base",
    "env": {
      "browser": true,
      "node": true,
      "jest": true,
      "es6": true
    },
    "parserOptions": {
      "ecmaVersion": 6,
      "sourceType": "module"
    },
    "rules": {
      "arrow-parens": [
        "error",
        "always"
      ],
      "arrow-body-style": [
        2,
        "as-needed"
      ],
      "comma-dangle": [
        2,
        "always-multiline"
      ],
      "import/extensions": [
        "error",
        "always",
        {
          "js": "never",
          "mjs": "never"
        }
      ],
      "import/imports-first": 0,
      "import/newline-after-import": 0,
      "import/no-dynamic-require": 0,
      "import/no-extraneous-dependencies": 0,
      "import/no-named-as-default": 0,
      "import/no-unresolved": 2,
      "import/prefer-default-export": 0,
      "indent": [
        2,
        2,
        {
          "SwitchCase": 1
        }
      ],
      "max-len": 0,
      "newline-per-chained-call": 0,
      "no-confusing-arrow": 0,
      "no-console": 1,
      "no-use-before-define": 0,
      "prefer-template": 2,
      "class-methods-use-this": 0,
      "require-yield": 0,
      "no-await-in-loop": 0
    },
    "settings": {
      "import/resolver": {
        "node": {
          "extensions": [
            ".js",
            ".mjs"
          ]
        }
      }
    }
  },
  "jest": {
    "testURL": "http://localhost",
    "roots": [
      "<rootDir>/src/"
    ],
    "testPathIgnorePatterns": [
      "<rootDir>/dist/",
      "<rootDir>/lib/"
    ],
    "collectCoverageFrom": [
      "src/**/*.{js,jsx}",
      "!src/**/*.test.{js,jsx}"
    ],
    "coverageThreshold": {
      "global": {
        "statements": 0,
        "branches": 0,
        "functions": 0,
        "lines": 0
      }
    },
    "moduleDirectories": [
      "node_modules",
      "src"
    ],
    "transformIgnorePatterns": [
      "<rootDir>/node_modules",
      "<rootDir>/internals"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/internals/testing/test-bundler.js"
    ],
    "testRegex": "tests/.*\\.test\\.js$",
    "testResultsProcessor": "jest-sonar-reporter"
  },
  "jestSonar": {
    "reportPath": "reports",
    "reportFile": "test-report.xml",
    "indent": 2
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "pre-commit": [
    "build:readme",
    "lint-staged"
  ],
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.2.2",
    "@babel/node": "^7.2.2",
    "@babel/plugin-external-helpers": "^7.2.0",
    "@babel/plugin-proposal-class-properties": "^7.3.0",
    "@babel/plugin-proposal-decorators": "^7.3.0",
    "@babel/plugin-proposal-json-strings": "^7.2.0",
    "@babel/plugin-proposal-object-rest-spread": "^7.3.2",
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
    "@babel/plugin-syntax-import-meta": "^7.2.0",
    "@babel/plugin-transform-async-to-generator": "^7.2.0",
    "@babel/plugin-transform-modules-commonjs": "^7.2.0",
    "@babel/plugin-transform-react-constant-elements": "^7.2.0",
    "@babel/plugin-transform-react-inline-elements": "^7.2.0",
    "@babel/plugin-transform-runtime": "^7.2.0",
    "@babel/preset-env": "^7.3.1",
    "@babel/preset-react": "^7.0.0",
    "@rollup-umd/documentation": "^1.3.13",
    "@rollup-umd/rollup": "^1.0.1",
    "@semantic-release/changelog": "^3.0.2",
    "@semantic-release/git": "^7.0.8",
    "@semantic-release/github": "^5.2.10",
    "@semantic-release/npm": "^5.1.4",
    "@yeutech-lab/documentation": "^1.0.17",
    "@yeutech-lab/test-polyfill": "^1.1.4",
    "babel-eslint": "^10.0.1",
    "babel-jest": "^24.1.0",
    "babel-loader": "^8.0.5",
    "babel-plugin-add-module-exports": "^1.0.0",
    "babel-plugin-array-includes": "^2.0.3",
    "babel-plugin-dynamic-import-node": "^2.2.0",
    "babel-plugin-react-transform": "^3.0.0",
    "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
    "cz-conventional-changelog": "^2.1.0",
    "es6-promise": "^4.2.5",
    "eslint": "^5.13.0",
    "eslint-config-airbnb-base": "^13.1.0",
    "eslint-plugin-import": "^2.16.0",
    "exports-loader": "^0.7.0",
    "istanbul-api": "^2.1.0",
    "istanbul-reports": "^2.1.0",
    "jest-cli": "^24.1.0",
    "jest-sonar-reporter": "^2.0.0",
    "lint-staged": "^8.1.3",
    "pre-commit": "^1.2.2",
    "react-styleguidist": "^8.0.6",
    "rimraf": "^2.6.3",
    "semantic-release": "^15.13.3",
    "toctoc": "^0.3.2",
    "webpack": "^4.29.3"
  },
  "dependencies": {
    "@babel/runtime": "^7.3.1",
    "async": "^2.6.1",
    "debug": "^4.1.1",
    "execa": "^1.0.0",
    "glob": "^7.1.3",
    "shelljs": "^0.8.3",
    "yargs": "^13.1.0"
  },
  "peerDependencies": {},
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "tag": "latest",
    "access": "public"
  },
  "release": {
    "branch": "master",
    "npmPublish": true,
    "verifyConditions": [
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/git",
      "@semantic-release/github"
    ],
    "prepare": [
      "@semantic-release/changelog",
      "@semantic-release/npm",
      {
        "path": "@semantic-release/git",
        "assets": [
          "package.json",
          "src/**/*.js",
          "CHANGELOG.md",
          "README.md",
          "LICENSE.md"
        ]
      }
    ],
    "publish": [
      "@semantic-release/npm",
      {
        "path": "@semantic-release/github",
        "assets": [
          {
            "path": "package.json"
          },
          {
            "path": "LICENSE.md"
          },
          {
            "path": "CHANGELOG.md"
          },
          {
            "path": "README.md"
          },
          {
            "path": "dist/*.esm.js",
            "label": "ES module"
          },
          {
            "path": "dist/*.esm.js.map",
            "label": "ES module source map"
          },
          {
            "path": "dist/*.min.js",
            "label": "UMD compressed"
          },
          {
            "path": "dist/*.min.js.map",
            "label": "UMD compressed source map"
          },
          {
            "path": "dist/*.cjs.min.js",
            "label": "CJS compressed"
          },
          {
            "path": "dist/*.cjs.min.js.map",
            "label": "CJS compressed source map"
          },
          {
            "path": "lib/*.js",
            "label": "CJS folder"
          }
        ]
      }
    ]
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "contributors": []
}
