{
  "name": "@bootstrap-styled/css-utils",
  "version": "1.4.1",
  "description": "Bootstrap mixins and utilities in javascript for bootstrap-styled.",
  "main": "lib/index.js",
  "jsnext:main": "dist/@bootstrap-styled/css-utils.es.js",
  "module": "dist/@bootstrap-styled/css-utils.es.js",
  "homepage": "https://bootstrap-styled.github.io/css-utils",
  "browserslist": [
    "IE >= 9",
    "last 2 versions"
  ],
  "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 jest --coverage",
    "test:clean": "rimraf ./coverage",
    "test:watch": "npm run test -- --watch",
    "lint": "eslint src",
    "prepublish": "npm run build",
    "lint-staged": "lint-staged",
    "jsdoc-documentation": "jsdoc-documentation",
    "jsdoc": "jsdoc-documentation --file",
    "prestyleguide": "npm run jsdoc",
    "styleguide": "styleguidist server",
    "prestyleguide:build": "npm run jsdoc",
    "styleguide:build": "styleguidist build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bootstrap-styled/css-utils.git"
  },
  "bugs": {
    "url": "https://github.com/bootstrap-styled/css-utils/issues"
  },
  "files": [
    "LICENSE.md",
    "dist",
    "lib",
    "src"
  ],
  "keywords": [
    "bootstrap",
    "bootstrap-styled",
    "styled",
    "styled-components",
    "react"
  ],
  "author": "Dimitri Kopriwa <dimitri.kopriwa@yeutech.vn> (https://github.com/kopax)",
  "contributor": [
    "Alexander Janet <alexander.janet@yeutech.vn>",
    "Adrien Gadaud <adrien.gadaud@yeutech.vn>"
  ],
  "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/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-else-return": 0,
      "no-use-before-define": 0,
      "object-curly-newline": 0,
      "prefer-template": 2,
      "class-methods-use-this": 0,
      "require-yield": 0
    }
  },
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.9.6",
    "@babel/plugin-external-helpers": "^7.8.3",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/plugin-proposal-decorators": "^7.8.3",
    "@babel/plugin-proposal-json-strings": "^7.8.3",
    "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "@babel/plugin-syntax-import-meta": "^7.8.3",
    "@babel/plugin-transform-modules-commonjs": "^7.9.6",
    "@babel/preset-env": "^7.9.6",
    "@bootstrap-styled/documentation": "^2.0.0",
    "@rollup-umd/documentation": "^2.1.1",
    "@rollup-umd/ncu": "^1.0.9",
    "@rollup-umd/rollup": "^1.1.1",
    "@semantic-release/changelog": "^5.0.1",
    "@semantic-release/git": "^9.0.0",
    "@semantic-release/github": "^7.0.5",
    "@semantic-release/npm": "^7.0.5",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^25.5.1",
    "babel-loader": "^8.1.0",
    "babel-plugin-add-module-exports": "^1.0.2",
    "babel-plugin-array-includes": "^2.0.3",
    "babel-plugin-dynamic-import-node": "^2.3.3",
    "bootstrap-styled": "^2.7.2",
    "cz-conventional-changelog": "^3.1.0",
    "enzyme": "^3.11.0",
    "enzyme-adapter-react-16": "^1.15.2",
    "eslint": "^6.8.0",
    "eslint-config-airbnb": "^18.1.0",
    "eslint-config-airbnb-base": "^14.1.0",
    "eslint-plugin-import": "^2.20.2",
    "eslint-plugin-jsx-a11y": "^6.2.3",
    "eslint-plugin-react": "^7.19.0",
    "immutable": "^4.0.0-rc.12",
    "jest-cli": "^25.5.4",
    "jest-sonar-reporter": "^2.0.0",
    "lint-staged": "^10.2.2",
    "pre-commit": "^1.2.2",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "rimraf": "^3.0.2",
    "semantic-release": "^17.0.7",
    "toctoc": "^0.3.2",
    "webpack": "^4.43.0"
  },
  "jest": {
    "roots": [
      "<rootDir>/src/"
    ],
    "setupFiles": [
      "raf/polyfill"
    ],
    "testURL": "http://localhost/",
    "setupFilesAfterEnv": [
      "<rootDir>/internals/testing/test-bundler.js"
    ],
    "transformIgnorePatterns": [
      "<rootDir>/node_modules",
      "<rootDir>/internals"
    ],
    "testPathIgnorePatterns": [
      "<rootDir>/dist/",
      "<rootDir>/lib/"
    ],
    "collectCoverageFrom": [
      "src/**/*.{js,jsx}",
      "!src/**/*.test.{js,jsx}"
    ],
    "coverageThreshold": {
      "global": {
        "statements": 99,
        "branches": 91,
        "functions": 99,
        "lines": 99
      }
    },
    "moduleDirectories": [
      "node_modules",
      "src"
    ],
    "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"
  ],
  "dependencies": {
    "@bootstrap-styled/css-mixins": "^2.1.2",
    "@bootstrap-styled/utils": "^1.8.1"
  },
  "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/**",
          "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"
    }
  }
}
