{
  "name": "stylus-in-react",
  "version": "2.0.1",
  "description": "Style React components with Stylus",
  "main": "build/main.js",
  "author": "Nitin Tulswani",
  "license": "MIT",
  "dependencies": {
    "camel-case": "^3.0.0",
    "common-tags": "^1.4.0",
    "css": "^2.2.1",
    "glamor": "^2.20.40",
    "html-tags": "^2.0.0",
    "inline-style-prefixer": "^3.0.7"
  },
  "peerDependencies": {
    "react": "^16.0.0"
  },
  "repository": {
    "url": "https://github.com/nitin42/stylus-in-react",
    "type": "git"
  },
  "files": [
    "build"
  ],
  "keywords": [
    "Stylus",
    "React",
    "css-in-js",
    "css",
    "parse css"
  ],
  "devDependencies": {
    "babel-eslint": "^8.0.0",
    "babel-loader": "^7.1.2",
    "babel-preset-react-app": "^3.0.2",
    "compression-webpack-plugin": "^1.0.0",
    "eslint": "^4.6.1",
    "eslint-config-airbnb": "^15.1.0",
    "eslint-plugin-import": "^2.7.0",
    "eslint-plugin-jsx-a11y": "^5.1.1",
    "eslint-plugin-react": "^7.3.0",
    "husky": "^0.14.3",
    "jest": "^21.0.2",
    "jest-cli": "^21.0.2",
    "lint-staged": "^4.2.1",
    "prop-types": "^15.5.10",
    "react": "^15.6.1",
    "react-dom": "^15.6.1",
    "react-test-renderer": "^15.6.1",
    "stylus": "^0.54.5",
    "webpack": "^3.5.6",
    "webpack-dev-server": "^2.7.1"
  },
  "scripts": {
    "validate": "yarn test && yarn lint",
    "precommit": "lint-staged",
    "test": "./node_modules/.bin/jest",
    "lint": "./node_modules/.bin/eslint ./src/",
    "start": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server --content-base ./public --config ./webpack/webpack.config.dev.js --hot",
    "prebuild": "rm -rf ./build",
    "build": "NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/webpack.config.js --progress"
  },
  "lint-staged": {
    "*.js": [
      "prettier --single-quote --no-semi --write",
      "git add"
    ]
  },
  "jest": {
    "testEnvironment": "node"
  }
}
