{
  "name": "styled-components-theme",
  "version": "1.0.5",
  "description": "Defines themes via flexible color selectors for use with styled-components",
  "main": "./lib/index.js",
  "jsnext:main": "./es/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/erikras/styled-components-theme"
  },
  "scripts": {
    "build": "npm run build:lib && npm run build:es && npm run build:umd && npm run build:umd:min",
    "build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
    "build:lib": "babel src --out-dir lib",
    "build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/styled-components-theme.js",
    "build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/styled-components-theme.min.js",
    "format": "prettier-eslint \"src/**/*.js\" --write --no-semi --single-quote --trailingComma=none",
    "clean": "rimraf dist lib",
    "lint": "eslint src",
    "prepublish": "npm run test && npm run lint && npm run clean && npm run build",
    "test": "mocha --compilers js:babel-register --recursive --recursive \"src/**/__tests__/*\"",
    "test:watch": "npm test -- --watch",
    "test:cov": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm test",
    "test:codecov": "cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js"
  },
  "keywords": [
    "react",
    "css",
    "styled-components",
    "theme",
    "theming",
    "colors"
  ],
  "author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/erikras/styled-components-theme/issues"
  },
  "homepage": "https://github.com/erikras/styled-components-theme",
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-core": "^6.24.1",
    "babel-eslint": "^7.2.3",
    "babel-loader": "^7.0.0",
    "babel-plugin-istanbul": "^4.1.4",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
    "babel-preset-es2015-no-commonjs": "0.0.2",
    "babel-preset-stage-2": "^6.24.1",
    "babel-register": "^6.24.1",
    "codecov.io": "^0.1.6",
    "cross-env": "^5.0.0",
    "eslint-config-react-app": "^1.0.4",
    "eslint-plugin-flowtype": "^2.30.4",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jsx-a11y": "^5.0.3",
    "eslint-plugin-react": "^7.0.0",
    "expect": "^1.20.2",
    "mocha": "^3.4.2",
    "mocha-lcov-reporter": "^1.3.0",
    "nyc": "^11.0.1",
    "prettier": "^1.4.0",
    "prettier-eslint-cli": "^4.0.2",
    "rimraf": "^2.6.1",
    "webpack": "^2.6.1"
  },
  "dependencies": {
    "color": "^1.0.3"
  },
  "files": [
    "README.md",
    "lib",
    "es",
    "dist"
  ],
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "sourceMap": false,
    "instrument": false
  },
  "npmName": "styled-components-theme",
  "npmFileMap": [
    {
      "basePath": "/dist/",
      "files": [
        "*.js"
      ]
    }
  ]
}
