Skip to content

Commit

Permalink
chore(npm): update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
koichik committed Apr 25, 2017
1 parent 649a011 commit 37a671c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 22 deletions.
37 changes: 17 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,35 +28,32 @@
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib/*",
"eslint": "eslint src",
"fixpack": "fixpack",
"jscs": "jscs src",
"lint": "npm-run-all eslint jscs",
"lint": "eslint src",
"preversion": "npm-run-all lint",
"version": "npm-run-all clean build"
},
"dependencies": {
"hoist-non-react-statics": "^1.0.0"
"hoist-non-react-statics": "^1.0.0",
"prop-types": "^15.0.0"
},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "6.11.4",
"babel-eslint": "6.1.2",
"babel-jscs": "3.0.0-beta1",
"babel-preset-es2015": "6.9.0",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-power-assert": "1.0.0",
"babel-preset-react": "6.5.0",
"eslint": "2.13.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "1.11.1",
"eslint-plugin-jsx-a11y": "1.2.2",
"eslint-plugin-react": "5.2.2",
"babel-preset-react": "6.24.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"fixpack": "2.3.1",
"jscs": "2.11.0",
"npm-run-all": "2.3.0",
"react": "15.2.1",
"react-router": "^3.0.0",
"rimraf": "2.5.3"
"npm-run-all": "4.0.2",
"react": "15.5.4",
"react-router": "3.0.5",
"rimraf": "2.6.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
Expand Down
3 changes: 2 additions & 1 deletion src/ReduxAsyncLoaderContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
* https://github.com/ryanflorence/async-props/blob/master/LICENSE.md
*/

import React, { Component, PropTypes } from 'react';
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import computeChangedRoutes from './computeChangedRoutes';
import { beginAsyncLoad, endAsyncLoad, skipAsyncLoad } from './actions';
import flattenComponents from './flattenComponents';
Expand Down
3 changes: 2 additions & 1 deletion src/deferLoader.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React, { Component, PropTypes, cloneElement } from 'react';
import React, { Component, cloneElement } from 'react';
import PropTypes from 'prop-types';
import hoistStatics from 'hoist-non-react-statics';

export default function deferLoader(loader) {
Expand Down

0 comments on commit 37a671c

Please sign in to comment.