{
  "name": "material-ui-cordova",
  "private": false,
  "author": "Material-UI Team",
  "version": "1.0.0-beta.22",
  "description": "React components that implement Google's Material Design.",
  "main": "./index.js",
  "keywords": [
    "react",
    "react-component",
    "material design",
    "material-ui"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/mui-org/material-ui.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mui-org/material-ui/issues"
  },
  "homepage": "http://material-ui.com/",
  "scripts": {
    "start": "yarn docs:dev",
    "docs:dev": "rimraf node_modules/.cache/babel-loader && cross-env BABEL_ENV=docs-development next dev",
    "docs:api": "rimraf pages/api/* && babel-node ./docs/scripts/buildApi.js",
    "docs:icons": "rimraf static/icons/* && babel-node ./docs/scripts/buildIcons.js",
    "docs:build": "cross-env BABEL_ENV=docs-production next build",
    "docs:start": "next start",
    "docs:export": "next export -o docs/export",
    "docs:deploy": "yarn docs:build && yarn docs:export && firebase deploy",
    "prebuild": "rimraf build",
    "build:es2015": "cross-env NODE_ENV=production babel ./src --ignore *.spec.js --out-dir ./build",
    "build:es2015modules": "cross-env NODE_ENV=production BABEL_ENV=modules babel ./src/index.js --out-file ./build/index.es.js",
    "build:es": "cross-env NODE_ENV=production BABEL_ENV=es babel ./src --ignore *.spec.js --out-dir ./build/es",
    "build:copy-files": "babel-node ./scripts/copy-files.js",
    "build:umd:dev": "webpack --config scripts/umd.webpack.config.js",
    "build:umd:prod": "cross-env NODE_ENV=production webpack --config scripts/umd.webpack.config.js",
    "build": "yarn build:es2015 && yarn build:es2015modules && yarn build:es && yarn build:copy-files && yarn build:umd:dev && yarn build:umd:prod",
    "prettier": "find . -name \"*.js\" | grep -v -f .eslintignore | xargs prettier --write",
    "lint": "eslint . --cache && echo \"eslint: no lint errors\"",
    "size": "size-limit",
    "size:why": "size-limit --why build/index.js",
    "size:overhead:why": "size-Limit --why ./test/size/overhead.js",
    "spellcheck": "eslint . --config .eslintrc.spellcheck.js && echo \"eslint: no lint errors\"",
    "test": "yarn lint && yarn flow && yarn typescript && yarn test:unit",
    "test:unit": "cross-env NODE_ENV=test mocha test/**/*.spec.js src/{,**/}*.spec.js",
    "test:watch": "yarn test:unit -- -w",
    "test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha test/**/*.spec.js src/{,**/}*.spec.js && nyc report -r lcovonly",
    "test:coverage:html": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha test/**/*.spec.js src/{,**/}*.spec.js && nyc report --reporter=html",
    "test:karma": "cross-env NODE_ENV=test karma start test/karma.conf.js --single-run",
    "test:regressions": "webpack --config test/regressions/webpack.config.js && rimraf test/regressions/screenshots/chrome/* && vrtest run --config test/vrtest.config.js --record",
    "typescript": "tsc -p tsconfig.json",
    "flow": "flow --show-all-errors",
    "argos": "argos upload test/regressions/screenshots/chrome --token $ARGOS_TOKEN || true",
    "version": "yarn build",
    "release": "np --no-publish --any-branch",
    "postrelease": "yarn docs:deploy && npm publish build --tag next"
  },
  "peerDependencies": {
    "react": "^15.3.0 || ^16.0.0",
    "react-dom": "^15.3.0 || ^16.0.0"
  },
  "dependencies": {
    "babel-runtime": "^6.26.0",
    "brcast": "^3.0.1",
    "classnames": "^2.2.5",
    "deepmerge": "^2.0.1",
    "dom-helpers": "^3.2.1",
    "hoist-non-react-statics": "^2.3.1",
    "jss": "^9.3.3",
    "jss-preset-default": "^4.0.1",
    "keycode": "^2.1.9",
    "lodash": "^4.17.4",
    "normalize-scroll-left": "^0.1.2",
    "prop-types": "^15.6.0",
    "react-event-listener": "^0.5.1",
    "react-flow-types": "^0.2.0-beta.6",
    "react-jss": "^8.1.0",
    "react-popper": "^0.7.4",
    "react-scrollbar-size": "^2.0.2",
    "react-transition-group": "^2.2.1",
    "recompose": "^0.26.0",
    "scroll": "^2.0.1",
    "warning": "^3.0.0"
  },
  "devDependencies": {
    "@rosskevin/react-docgen": "^3.0.0-beta9",
    "@types/enzyme": "^3.1.4",
    "@types/react": "16.0.19",
    "app-module-path": "^2.2.0",
    "argos-cli": "^0.0.9",
    "autosuggest-highlight": "^3.1.1",
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-eslint": "^8.0.2",
    "babel-loader": "^7.1.2",
    "babel-plugin-flow-react-proptypes": "^9.1.0",
    "babel-plugin-istanbul": "^4.1.5",
    "babel-plugin-preval": "^1.6.2",
    "babel-plugin-react-remove-properties": "^0.2.5",
    "babel-plugin-transform-dev-warning": "^0.1.0",
    "babel-plugin-transform-flow-strip-types": "^6.22.0",
    "babel-plugin-transform-object-assign": "^6.22.0",
    "babel-plugin-transform-react-constant-elements": "^6.23.0",
    "babel-plugin-transform-react-remove-prop-types": "^0.4.10",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-polyfill": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "babel-preset-react": "^6.24.1",
    "babel-preset-stage-1": "^6.24.1",
    "babel-register": "^6.26.0",
    "chai": "^4.1.2",
    "clean-css": "^4.1.9",
    "cross-env": "^5.1.1",
    "doctrine": "^2.0.0",
    "enzyme": "^3.2.0",
    "enzyme-adapter-react-16": "^1.1.0",
    "eslint": "^4.11.0",
    "eslint-config-airbnb": "^16.1.0",
    "eslint-import-resolver-webpack": "^0.8.3",
    "eslint-plugin-babel": "^4.1.2",
    "eslint-plugin-flowtype": "^2.39.1",
    "eslint-plugin-import": "^2.8.0",
    "eslint-plugin-jsx-a11y": "^6.0.2",
    "eslint-plugin-material-ui": "file:packages/eslint-plugin-material-ui",
    "eslint-plugin-mocha": "^4.11.0",
    "eslint-plugin-prettier": "^2.3.1",
    "eslint-plugin-react": "^7.4.0",
    "eslint-plugin-spellcheck": "^0.0.8",
    "eventsource-polyfill": "^0.9.6",
    "fg-loadcss": "^1.3.1",
    "file-loader": "^1.1.5",
    "flow-bin": "^0.59.0",
    "flow-copy-source": "^1.2.1",
    "flow-typed": "^2.2.3",
    "fs-extra": "^4.0.2",
    "glob": "^7.1.2",
    "gm": "^1.23.0",
    "jsdom": "^11.3.0",
    "json-loader": "^0.5.7",
    "jss-rtl": "^0.2.1",
    "karma": "^1.7.1",
    "karma-browserstack-launcher": "^1.3.0",
    "karma-mocha": "^1.3.0",
    "karma-mocha-reporter": "^2.2.5",
    "karma-phantomjs-launcher": "^1.0.4",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-webpack": "^2.0.6",
    "marked": "^0.3.6",
    "mocha": "^4.0.1",
    "next": "^4.1.4",
    "nprogress": "^0.2.0",
    "nyc": "^11.3.0",
    "phantomjs-prebuilt": "^2.1.16",
    "prettier": "^1.8.2",
    "prismjs": "^1.8.4",
    "random-words": "0.0.1",
    "raw-loader": "^0.5.1",
    "react": "^16.1.1",
    "react-autosuggest": "^9.3.2",
    "react-dom": "^16.1.1",
    "react-number-format": "^3.0.2",
    "react-redux": "^5.0.6",
    "react-swipeable-views": "^0.12.10",
    "react-test-renderer": "^16.1.1",
    "react-text-mask": "^5.0.2",
    "recast": "^0.12.9",
    "recursive-readdir-sync": "^1.0.6",
    "redux": "^3.7.2",
    "redux-logger": "^3.0.6",
    "rimraf": "^2.6.2",
    "sinon": "^4.1.2",
    "size-limit": "^0.13.1",
    "typescript": "^2.6.1",
    "url-loader": "^0.6.2",
    "vrtest": "^0.2.0",
    "webfontloader": "^1.6.28",
    "webpack": "^3.8.1",
    "webpack-bundle-analyzer": "^2.9.1"
  },
  "resolutions": {
    "@types/react": "16.0.19"
  },
  "side-effects": false,
  "module": "./index.es.js"
}
