Skip to content

Commit

Permalink
chore: Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
TriPSs committed Mar 22, 2019
1 parent 7d1314d commit 51aab22
Show file tree
Hide file tree
Showing 5 changed files with 1,592 additions and 1,329 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Tycho Bokdam
Copyright (c) 2019 Tycho Bokdam

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
File renamed without changes.
51 changes: 26 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-tag-manager",
"version": "2.0.0-beta.8",
"version": "3.0.0",
"description": "Google Tag Manager for React",
"keywords": [
"analytics",
Expand All @@ -13,7 +13,7 @@
},
"author": {
"name": "Tycho Bokdam",
"email": "[email protected]"
"email": "[email protected]"
},
"main": "./lib/index.js",
"module": "./lib/index.es.js",
Expand All @@ -38,43 +38,44 @@
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"debug": "^4.1.0",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"debug": "4.1.1",
"prop-types": "15.7.2",
"react": "16.8.4",
"react-helmet": "^5.2.0",
"react-router": "^4.3.1"
"react-router": "5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-jest": "24.5.0",
"babel-plugin-add-react-displayname": "0.0.5",
"babel-plugin-remove-comments": "^2.0.0",
"babel-preset-es2015-rollup": "^3.0.0",
"cross-env": "^5.2.0",
"eslint": "^5.8.0",
"eslint": "5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-node": "^8.0.0",
"eslint-formatter-pretty": "2.1.1",
"eslint-plugin-babel": "5.3.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.4.1",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-node": "8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"react-test-renderer": "^16.6.0",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.1",
"rollup-plugin-node-resolve": "^3.4.0"
"jest": "24.5.0",
"react-test-renderer": "16.8.4",
"rollup": "1.7.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "4.0.1"
},
"jest": {
"modulePaths": [
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import path from 'path'
import babel from 'rollup-plugin-babel'
import resolve from 'rollup-plugin-node-resolve';
import resolve from 'rollup-plugin-node-resolve'

export default {
input : path.resolve('src/index.js'),
Expand All @@ -24,7 +24,7 @@ export default {
'add-react-displayname',
'@babel/plugin-proposal-export-namespace-from',
'@babel/plugin-proposal-class-properties',
'@babel/plugin-proposal-object-rest-spread'
'@babel/plugin-proposal-object-rest-spread',
],
presets: [
'@babel/preset-react',
Expand Down
Loading

0 comments on commit 51aab22

Please sign in to comment.