{
  "name": "@brandonkal/linaria",
  "version": "2.0.6",
  "versionUpstream": "1.4.0",
  "description": "Blazing fast zero-runtime CSS in JS library",
  "main": "lib/index.js",
  "bin": "bin/linaria.js",
  "files": [
    "bin/",
    "lib/",
    "react.js",
    "react.d.ts",
    "rollup.js",
    "server.js",
    "babel.js",
    "loader.js",
    "fixSourceMap.js",
    "attachSourceMap.js",
    "stylelint-config.js"
  ],
  "license": "MIT",
  "repository": "https://github.com/brandonkal/linaria.git",
  "bugs": {
    "url": "https://github.com/brandonkal/linaria/issues"
  },
  "homepage": "https://github.com/brandonkal/linaria.git#readme",
  "keywords": [
    "react",
    "css",
    "css-in-js",
    "styled-components",
    "babel-plugin",
    "babel",
    "webpack"
  ],
  "scripts": {
    "lint": "eslint --ext .js,.ts,.tsx .",
    "typecheck": "tsc --noEmit",
    "test": "jest",
    "add-contributor": "all-contributors add",
    "build": "babel src --out-dir lib --extensions '.js,.jsx,.ts,.tsx' --ignore '**/__tests__/**,**/__integration-tests__/**,**/__fixtures__/**' --source-maps --delete-dir-on-start",
    "build:declarations": "tsc --emitDeclarationOnly --outDir lib",
    "watch": "yarn build --watch",
    "prepare": "yarn build && yarn build:declarations",
    "release": "release-it",
    "website": "yarn --cwd website",
    "bootstrap": "yarn && yarn website install"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/plugin-proposal-class-properties": "^7.4.0",
    "@babel/plugin-syntax-jsx": "^7.2.0",
    "@babel/preset-env": "^7.3.1",
    "@babel/preset-flow": "^7.0.0",
    "@babel/preset-react": "^7.0.0",
    "@babel/preset-typescript": "^7.3.3",
    "@callstack/eslint-config": "^4.1.0",
    "@commitlint/config-conventional": "^7.5.0",
    "@types/cosmiconfig": "^5.0.3",
    "@types/dedent": "^0.7.0",
    "@types/enhanced-resolve": "^3.0.6",
    "@types/glob": "^7.1.1",
    "@types/jest": "^24.0.11",
    "@types/loader-utils": "^1.1.3",
    "@types/mkdirp": "^0.5.2",
    "@types/normalize-path": "^3.0.0",
    "@types/prettier": "^1.16.3",
    "@types/react": "^16.8.12",
    "@types/react-is": "^16.7.1",
    "@types/strip-ansi": "^5.2.1",
    "@typescript-eslint/eslint-plugin": "^1.6.0",
    "all-contributors-cli": "^6.1.1",
    "babel-core": "^7.0.0-bridge.0",
    "babel-jest": "^24.5.0",
    "codecov": "^3.2.0",
    "commitlint": "^7.5.2",
    "conventional-changelog-cli": "^2.0.12",
    "del-cli": "^1.1.0",
    "eslint": "^5.14.1",
    "eslint-plugin-prettier": "^3.0.1",
    "husky": "^1.3.1",
    "jest": "^24.7.1",
    "prettier": "^1.16.4",
    "react": "^16.8.3",
    "react-test-renderer": "^16.8.3",
    "release-it": "^10.1.0",
    "typescript": "^3.4.1"
  },
  "dependencies": {
    "@babel/core": "^7.4.3",
    "@babel/generator": "^7.4.0",
    "@babel/plugin-proposal-export-namespace-from": "^7.2.0",
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
    "@babel/plugin-transform-modules-commonjs": "^7.2.0",
    "@babel/register": "^7.4.0",
    "@babel/traverse": "^7.4.3",
    "camelcase": "^5.3.1",
    "convert-source-map": "^1.6.0",
    "core-js": "^2.0.0",
    "cosmiconfig": "^5.1.0",
    "dedent": "^0.7.0",
    "enhanced-resolve": "^4.1.0",
    "glob": "^7.1.3",
    "incstr": "^1.2.3",
    "loader-utils": "^1.2.3",
    "mkdirp": "^0.5.1",
    "normalize-path": "^3.0.0",
    "postcss": "^7.0.14",
    "react-is": "^16.8.3",
    "rollup-pluginutils": "^2.4.1",
    "source-map": "^0.7.3",
    "strip-ansi": "^5.2.0",
    "yargs": "^13.2.1"
  },
  "resolutions": {
    "**/babel-core": "7.0.0-bridge.0",
    "@types/react": "^16.8.12"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
      "pre-commit": "yarn lint && yarn typecheck && yarn test"
    }
  },
  "stylelint": {
    "ignoreFiles": "*"
  },
  "jest": {
    "testEnvironment": "node",
    "testRegex": "/__tests__/.*\\.(test|spec)\\.(js|tsx?)$",
    "transform": {
      "^.+\\.(js|ts|tsx)$": "babel-jest"
    },
    "setupFiles": [
      "<rootDir>/jest/resolveTypescript.js"
    ],
    "collectCoverage": false
  }
}
