{
  "name": "@blueeast/bluerain-plugin-material-ui",
  "version": "3.1.2",
  "keywords": [],
  "description": "Adds [Material UI](http://www.material-ui.com/#/) theme Provider to BlueRain. Components of material-ui have been developed using a common interface. [https://blueeast.gitbook.io/bluerain-plugin-material-ui](https://blueeast.gitbook.io/bluerain-plugin-material-ui)",
  "main": "dist/src/index.js",
  "module": "dist/src/index.js",
  "typings": "dist/src/index.d.ts",
  "files": [
    "dist"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=6.0.0"
  },
  "author": "BlueEast Team <code@blueeast.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/BlueEastCode/bluerain-plugin-material-ui.git"
  },
  "release": {
    "branch": "master",
    "dryRun": false,
    "debug": true
  },
  "scripts": {
    "lint": "tslint -t codeFrame 'src/**/*.ts' 'src/**/*.tsx' 'test/**/*.ts'",
    "prebuild": "rimraf dist",
    "build": "tsc",
    "storybook:start": "bluerain storybook:start",
    "start": "tsc -w",
    "test": "jest --u",
    "demo": "build-storybook -c .storybook -o .out",
    "docs": "typedoc --out documentation --name bluerain-plugin-material-ui    --exclude node_modules --readme README.md --target es6 --theme minimal src",
    "deploy-storybook": "storybook-to-ghpages",
    "test:watch": "jest --watch",
    "test:prod": "npm run lint && npm run test -- --coverage --no-cache",
    "deploy-docs": "ts-node tools/gh-pages-publish",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "commit": "git-cz",
    "semantic-release": "semantic-release",
    "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
    "precommit": "lint-staged",
    "debug": "node --debug-brk --inspect ./node_modules/jest/bin/jest -i",
    "build-storybook": "build-storybook"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "prettier --write --use-tabs --single-quote",
      "git add"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "validate-commit-msg": {
      "types": "conventional-commit-types",
      "helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
    }
  },
  "moduleNameMapper": {
    "^@fooBar/(.*)": "<rootDir>/src/redux/"
  },
  "jest": {
    "transformIgnorePatterns": [
      "/node_modules/(?!transpile-me|transpile-me-too).+(js|jsx)$"
    ],
    "moduleNameMapper": {
      "^@fooBar/(.*)": "<rootDir>/src/redux/"
    },
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 40,
        "functions": 56.66,
        "lines": 70,
        "statements": 70
      }
    },
    "collectCoverage": true,
    "mapCoverage": true
  },
  "devDependencies": {
    "@blueeast/bluerain-cli-essentials": "^4.0.0-beta.1",
    "@blueeast/bluerain-os": "^3.15.1",
    "@blueeast/bluerain-platform-react-native": "^1.1.3",
    "@blueeast/bluerain-plugin-react-router": "^1.1.5",
    "@blueeast/bluerain-plugin-redux": "^0.6.6",
    "@blueeast/bluerain-storybook-addon": "^1.1.4",
    "@blueeast/tslint-config-blueeast": "^0.7.0",
    "@material-ui/icons": "^3.0.1",
    "@storybook/addon-actions": "^3.4.10",
    "@storybook/addon-graphql": "^3.2.0",
    "@storybook/addon-info": "^3.2.9",
    "@storybook/addon-knobs": "^3.4.10",
    "@storybook/addon-links": "^3.4.10",
    "@storybook/addon-storyshots": "^3.2.13",
    "@storybook/addons": "^3.2.13",
    "@storybook/react": "^3.4.10",
    "@storybook/storybook-deployer": "^2.3.0",
    "@types/deepmerge": "^2.1.0",
    "@types/enzyme-adapter-react-16": "^1.0.3",
    "@types/jasmine": "^2.8.9",
    "@types/jest": "^23.3.5",
    "@types/node": "^10.9.4",
    "@types/react": "^16.7.13",
    "@types/react-color": "^2.13.6",
    "@types/react-test-renderer": "^16.0.2",
    "@types/storybook__addon-actions": "^3.4.1",
    "@types/storybook__addon-knobs": "^3.4.1",
    "@types/storybook__react": "^3.0.9",
    "add-graphql-subscriptions": "^1.0.1",
    "awesome-typescript-loader": "^3.4.1",
    "babel-polyfill": "^6.26.0",
    "commitizen": "^2.9.6",
    "coveralls": "^3.0.0",
    "cross-env": "^5.0.1",
    "cz-conventional-changelog": "^2.0.0",
    "documentation": "^5.2.1",
    "enzyme": "^3.1.1",
    "enzyme-adapter-react-16": "^1.0.4",
    "husky": "^0.14.0",
    "jest": "^21.0.0",
    "jest-cli": "^20.0.4",
    "lint-staged": "^5.0.0",
    "material-ui-icons": "^1.0.0-beta.10",
    "prettier": "^1.4.4",
    "prompt": "^1.0.0",
    "react": "^16.6.0",
    "react-addons-test-utils": "^15.6.2",
    "react-dom": "^16.6.0",
    "react-intl": "^2.4.0",
    "react-test-renderer": "^16.0.0",
    "rimraf": "^2.6.1",
    "semantic-release": "^15.12.2",
    "storybook-addon-intl": "^2.1.2",
    "storybook-addon-rtl": "^0.1.1",
    "storyshots": "^3.2.2",
    "ts-jest": "^22.0.0",
    "ts-node": "^4.1.0",
    "tslint": "^5.9.1",
    "typedoc": "^0.10.0",
    "typescript": "3.0.1",
    "warning": "^3.0.0",
    "ws": "3.3.3"
  },
  "dependencies": {
    "@blueeast/bluerain-cli": "^4.0.0-beta.1",
    "@blueeast/bluerain-ui-interfaces": "^4.0.0",
    "@material-ui/core": "^3.2.2",
    "@material-ui/icons": "^3.0.1",
    "@material-ui/lab": "^3.0.0-alpha.20",
    "react-color": "^2.14.1"
  },
  "peerDependencies": {
    "@blueeast/bluerain-os": "3.x.x",
    "@blueeast/bluerain-plugin-intl": "*",
    "@blueeast/bluerain-plugin-responsive-components": "*",
    "react": "16.x.x",
    "react-dom": "16.x.x"
  }
}
