{
  "name": "awesome-react-steps",
  "version": "0.1.7",
  "description": "A set of steppers components for using in react projects",
  "main": "lib/js/index.js",
  "keywords": [
    "stepper",
    "wizard",
    "component",
    "react"
  ],
  "files": [
    "docs",
    "lib",
    "dist"
  ],
  "scripts": {
    "storybooks": "start-storybook -p 9001 -c .storybook",
    "start": "npm run storybooks",
    "test": "jest",
    "lib:clean": "rimraf lib",
    "lib:css": "postcss styles/**/*.css -d lib/css",
    "lib:js": "babel src -d lib/js",
    "lib": "yarn lib:clean && yarn lib:js && yarn lib:css",
    "dist:clean": "rimraf dist",
    "dist:js": "rollup -c",
    "dist:css:min": "postcss styles/**/*.css -o dist/awesome-react-steps.min.css --use cssnano",
    "dist:css:full": "postcss styles/**/*.css -o dist/awesome-react-steps.css",
    "dist:css": "yarn dist:css:min && yarn dist:css:full",
    "dist": "yarn dist:clean && yarn dist:js && yarn dist:css",
    "build": "yarn test && yarn lib && yarn dist",
    "precommit": "lint-staged",
    "prepush": "yarn test"
  },
  "lint-staged": {
    "**/{src,styles,test}/**/*.{js,jsx,json,css}": [
      "prettier --write",
      "git add"
    ],
    "README.md": [
      "prettier --write",
      "git add"
    ],
    "**/{src,test}/**/*.{js,jsx}": [
      "eslint",
      "git add"
    ]
  },
  "author": "Bruno C. Couto <brunodev02221@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/bruno02221/awesome-react-steps"
  },
  "dependencies": {
    "classnames": "^2.2.5",
    "lodash.uniqueid": "^4.0.1",
    "prop-types": "^15.6.0",
    "react": "^16.2.0",
    "react-dom": "^16.2.0"
  },
  "devDependencies": {
    "@storybook/react": "^3.3.3",
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-loader": "^7.1.2",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-plugin-transform-class-properties": "^6.24.1",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-env": "^1.6.1",
    "babel-preset-react": "^6.24.1",
    "clean-webpack-plugin": "^0.1.17",
    "css-loader": "^0.28.7",
    "cssnano": "^3.10.0",
    "enzyme": "^3.3.0",
    "enzyme-adapter-react-16": "^1.1.1",
    "eslint": "^4.14.0",
    "eslint-config-prettier": "^2.9.0",
    "eslint-plugin-prettier": "^2.4.0",
    "eslint-plugin-react": "^7.5.1",
    "html-webpack-plugin": "^2.30.1",
    "husky": "^0.14.3",
    "jest": "^22.0.4",
    "lint-staged": "^6.0.0",
    "postcss": "^6.0.15",
    "postcss-cli": "^4.1.1",
    "postcss-cssnext": "^3.0.2",
    "postcss-loader": "^2.0.9",
    "prettier": "^1.9.2",
    "rimraf": "^2.6.2",
    "rollup": "^0.53.3",
    "rollup-plugin-babel": "^3.0.3",
    "rollup-plugin-commonjs": "^8.2.6",
    "rollup-plugin-node-resolve": "^3.0.0",
    "rollup-plugin-uglify": "^2.0.1",
    "style-loader": "^0.19.1",
    "uglify-es": "^3.3.5"
  }
}
