nfront/global-styles

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@nfront/global-styles",
  "description": "A package for creating independent global CSS styles, and automatically placing them at the top of the `<head>` element. Use with for instance gatsby-plugin-global-styles: https://github.com/nfront/gatsby-plugin-global-styles",
  "source": "src/index.js",
  "main": "dist/index.js",
  "author": "Magnus Rinnan Gaarder <magnus.rinnan@gmail.com>",
  "license": "MIT",
  "scripts": {
    "test": "jest --watch --testPathPattern=test\\.[jt]sx?$",
    "unit": "jest --testPathPattern=test\\.[jt]sx?$",
    "integration": "jest --testPathPattern=ispec\\.[jt]sx?$",
    "dev": "microbundle watch",
    "build": "microbundle",
    "watch": "babel -w src --out-dir dist --ignore **/__tests__",
    "travis": "git push origin master",
    "publishManually": "npm publish",
    "semantic-release": "semantic-release"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nfront/global-styles.git"
  },
  "keywords": [
    "global-styles",
    "css",
    "css-in-js",
    "global",
    "styles",
    "styling",
    "react"
  ],
  "bugs": {
    "url": "https://github.com/nfront/global-styles/issues"
  },
  "homepage": "https://github.com/nfront/global-styles#readme",
  "devDependencies": {
    "@babel/cli": "^7.4.3",
    "@babel/core": "^7.4.3",
    "@babel/plugin-proposal-class-properties": "^7.4.0",
    "@babel/preset-env": "^7.4.3",
    "@babel/preset-react": "^7.0.0",
    "babel-eslint": "^10.0.1",
    "babel-jest": "^24.7.1",
    "cross-env": "^5.2.0",
    "eslint": "^5.16.0",
    "eslint-config-airbnb": "^17.1.0",
    "eslint-config-prettier": "^4.1.0",
    "eslint-config-react-app": "^4.0.0",
    "eslint-plugin-flowtype": "^3.6.1",
    "eslint-plugin-import": "^2.17.2",
    "eslint-plugin-jest": "^22.6.4",
    "eslint-plugin-jsx-a11y": "^6.2.1",
    "eslint-plugin-prettier": "^3.0.1",
    "eslint-plugin-react": "^7.12.4",
    "eslint-plugin-react-hooks": "^1.6.0",
    "jest": "^24.7.1",
    "microbundle": "^0.11.0",
    "prettier": "^1.17.0",
    "react-test-renderer": "^16.8.6",
    "semantic-release": "^15.13.3"
  },
  "dependencies": {
    "react": "^16.8.6",
    "react-dom": "^16.8.6"
  }
}