Skip to content

Commit

Permalink
chore(dependencies): updated several package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
travi committed May 17, 2018
1 parent 4f77976 commit 6a313d1
Show file tree
Hide file tree
Showing 6 changed files with 98 additions and 67 deletions.
126 changes: 78 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
"coverage": "nyc run-s tests:unit:no-coverage",
"coverage:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"tests:unit": "run-s coverage",
"tests:integration": "cucumber.js test/integration --compiler js:babel-register --tags 'not @wip'",
"tests:integration": "run-s tests:integration:base -- --tags 'not @wip'",
"tests:integration:base": "cucumber-js test/integration --require-module babel-register --format-options '{\"snippetInterface\": \"async-await\"}'",
"tests:integration:debug": "DEBUG=test run-s tests:integration",
"tests:integration:wip": "cucumber.js test/integration --compiler js:babel-register --tags @wip",
"tests:integration:wip": "run-s tests:integration:base -- --tags @wip",
"test": "run-s lint:* tests:*",
"start": "cross-env BABEL_ENV=example babel-node ./example/app.js",
"build": "rollup -c",
Expand Down Expand Up @@ -57,9 +58,9 @@
"boom": "6.0.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"codecov": "3.0.1",
"codecov": "3.0.2",
"cross-env": "5.1.5",
"cucumber": "3.2.1",
"cucumber": "^4.2.1",
"cz-conventional-changelog": "2.1.0",
"globstar": "1.0.0",
"glue": "5.0.0",
Expand All @@ -69,32 +70,32 @@
"greenkeeper-lockfile": "1.15.0",
"hapi": "16.6.2",
"hapi-mustache": "0.0.1",
"husky": "0.15.0-rc.2",
"husky": "^1.0.0-rc.6",
"markdownlint-cli": "0.8.2",
"material-ui": "0.20.1",
"mocha": "5.1.1",
"npm-run-all": "4.1.3",
"nyc": "11.7.3",
"nyc": "11.8.0",
"prop-types": "15.6.1",
"react": "15.6.2",
"react-dom": "15.6.2",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "5.0.7",
"react-router": "3.0.5",
"react-router": "^3.2.1",
"react-tap-event-plugin": "3.0.2",
"redial": "0.5.0",
"redux": "3.7.2",
"redux": "4.0.0",
"rollup": "0.59.1",
"rollup-plugin-babel": "3.0.4",
"semantic-release": "15.1.8",
"sinon": "4.4.6",
"semantic-release": "15.4.1",
"sinon": "5.0.7",
"validate-commit-msg": "2.14.0",
"vision": "4.1.1",
"visionary": "6.0.2"
},
"peerDependencies": {
"boom": "^5.1.0",
"react": "^15.6.0",
"react-dom": "^15.6.0",
"boom": "^6.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router": "^3.0.5",
"redial": "^0.5.0"
},
Expand Down
2 changes: 1 addition & 1 deletion test/unit/data-fetcher-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ suite('data fetcher', () => {
let sandbox;

setup(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();

sandbox.stub(redial, 'trigger');
});
Expand Down
2 changes: 1 addition & 1 deletion test/unit/route-matcher-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ suite('route matcher', () => {
const url = any.string();

setup(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();

sandbox.stub(reactRouter, 'createMemoryHistory').returns({createLocation});
sandbox.stub(reactRouter, 'match');
Expand Down
2 changes: 1 addition & 1 deletion test/unit/route-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ suite('route', () => {
let sandbox;

setup(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();

sandbox.stub(routerWrapper, 'default');
});
Expand Down
2 changes: 1 addition & 1 deletion test/unit/router-wrapper-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ suite('router-wrapper', () => {
const request = {raw: {req: {url}}};

setup(() => {
sandbox = sinon.sandbox.create();
sandbox = sinon.createSandbox();

sandbox.stub(routeMatcher, 'default');
sandbox.stub(dataFetcher, 'default');
Expand Down

0 comments on commit 6a313d1

Please sign in to comment.