{
  "name": "@yeutech-lab/rollup-umd-ci-before-script",
  "version": "1.0.10",
  "description": "CLI command in charge of configuring the continuous integration",
  "main": "lib/index.js",
  "bin": "lib/cli/index.js",
  "jsnext:main": "dist/@yeutech/rollup-umd-ci-before-script.esm.js",
  "module": "dist/@yeutech/rollup-umd-ci-before-script.esm.js",
  "homepage": "https://rollup-umd.yeutech.com/rollup-umd-ci-before-script",
  "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 && npm run build:dist",
    "prebuild:lib": "rimraf lib/*",
    "build:lib": "BABEL_ENV=production babel --out-dir lib src --copy-files",
    "prebuild:dist": "rimraf dist/*",
    "build:clean": "rimraf lib/* dist/*",
    "build:dist:dev": "rollup -c",
    "build:dist": "rollup -c --environment PRODUCTION",
    "build:readme": "toctoc README.md -w",
    "build:dist:watch": "rollup -c --watch",
    "build:lib:watch": "npm run build:lib -- --watch",
    "test": "npm run lint && npm run test:web",
    "test:web": "NODE_ENV=test TEST_REPORT_PATH=reports 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://module.kopaxgroup.com/rollup-umd/rollup-umd-ci-before-script.git"
  },
  "bugs": {
    "url": "https://module.kopaxgroup.com/rollup-umd/rollup-umd-ci-before-script/issues"
  },
  "keywords": [
    "cli",
    "yeutech.vn",
    "rollup",
    "umd",
    "ci",
    "before",
    "script"
  ],
  "license": "UNLICENSED",
  "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"
    ],
    "testRegex": "tests/.*\\.test\\.js$",
    "testResultsProcessor": "jest-sonar-reporter"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "pre-commit": [
    "build:readme",
    "lint-staged"
  ],
  "devDependencies": {
    "@babel/cli": "^7.7.7",
    "@babel/core": "^7.7.7",
    "@babel/plugin-external-helpers": "^7.7.4",
    "@babel/plugin-proposal-class-properties": "^7.7.4",
    "@babel/plugin-proposal-decorators": "^7.7.4",
    "@babel/plugin-proposal-export-namespace-from": "^7.7.4",
    "@babel/plugin-proposal-function-sent": "^7.7.4",
    "@babel/plugin-proposal-json-strings": "^7.7.4",
    "@babel/plugin-proposal-numeric-separator": "^7.7.4",
    "@babel/plugin-proposal-object-rest-spread": "^7.7.7",
    "@babel/plugin-proposal-throw-expressions": "^7.7.4",
    "@babel/plugin-syntax-dynamic-import": "^7.7.4",
    "@babel/plugin-syntax-import-meta": "^7.7.4",
    "@babel/plugin-transform-async-to-generator": "^7.7.4",
    "@babel/plugin-transform-modules-commonjs": "^7.7.5",
    "@babel/plugin-transform-react-constant-elements": "^7.7.4",
    "@babel/plugin-transform-react-inline-elements": "^7.7.4",
    "@babel/plugin-transform-runtime": "^7.7.6",
    "@babel/preset-env": "^7.7.7",
    "@babel/preset-react": "^7.7.4",
    "@rollup-umd/documentation": "^2.0.11",
    "@rollup-umd/ncu": "^1.0.9",
    "@rollup-umd/rollup": "^1.1.1",
    "@semantic-release/changelog": "^3.0.6",
    "@semantic-release/exec": "^3.3.8",
    "@semantic-release/git": "^7.0.18",
    "@semantic-release/gitlab": "^4.1.0",
    "@semantic-release/npm": "^5.3.5",
    "@yeutech-lab/documentation": "^2.0.2",
    "@yeutech/rollup-umd-scripts": "^2.1.4",
    "babel-eslint": "^10.0.3",
    "babel-jest": "^24.9.0",
    "babel-loader": "^8.0.6",
    "babel-plugin-add-module-exports": "^1.0.2",
    "babel-plugin-array-includes": "^2.0.3",
    "babel-plugin-dynamic-import-node": "^2.3.0",
    "babel-plugin-react-transform": "^3.0.0",
    "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
    "cz-conventional-changelog": "^3.0.2",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.0.0",
    "eslint-plugin-import": "^2.19.1",
    "exports-loader": "^0.7.0",
    "istanbul-api": "3.0.0",
    "istanbul-reports": "3.0.0",
    "jest-cli": "^24.9.0",
    "jest-sonar-reporter": "^2.0.0",
    "lint-staged": "^9.5.0",
    "pre-commit": "^1.2.2",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "semantic-release": "^15.14.0",
    "sinon": "^8.0.2",
    "styled-components": "^4.4.1",
    "toctoc": "^0.3.2",
    "webpack": "^4.41.5"
  },
  "dependencies": {
    "@babel/runtime-corejs2": "^7.7.7",
    "yargs": "^15.0.2"
  },
  "peerDependencies": {},
  "publishConfig": {
    "tag": "latest",
    "access": "public",
    "registry": "https://registry.npmjs.com"
  },
  "release": {
    "branch": "master",
    "success": false,
    "fail": false,
    "npmPublish": true,
    "verifyConditions": [
      {
        "path": "@semantic-release/exec",
        "cmd": "npx @yeutech/rollup-umd-ci-release-transitive verify"
      },
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/git",
      {
        "path": "@semantic-release/gitlab",
        "gitlabUrl": "https://module.kopaxgroup.com"
      }
    ],
    "prepare": [
      {
        "path": "@semantic-release/exec",
        "cmd": "npx @yeutech/rollup-umd-ci-release-transitive 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/gitlab",
        "gitlabUrl": "https://module.kopaxgroup.com"
      },
      {
        "path": "@semantic-release/exec",
        "cmd": "npx @yeutech/rollup-umd-ci-release-transitive publish ${nextRelease.version}"
      }
    ]
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "declinationId": "cli",
  "contributors": []
}
