{
  "name": "styled-by",
  "version": "0.3.0",
  "description": "Simple and powerful lib to handle styled props in your components",
  "license": "MIT",
  "repository": "brunobertolini/styled-by",
  "author": {
    "name": "Bruno Bertolini",
    "email": "dev@brunobertolini.com",
    "url": "brunobertolini.com"
  },
  "engines": {
    "node": ">=4"
  },
  "main": "lib/index.js",
  "jsnext:main": "build/styled-by.min.js",
  "module": "build/styled-by.min.js",
  "scripts": {
    "build": "yarn build:lib && yarn build:build",
    "prebuild:lib": "rimraf lib/*",
    "build:lib": "babel --out-dir lib --ignore \"test.js\" src",
    "prebuild:build": "rimraf build/*",
    "build:build": "rollup -c ",
    "lint": "xo",
    "test": "xo && nyc ava",
    "precommit": "yarn lint",
    "prepush": "yarn run test",
    "commitmsg": "validate-commit-msg",
    "release": "standard-version --no-verify",
    "prepublish": "yarn build"
  },
  "files": [
    "build/",
    "lib/"
  ],
  "keywords": [
    "react",
    "css",
    "css-in-js",
    "styled-components",
    "props"
  ],
  "dependencies": {},
  "devDependencies": {
    "ava": "^0.22.0",
    "babel-cli": "^6.24.1",
    "babel-core": "^6.25.0",
    "babel-plugin-external-helpers": "^6.22.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-stage-1": "^6.24.1",
    "codecov": "^2.2.0",
    "husky": "^0.14.3",
    "nyc": "^11.0.0",
    "rimraf": "^2.6.1",
    "rollup": "^0.45.2",
    "rollup-plugin-babel": "^2.7.1",
    "rollup-plugin-uglify": "^2.0.1",
    "standard-version": "^4.2.0",
    "validate-commit-msg": "^2.14.0",
    "xo": "^0.18.2"
  },
  "xo": {
    "semicolon": false,
    "rules": {
      "operator-linebreak": "off"
    }
  },
  "nyc": {
    "reporter": [
      "lcov",
      "text"
    ]
  },
  "ava": {
    "require": [
      "babel-register"
    ]
  }
}
