{
  "name": "@entria/responsiveness",
  "version": "1.0.3",
  "description": "Responsive style tools for ReactJS",
  "keywords": [
    "react",
    "responsive"
  ],
  "license": "ISC",
  "homepage": "https://github.com/entria/responsiveness#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/entria/responsiveness"
  },
  "main": "lib/index.js",
  "module": "src/index.js",
  "jsnext:main": "src/index.js",
  "devDependencies": {
    "@kadira/storybook": "^2.35.3",
    "babel-cli": "^6.24.1",
    "babel-eslint": "^7.2.3",
    "babel-plugin-material-ui": "^0.3.1",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-flow": "^6.23.0",
    "babel-preset-react": "^6.24.1",
    "babel-preset-stage-0": "^6.24.1",
    "eslint": "^3.19.0",
    "eslint-config-airbnb": "^15.0.1",
    "eslint-import-resolver-webpack": "^0.8.1",
    "eslint-plugin-import": "^2.3.0",
    "eslint-plugin-jsx-a11y": "^5.0.3",
    "eslint-plugin-react": "^7.1.0",
    "gh-pages": "^1.0.0",
    "lint-staged": "^4.0.0",
    "pre-commit": "^1.2.2",
    "prettier": "^1.4.4",
    "react": "^15.6.1",
    "react-dom": "^15.6.1"
  },
  "dependencies": {
    "prop-types": "^15.5.10"
  },
  "peerDependencies": {
    "react": ">=0.14",
    "react-dom": ">=0.14"
  },
  "lint-staged": {
    "src/**/*.js": [
      "prettier --write --single-quote true --trailing-comma all --print-width 100",
      "git add"
    ]
  },
  "pre-commit": "lint:staged",
  "scripts": {
    "prepublish": "npm run build",
    "build": "babel src -d lib",
    "lint": "eslint --ext js src",
    "lint:staged": "lint-staged",
    "start": "start-storybook -p 6006 -c storybook",
    "demo:build": "build-storybook -c storybook",
    "demo:gh-pages": "gh-pages -d storybook-static/",
    "demo:publish": "npm run demo:build && npm run demo:gh-pages",
    "check": "npm run lint && npm run test",
    "release:patch": "npm run check && npm version patch && git push --follow-tags && npm publish --access public",
    "release:minor": "npm run check && npm version minor && git push --follow-tags && npm publish --access public",
    "release:major": "npm run check && npm version major && git push --follow-tags && npm publish --access public"
  }
}
