package.json
{
"name": "gatsby-plugin-global-styles",
"description": "A Gatsby plugin for creating independent global styles with minimal configuration.",
"main": "index.js",
"scripts": {
"test": "jest --watch --testPathPattern=test\\.[jt]sx?$",
"unit": "jest --testPathPattern=test\\.[jt]sx?$",
"integration": "jest --testPathPattern=ispec\\.[jt]sx?$",
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"dev": "parcel ./src/index.js",
"travis": "git push origin master",
"publishManually": "npm publish",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/nfront/gatsby-plugin-global-styles.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-plugin-global-styles",
"css",
"global",
"styles"
],
"author": "Magnus Rinnan Gaarder <magnus.rinnan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nfront/gatsby-plugin-global-styles/issues"
},
"homepage": "https://github.com/nfront/gatsby-plugin-global-styles#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-preset-gatsby-package": "^0.1.4",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-flowtype": "^3.7.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"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",
"parcel-bundler": "^1.12.3",
"path": "^0.12.7",
"prettier": "^1.17.0",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"standard-version": "^5.0.2"
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"peerDependencies": {
"gatsby": "^2.0.0",
"@nfront/global-styles": "^1.2.0"
}
}