{
  "name": "styled-jss",
  "version": "2.2.3",
  "description": "Styled Components on top of JSS.",
  "main": "index.js",
  "scripts": {
    "clean": "rimraf lib/*",
    "lint": "eslint --ext .jsx,.js src",
    "lint:staged": "lint-staged",
    "flow": "flow check",
    "test": "jest",
    "test:watch": "npm test -- --watch",
    "test:coverage": "npm test -- --coverage",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "prebuild": "npm run clean && npm run flow && npm run lint && npm run test:coverage",
    "build": "babel src --out-dir lib --ignore tests",
    "postbuild": "npm run flow:csrc && copyfiles -e '**/tests/*' ./*.* LICENSE -a -f lib",
    "flow:csrc": "flow-copy-source -i '**/tests/*' src lib",
    "flow:typed": "flow-typed install",
    "flow:stub": "flow-typed create-stub",
    "release": "npm run build && git push --follow-tags && npm publish lib"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cssinjs/styled-jss.git"
  },
  "keywords": [
    "jss",
    "styled",
    "react",
    "styled-components",
    "primitives"
  ],
  "author": "lttb <kenzhaev.artur@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/cssinjs/styled-jss/issues"
  },
  "homepage": "https://github.com/cssinjs/styled-jss#readme",
  "dependencies": {
    "deep-extend": "^0.5.0",
    "is-observable": "^0.2.0",
    "is-react-prop": "^1.0.0",
    "jss": "^9.8.0",
    "jss-preset-default": "^4.3.0",
    "theming": "^1.3.0"
  },
  "peerDependencies": {
    "react": ">=14"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-eslint": "^8.0.1",
    "babel-plugin-transform-class-properties": "^6.23.0",
    "babel-plugin-transform-flow-strip-types": "^6.22.0",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-react": "^6.23.0",
    "common-tags": "^1.4.0",
    "copyfiles": "^1.2.0",
    "coveralls": "^3.0.0",
    "css.escape": "^1.5.1",
    "enzyme": "^3.1.0",
    "enzyme-adapter-react-16": "^1.0.1",
    "enzyme-to-json": "^3.1.2",
    "eslint": "^3.13.0",
    "eslint-config-airbnb": "^14.1.0",
    "eslint-config-jss": "^3.0.0",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jsx-a11y": "^4.0.0",
    "eslint-plugin-react": "^6.10.3",
    "flow-bin": "^0.56.0",
    "flow-copy-source": "^1.2.1",
    "flow-typed": "^2.1.5",
    "jest": "^21.2.1",
    "lint-staged": "^4.2.3",
    "pre-commit": "^1.2.2",
    "raf": "^3.4.0",
    "react": "^16.0.0",
    "react-dom": "^16.0.0",
    "react-test-renderer": "^16.0.0",
    "rimraf": "^2.6.2",
    "zen-observable": "^0.6.0"
  },
  "lint-staged": {
    "*.{js,jsx}": [
      "lint",
      "git add",
      "npm test -- -b --findRelatedTests"
    ]
  },
  "pre-commit": [
    "lint:staged"
  ],
  "jest": {
    "rootDir": "src",
    "coverageDirectory": "../coverage",
    "setupFiles": [
      "raf/polyfill",
      "css.escape"
    ],
    "snapshotSerializers": [
      "enzyme-to-json/serializer"
    ]
  }
}
