{
  "name": "react-inline-grid",
  "description": "A predictable gird layout based on flexbox for React.",
  "main": "./lib/index.js",
  "version": "0.5.3",
  "scripts": {
    "clean": "rimraf lib dist coverage",
    "lint": "eslint src test examples",
    "build:lib": "babel src --out-dir lib",
    "build:umd": "webpack src/index.js dist/react-inline-grid.js --config webpack.config.development.js",
    "build:umd:min": "webpack src/index.js dist/react-inline-grid.min.js --config webpack.config.production.js",
    "build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
    "prepublish": "npm run clean && npm run build",
    "gh:clean": "rimraf examples/gh-pages/dist",
    "gh:build": "webpack -p --config examples/gh-pages/webpack.config.production.js && cp examples/gh-pages/index.html examples/gh-pages/dist/",
    "gh:publish": "npm run gh:clean && npm run gh:build && cd examples/gh-pages/dist && git init && git commit --allow-empty -m 'update gh-pages' && git checkout -b gh-pages && git add . && git commit -am 'update gh-pages' && git push git@github.com:broucz/react-inline-grid gh-pages --force",
    "test": "mocha --compilers js:babel/register --recursive",
    "test:watch": "npm test -- --watch",
    "test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/broucz/react-inline-grid.git"
  },
  "keywords": [
    "react",
    "reactjs",
    "grid",
    "inline",
    "style",
    "flux",
    "redux",
    "predictable",
    "react-component"
  ],
  "author": "Pierre Brouca <broucapierre@gmail.com> (https://github.com/broucz)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/broucz/react-inline-grid/issues"
  },
  "homepage": "https://github.com/broucz/react-inline-grid",
  "dependencies": {
    "lodash": "^3.10.1",
    "react-redux": "^2.1.1",
    "redux": "^2.0.0"
  },
  "peerDependencies": {
    "react": "^0.14.0 || ^0.14.0-beta3 || ^0.14.0-rc1"
  },
  "devDependencies": {
    "babel": "^5.8.21",
    "babel-core": "^5.8.22",
    "babel-eslint": "^4.0.10",
    "babel-loader": "^5.3.2",
    "eslint": "^1.2.0",
    "eslint-config-airbnb": "0.0.7",
    "eslint-plugin-react": "^3.2.3",
    "expect": "^1.9.0",
    "isparta": "^3.0.3",
    "mocha": "^2.2.5",
    "react-hot-loader": "^1.2.8",
    "rimraf": "^2.4.2",
    "webpack": "^1.11.0",
    "webpack-dev-server": "^1.10.1"
  }
}
