{
  "name": "style-sheet",
  "version": "4.0.4",
  "description": "Fast CSS in JS library with support for static CSS extraction.",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/giuseppeg"
  },
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "unpkg": "lib/umd/index.prod.js",
  "files": [
    "lib",
    "babel.js"
  ],
  "scripts": {
    "prepublish": "npm run clean && npm run build",
    "clean": "rm -rf lib/**/*.dev.js && rm -rf lib/**/*.prod.js && rm -rf test/e2e/lib",
    "prebuild": "npm run clean",
    "build": "npm run build:dev && npm run build:prod",
    "build:dev": "rollup -c --environment NODE_ENV:development",
    "build:prod": "rollup -c --environment NODE_ENV:production",
    "ava": "ava",
    "ava:e2e": "ava test/e2e/test.js",
    "test:copy:lib": "npm run clean && rollup -c --environment NODE_ENV:test && mkdir -p test/e2e/lib && cp lib/umd/index.prod.js test/e2e/lib/_styleSheet.js && cp lib/umd/factory.prod.js test/e2e/lib/_styleSheetFactory.js",
    "pretest": "npm run lint && npm run test:copy:lib",
    "test": "run-p --race test:e2e:server ava",
    "test:unit": "ava test/*.js",
    "pretest:e2e": "npm run test:copy:lib",
    "test:e2e": "run-p --race test:e2e:server ava:e2e",
    "test:e2e:server": "serve ./test/e2e",
    "test:babel": "ava test/babel/*.js",
    "lint": "eslint src test",
    "format": "prettier --single-quote --trailing-comma=es5 --no-semi --write all *.js {src,test}/*.js {src,test}/**/*.js"
  },
  "keywords": [
    "css-in-js",
    "css in js",
    "stylesheet",
    "css",
    "react native styles",
    "babel-plugin",
    "atomic css"
  ],
  "author": "Giuseppe Gurgone",
  "license": "MIT",
  "dependencies": {
    "@babel/plugin-proposal-export-namespace-from": "^7.2.0",
    "@babel/plugin-syntax-jsx": "^7.2.0",
    "@babel/plugin-transform-modules-commonjs": "^7.4.4",
    "babel-helper-evaluate-path": "^0.5.0",
    "error-stack-parser": "^2.0.2",
    "fnv1a": "^1.0.1",
    "inline-style-prefixer": "^5.0.1",
    "linaria": "^1.3.1"
  },
  "devDependencies": {
    "@babel/cli": "^7.1.0",
    "@babel/core": "^7.1.2",
    "@babel/plugin-transform-react-jsx": "^7.3.0",
    "@babel/preset-env": "^7.1.0",
    "@babel/register": "^7.0.0",
    "ava": "^1.0.0",
    "eslint": "^6.0.0",
    "eslint-plugin-ava": "^8.0.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^1.14.3",
    "puppeteer": "^1.8.0",
    "react": "^16.10.1",
    "rollup": "^1.11.2",
    "rollup-plugin-babel": "^4.0.3",
    "rollup-plugin-commonjs": "^10.0.0",
    "rollup-plugin-node-resolve": "^5.0.0",
    "rollup-plugin-replace": "^2.0.0",
    "rollup-plugin-terser": "^5.0.0",
    "serve": "^11.0.0"
  },
  "ava": {
    "require": [
      "./test/_register.js"
    ]
  }
}
