├── .babelrc
├── .gitignore
├── .jshintrc
├── README.md
├── dist
├── Footer.js
├── Header.js
├── ScrollToTopOnMount.js
├── Section.js
└── SectionsContainer.js
├── example
├── bundle.js
├── demo.css
├── demo.js
├── index.html
├── server.js
└── webpack.config.js
├── index.js
├── package.json
├── src
├── Footer.js
├── Header.js
├── ScrollToTopOnMount.js
├── Section.js
└── SectionsContainer.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["es2015", "react", "stage-2"]
3 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 |
6 | # Runtime data
7 | pids
8 | *.pid
9 | *.seed
10 |
11 | # Directory for instrumented libs generated by jscoverage/JSCover
12 | lib-cov
13 |
14 | # Coverage directory used by tools like istanbul
15 | coverage
16 |
17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18 | .grunt
19 |
20 | # node-waf configuration
21 | .lock-wscript
22 |
23 | # Compiled binary addons (http://nodejs.org/api/addons.html)
24 | build/Release
25 |
26 | # Dependency directory
27 | # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
28 | node_modules
29 |
30 | # Custom
31 | .DS_Store
32 | build
33 |
--------------------------------------------------------------------------------
/.jshintrc:
--------------------------------------------------------------------------------
1 | {
2 |
3 | // Environments:
4 | "browser" : true,
5 | "node" : true,
6 | "esnext": true,
7 |
8 | // Enforcing options:
9 | "bitwise": true,
10 | "camelcase": false,
11 | "curly": true,
12 | "eqeqeq": true,
13 | "latedef": true,
14 | "newcap": true,
15 | "noarg": true,
16 | "noempty": true,
17 | "nonew": true,
18 | "quotmark": "single",
19 | "regexp": true,
20 | "strict": false,
21 | "trailing": true,
22 | "undef": true,
23 | "unused": true
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Help wanted
2 |
3 | Hey, because I am very limited with my time, I am unable to keep maitaining this project, so I am hoping to organize a group of collaborators to help me turn this into a great project.
4 |
5 | So everyone who wants to join, please send me an email at **mihail[@]subtirelu.info** and I will get back to you asap.
6 |
7 | ## React Full Page
8 |
9 | This is an implementation of [fullpage.js](https://github.com/alvarotrigo/fullPage.js) in react.
10 | For the moment this is still in development and a lot of things can change.
11 |
12 | ## Install
13 |
14 | ```
15 | npm install --save react-fullpage
16 | ```
17 |
18 | ## Usage
19 | ### A basic usage
20 | ```javascript
21 | import React from 'react';
22 | import {SectionsContainer, Section} from 'react-fullpage';
23 |
24 | let options = {
25 | ...
26 | };
27 |
28 | // => in the render() method of your app
29 | return (
30 |
31 |
32 |
33 |
34 |
35 | );
36 |
37 | ```
38 |
39 | ### Fixed header and footer
40 |
41 | In case you need a fixed header and footer you can also include the `Header` or `Footer` component
42 |
43 | ```javascript
44 |
45 | import {SectionsContainer, Section, Header, Footer} from 'react-fullpage';
46 |
47 | // => in the render() method of your app
48 | return (
49 |
54 |
59 |
60 |
61 |
62 |
63 |
64 | );
65 |
66 | ```
67 |
68 | ## Default Props
69 | Some of this props can be referenced with the [fullpage.js options](https://github.com/alvarotrigo/fullPage.js#options)
70 | ```javascript
71 | let options = {
72 | activeClass: 'active', // the class that is appended to the sections links
73 | anchors: [], // the anchors for each sections
74 | arrowNavigation: true, // use arrow keys
75 | className: 'SectionContainer', // the class name for the section container
76 | delay: 1000, // the scroll animation speed
77 | navigation: true, // use dots navigatio
78 | scrollBar: false, // use the browser default scrollbar
79 | sectionClassName: 'Section', // the section class name
80 | sectionPaddingTop: '0', // the section top padding
81 | sectionPaddingBottom: '0', // the section bottom padding
82 | verticalAlign: false // align the content of each section vertical
83 | };
84 | ```
85 |
86 | ## Full example
87 | You can find the full example [here](https://github.com/subtirelumihail/react15-fullpage/tree/master/example)
88 |
89 | ````javascript
90 | import React from 'react';
91 | import ReactDOM from 'react-dom';
92 |
93 | import {SectionsContainer, Section, Header, Footer} from '../index';
94 |
95 | const app = document.querySelector('#app');
96 |
97 | const Example = React.createClass({
98 | render() {
99 | let options = {
100 | sectionClassName: 'section',
101 | anchors: ['sectionOne', 'sectionTwo', 'sectionThree'],
102 | scrollBar: false,
103 | navigation: true,
104 | verticalAlign: false,
105 | sectionPaddingTop: '50px',
106 | sectionPaddingBottom: '50px',
107 | arrowNavigation: true
108 | };
109 |
110 | return (
111 |
112 |
117 |
122 |
123 |
124 |
125 |
126 |
127 |
128 | );
129 | }
130 | });
131 |
132 | ReactDOM.render(, app);
133 | ````
134 |
135 | ## Scroll Restoration with React Router
136 | When using react-fullpage with [react-router](https://github.com/ReactTraining/react-router), you may want to use the `ScrollToTopOnMount` helper component to restore scroll position when switching between routes. More information can be found [here](https://reacttraining.com/react-router/web/guides/scroll-restoration).
137 |
138 | ````javascript
139 | import React from 'react';
140 | import {ScrollToTopOnMount, SectionsContainer, Section} from 'react-fullpage';
141 |
142 | export default class extends React.Component {
143 | render() {
144 | let options = {
145 | ...
146 | };
147 |
148 | return (
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 | );
158 | }
159 | };
160 |
161 | ````
162 |
--------------------------------------------------------------------------------
/dist/Footer.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | Object.defineProperty(exports, "__esModule", {
4 | value: true
5 | });
6 |
7 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
8 |
9 | var _react = require('react');
10 |
11 | var _react2 = _interopRequireDefault(_react);
12 |
13 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14 |
15 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16 |
17 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
18 |
19 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
20 |
21 | var Footer = function (_Component) {
22 | _inherits(Footer, _Component);
23 |
24 | function Footer() {
25 | _classCallCheck(this, Footer);
26 |
27 | return _possibleConstructorReturn(this, (Footer.__proto__ || Object.getPrototypeOf(Footer)).apply(this, arguments));
28 | }
29 |
30 | _createClass(Footer, [{
31 | key: 'render',
32 | value: function render() {
33 | var footerStyle = {
34 | position: 'fixed',
35 | width: '100%',
36 | zIndex: '1',
37 | bottom: '0'
38 | };
39 |
40 | return _react2.default.createElement(
41 | 'footer',
42 | { style: footerStyle },
43 | this.props.children
44 | );
45 | }
46 | }]);
47 |
48 | return Footer;
49 | }(_react.Component);
50 |
51 | exports.default = Footer;
--------------------------------------------------------------------------------
/dist/Header.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | Object.defineProperty(exports, "__esModule", {
4 | value: true
5 | });
6 |
7 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
8 |
9 | var _react = require('react');
10 |
11 | var _react2 = _interopRequireDefault(_react);
12 |
13 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14 |
15 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16 |
17 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
18 |
19 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
20 |
21 | var Header = function (_Component) {
22 | _inherits(Header, _Component);
23 |
24 | function Header() {
25 | _classCallCheck(this, Header);
26 |
27 | return _possibleConstructorReturn(this, (Header.__proto__ || Object.getPrototypeOf(Header)).apply(this, arguments));
28 | }
29 |
30 | _createClass(Header, [{
31 | key: 'render',
32 | value: function render() {
33 | var headerStyle = {
34 | position: 'fixed',
35 | width: '100%',
36 | zIndex: '1',
37 | top: '0'
38 | };
39 |
40 | return _react2.default.createElement(
41 | 'header',
42 | { style: headerStyle },
43 | this.props.children
44 | );
45 | }
46 | }]);
47 |
48 | return Header;
49 | }(_react.Component);
50 |
51 | exports.default = Header;
--------------------------------------------------------------------------------
/dist/ScrollToTopOnMount.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | Object.defineProperty(exports, "__esModule", {
4 | value: true
5 | });
6 |
7 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
8 |
9 | var _react = require('react');
10 |
11 | var _react2 = _interopRequireDefault(_react);
12 |
13 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14 |
15 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
16 |
17 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
18 |
19 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
20 |
21 | var ScrollToTopOnMount = function (_Component) {
22 | _inherits(ScrollToTopOnMount, _Component);
23 |
24 | function ScrollToTopOnMount() {
25 | _classCallCheck(this, ScrollToTopOnMount);
26 |
27 | return _possibleConstructorReturn(this, (ScrollToTopOnMount.__proto__ || Object.getPrototypeOf(ScrollToTopOnMount)).apply(this, arguments));
28 | }
29 |
30 | _createClass(ScrollToTopOnMount, [{
31 | key: 'componentDidMount',
32 | value: function componentDidMount() {
33 | window.scrollTo(0, 0);
34 | }
35 | }, {
36 | key: 'render',
37 | value: function render() {
38 | return null;
39 | }
40 | }]);
41 |
42 | return ScrollToTopOnMount;
43 | }(_react.Component);
44 |
45 | exports.default = ScrollToTopOnMount;
--------------------------------------------------------------------------------
/dist/Section.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | Object.defineProperty(exports, "__esModule", {
4 | value: true
5 | });
6 |
7 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
8 |
9 | var _react = require('react');
10 |
11 | var _react2 = _interopRequireDefault(_react);
12 |
13 | var _propTypes = require('prop-types');
14 |
15 | var _propTypes2 = _interopRequireDefault(_propTypes);
16 |
17 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
18 |
19 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
20 |
21 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
22 |
23 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
24 |
25 | var Section = function (_Component) {
26 | _inherits(Section, _Component);
27 |
28 | function Section() {
29 | var _ref;
30 |
31 | var _temp, _this, _ret;
32 |
33 | _classCallCheck(this, Section);
34 |
35 | for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
36 | args[_key] = arguments[_key];
37 | }
38 |
39 | return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = Section.__proto__ || Object.getPrototypeOf(Section)).call.apply(_ref, [this].concat(args))), _this), _this.state = {
40 | windowHeight: 0
41 | }, _this.renderVerticalAlign = function () {
42 | var verticalAlignStyle = {
43 | display: 'table-cell',
44 | verticalAlign: 'middle',
45 | width: '100%'
46 | };
47 |
48 | return _react2.default.createElement(
49 | 'div',
50 | { style: verticalAlignStyle },
51 | _this.props.children
52 | );
53 | }, _temp), _possibleConstructorReturn(_this, _ret);
54 | }
55 |
56 | _createClass(Section, [{
57 | key: 'handleResize',
58 | value: function handleResize() {
59 | this.setState({
60 | windowHeight: window.innerHeight
61 | });
62 | }
63 | }, {
64 | key: 'componentDidMount',
65 | value: function componentDidMount() {
66 | var _this2 = this;
67 |
68 | this.handleResize();
69 | window.addEventListener('resize', function () {
70 | return _this2.handleResize();
71 | });
72 | }
73 | }, {
74 | key: 'componentWillUnmount',
75 | value: function componentWillUnmount() {
76 | var _this3 = this;
77 |
78 | window.removeEventListener('resize', function () {
79 | return _this3.handleResize();
80 | });
81 | }
82 | }, {
83 | key: 'render',
84 | value: function render() {
85 | var alignVertical = this.props.verticalAlign || this.context.verticalAlign;
86 |
87 | var sectionStyle = {
88 | width: '100%',
89 | display: alignVertical ? 'table' : 'block',
90 | height: this.state.windowHeight,
91 | maxHeight: this.state.windowHeight,
92 | overflow: 'auto',
93 | backgroundColor: this.props.color,
94 | paddingTop: this.context.sectionPaddingTop,
95 | paddingBottom: this.context.sectionPaddingBottom
96 | };
97 |
98 | return _react2.default.createElement(
99 | 'div',
100 | {
101 | className: this.context.sectionClassName + (this.props.className ? ' ' + this.props.className : ''),
102 | id: this.props.id,
103 | style: sectionStyle },
104 | alignVertical ? this.renderVerticalAlign() : this.props.children
105 | );
106 | }
107 | }]);
108 |
109 | return Section;
110 | }(_react.Component);
111 |
112 | Section.propTypes = {
113 | color: _propTypes2.default.string
114 | };
115 |
116 | Section.contextTypes = {
117 | verticalAlign: _propTypes2.default.bool,
118 | sectionClassName: _propTypes2.default.string,
119 | sectionPaddingTop: _propTypes2.default.string,
120 | sectionPaddingBottom: _propTypes2.default.string
121 | };
122 |
123 | exports.default = Section;
--------------------------------------------------------------------------------
/dist/SectionsContainer.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 |
3 | Object.defineProperty(exports, "__esModule", {
4 | value: true
5 | });
6 |
7 | var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
8 |
9 | var _react = require('react');
10 |
11 | var _react2 = _interopRequireDefault(_react);
12 |
13 | var _propTypes = require('prop-types');
14 |
15 | var _propTypes2 = _interopRequireDefault(_propTypes);
16 |
17 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
18 |
19 | function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
20 |
21 | function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
22 |
23 | function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
24 |
25 | var SectionsContainer = function (_Component) {
26 | _inherits(SectionsContainer, _Component);
27 |
28 | function SectionsContainer() {
29 | var _ref;
30 |
31 | var _temp, _this, _ret;
32 |
33 | _classCallCheck(this, SectionsContainer);
34 |
35 | for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
36 | args[_key] = arguments[_key];
37 | }
38 |
39 | return _ret = (_temp = (_this = _possibleConstructorReturn(this, (_ref = SectionsContainer.__proto__ || Object.getPrototypeOf(SectionsContainer)).call.apply(_ref, [this].concat(args))), _this), _this.state = {
40 | activeSection: _this.props.activeSection,
41 | scrollingStarted: false,
42 | sectionScrolledPosition: 0,
43 | windowHeight: 0
44 | }, _this.removeDefaultEventListeners = function () {
45 | window.removeEventListener('resize', _this.handleResize);
46 | window.removeEventListener('hashchange', _this.handleAnchor);
47 |
48 | if (_this.props.arrowNavigation) {
49 | window.removeEventListener('keydown', _this.handleArrowKeys);
50 | }
51 | }, _this.addCSS3Scroll = function () {
52 | _this.addOverflowToBody();
53 | _this.addMouseWheelEventHandlers();
54 | }, _this.addActiveClass = function () {
55 | _this.removeActiveClass();
56 |
57 | var hash = window.location.hash.substring(1);
58 | var activeLinks = document.querySelectorAll('a[href="#' + hash + '"]');
59 |
60 | for (var i = 0; i < activeLinks.length; i++) {
61 | activeLinks[i].className = activeLinks[i].className + (activeLinks[i].className.length > 0 ? ' ' : '') + ('' + _this.props.activeClass);
62 | }
63 | }, _this.removeActiveClass = function () {
64 | var activeLinks = document.querySelectorAll('a:not([href="#' + _this.props.anchors[_this.state.activeSection] + '"])');
65 |
66 | for (var i = 0; i < activeLinks.length; i++) {
67 | activeLinks[i].className = activeLinks[i].className.replace(/\b ?active/g, '');
68 | }
69 | }, _this.addChildrenWithAnchorId = function () {
70 | var index = 0;
71 |
72 | return _react.Children.map(_this.props.children, function (child) {
73 | var id = _this.props.anchors[index];
74 |
75 | index++;
76 |
77 | if (id) {
78 | return (0, _react.cloneElement)(child, {
79 | id: id
80 | });
81 | } else {
82 | return child;
83 | }
84 | });
85 | }, _this.addOverflowToBody = function () {
86 | document.querySelector('body').style.overflow = 'hidden';
87 | }, _this.removeOverflowFromBody = function () {
88 | document.querySelector('body').style.overflow = 'initial';
89 | }, _this.addMouseWheelEventHandlers = function () {
90 | window.addEventListener('mousewheel', _this.handleMouseWheel, false);
91 | window.addEventListener('DOMMouseScroll', _this.handleMouseWheel, false);
92 | }, _this.removeMouseWheelEventHandlers = function () {
93 | window.removeEventListener('mousewheel', _this.handleMouseWheel);
94 | window.removeEventListener('DOMMouseScroll', _this.handleMouseWheel);
95 | }, _this.handleMouseWheel = function (event) {
96 | var e = window.event || event;
97 | var delta = Math.max(-1, Math.min(1, e.wheelDelta || -e.detail));
98 | var activeSection = _this.state.activeSection - delta;
99 |
100 | if (_this.state.scrollingStarted || activeSection < 0 || _this.childrenLength === activeSection) {
101 | return false;
102 | }
103 |
104 | _this.setAnchor(activeSection);
105 | _this.handleSectionTransition(activeSection);
106 | _this.addActiveClass();
107 | }, _this.handleResize = function () {
108 | var position = 0 - _this.state.activeSection * window.innerHeight;
109 |
110 | _this.setState({
111 | scrollingStarted: true,
112 | windowHeight: window.innerHeight,
113 | sectionScrolledPosition: position
114 | });
115 |
116 | _this.resetScroll();
117 | }, _this.handleSectionTransition = function (index) {
118 | var position = 0 - index * _this.state.windowHeight;
119 |
120 | if (!_this.props.anchors.length || index === -1 || index >= _this.props.anchors.length) {
121 | return false;
122 | }
123 |
124 | _this.setState({
125 | scrollingStarted: true,
126 | activeSection: index,
127 | sectionScrolledPosition: position
128 | });
129 |
130 | _this.resetScroll();
131 | _this.handleScrollCallback();
132 | }, _this.handleArrowKeys = function (e) {
133 |
134 | var event = window.event ? window.event : e;
135 | var activeSection = event.keyCode === 38 || event.keyCode === 37 ? _this.state.activeSection - 1 : event.keyCode === 40 || event.keyCode === 39 ? _this.state.activeSection + 1 : -1;
136 |
137 | if (_this.state.scrollingStarted || activeSection < 0 || _this.childrenLength === activeSection) {
138 | return false;
139 | }
140 |
141 | _this.setAnchor(activeSection);
142 | _this.handleSectionTransition(activeSection);
143 | _this.addActiveClass();
144 | }, _this.handleTouchNav = function () {
145 | var that = _this;
146 |
147 | var touchsurface = document.querySelector('.' + _this.props.className),
148 | swipedir = void 0,
149 | startX = void 0,
150 | startY = void 0,
151 | dist = void 0,
152 | distX = void 0,
153 | distY = void 0,
154 | threshold = 50,
155 | restraint = 100,
156 | allowedTime = 1000,
157 | elapsedTime = void 0,
158 | startTime = void 0,
159 | handleswipe = function handleswipe(swipedir) {
160 | console.log(swipedir);
161 | };
162 |
163 | touchsurface.addEventListener('touchstart', function (e) {
164 | var touchobj = e.changedTouches[0];
165 | swipedir = 'none';
166 | dist = 0;
167 | startX = touchobj.pageX;
168 | startY = touchobj.pageY;
169 | startTime = new Date().getTime();
170 | }, false);
171 |
172 | touchsurface.addEventListener('touchmove', function (e) {
173 | e.preventDefault();
174 | }, false);
175 |
176 | touchsurface.addEventListener('touchend', function (e) {
177 | var touchobj = e.changedTouches[0];
178 | distX = touchobj.pageX - startX;
179 | distY = touchobj.pageY - startY;
180 | elapsedTime = new Date().getTime() - startTime;
181 | if (elapsedTime <= allowedTime) {
182 |
183 | if (Math.abs(distY) >= threshold && Math.abs(distX) <= restraint) {
184 |
185 | swipedir = distY < 0 ? 'up' : 'down';
186 | var direction = swipedir === 'down' ? that.state.activeSection - 1 : swipedir === 'up' ? that.state.activeSection + 1 : -1;
187 | var hash = that.props.anchors[direction];
188 |
189 | if (!that.props.anchors.length || hash) {
190 | window.location.hash = '#' + hash;
191 | }
192 |
193 | that.handleSectionTransition(direction);
194 | }
195 | }
196 | handleswipe(swipedir);
197 | }, false);
198 | }, _this.handleAnchor = function () {
199 | var hash = window.location.hash.substring(1);
200 | var activeSection = _this.props.anchors.indexOf(hash);
201 |
202 | if (_this.state.activeSection !== activeSection) {
203 | _this.handleSectionTransition(activeSection);
204 | _this.addActiveClass();
205 | }
206 | }, _this.setAnchor = function (index) {
207 | var hash = _this.props.anchors[index];
208 |
209 | if (!_this.props.anchors.length || hash) {
210 | window.location.hash = '#' + hash;
211 | }
212 | }, _this.handleScrollCallback = function () {
213 | if (_this.props.scrollCallback) {
214 | setTimeout(function () {
215 | return _this.props.scrollCallback(_this.state);
216 | }, 0);
217 | }
218 | }, _this.resetScroll = function () {
219 | _this.clearResetScrollTimer();
220 |
221 | _this.resetScrollTimer = setTimeout(function () {
222 | _this.setState({
223 | scrollingStarted: false
224 | });
225 | }, _this.props.delay + 300);
226 | }, _this.clearResetScrollTimer = function () {
227 | if (_this.resetScrollTimer) {
228 | clearTimeout(_this.resetScrollTimer);
229 | }
230 | }, _this.renderNavigation = function () {
231 | var navigationStyle = {
232 | position: 'fixed',
233 | zIndex: '10',
234 | right: '20px',
235 | top: '50%',
236 | transform: 'translate(-50%, -50%)'
237 | };
238 |
239 | var anchors = _this.props.anchors.map(function (link, index) {
240 | var anchorStyle = {
241 | display: 'block',
242 | margin: '10px',
243 | borderRadius: '100%',
244 | backgroundColor: '#556270',
245 | padding: '5px',
246 | transition: 'all 0.2s',
247 | transform: _this.state.activeSection === index ? 'scale(1.3)' : 'none'
248 | };
249 |
250 | return _react2.default.createElement('a', {
251 | href: '#' + link,
252 | key: index,
253 | className: _this.props.navigationAnchorClass || 'Navigation-Anchor',
254 | style: _this.props.navigationAnchorClass ? null : anchorStyle
255 | });
256 | });
257 |
258 | return _react2.default.createElement(
259 | 'div',
260 | {
261 | className: _this.props.navigationClass || 'Navigation',
262 | style: _this.props.navigationClass ? null : navigationStyle },
263 | anchors
264 | );
265 | }, _temp), _possibleConstructorReturn(_this, _ret);
266 | }
267 |
268 | _createClass(SectionsContainer, [{
269 | key: 'getChildContext',
270 | value: function getChildContext() {
271 | return {
272 | verticalAlign: this.props.verticalAlign,
273 | sectionClassName: this.props.sectionClassName,
274 | sectionPaddingTop: this.props.sectionPaddingTop,
275 | sectionPaddingBottom: this.props.sectionPaddingBottom
276 | };
277 | }
278 | }, {
279 | key: 'componentWillUnmount',
280 | value: function componentWillUnmount() {
281 | this.clearResetScrollTimer();
282 | this.removeDefaultEventListeners();
283 | this.removeMouseWheelEventHandlers();
284 | this.removeOverflowFromBody();
285 | }
286 | }, {
287 | key: 'componentDidMount',
288 | value: function componentDidMount() {
289 | this.childrenLength = this.props.children.length;
290 |
291 | this.handleResize();
292 | window.addEventListener('resize', this.handleResize);
293 |
294 | if (!this.props.scrollBar) {
295 | this.addCSS3Scroll();
296 | this.handleAnchor();
297 |
298 | window.addEventListener('hashchange', this.handleAnchor, false);
299 |
300 | if (this.props.arrowNavigation) {
301 | window.addEventListener('keydown', this.handleArrowKeys);
302 | }
303 |
304 | if (this.props.touchNavigation) {
305 | this.handleTouchNav();
306 | }
307 | }
308 | }
309 | }, {
310 | key: 'componentWillReceiveProps',
311 | value: function componentWillReceiveProps(nextProps) {
312 | if (this.props.activeSection !== nextProps.activeSection) {
313 | this.setState({ activeSection: nextProps.activeSection });
314 | this.setAnchor(nextProps.activeSection);
315 | this.handleSectionTransition(nextProps.activeSection);
316 | this.addActiveClass();
317 | }
318 | }
319 | }, {
320 | key: 'render',
321 | value: function render() {
322 | var containerStyle = {
323 | height: '100%',
324 | width: '100%',
325 | position: 'relative',
326 | transform: 'translate3d(0px, ' + this.state.sectionScrolledPosition + 'px, 0px)',
327 | transition: 'all ' + this.props.delay + 'ms ease'
328 | };
329 | return _react2.default.createElement(
330 | 'div',
331 | null,
332 | _react2.default.createElement(
333 | 'div',
334 | { className: this.props.className, style: containerStyle },
335 | this.props.scrollBar ? this.addChildrenWithAnchorId() : this.props.children
336 | ),
337 | this.props.navigation && !this.props.scrollBar ? this.renderNavigation() : null
338 | );
339 | }
340 | }]);
341 |
342 | return SectionsContainer;
343 | }(_react.Component);
344 |
345 | SectionsContainer.defaultProps = {
346 | scrollCallback: null,
347 | delay: 1000,
348 | verticalAlign: false,
349 | scrollBar: false,
350 | navigation: true,
351 | className: 'SectionContainer',
352 | sectionClassName: 'Section',
353 | anchors: [],
354 | activeClass: 'active',
355 | sectionPaddingTop: '0',
356 | sectionPaddingBottom: '0',
357 | arrowNavigation: true,
358 | activeSection: 0,
359 | touchNavigation: true
360 | };
361 |
362 | SectionsContainer.propTypes = {
363 | scrollCallback: _propTypes2.default.func,
364 | delay: _propTypes2.default.number,
365 | verticalAlign: _propTypes2.default.bool,
366 | scrollBar: _propTypes2.default.bool,
367 | navigation: _propTypes2.default.bool,
368 | className: _propTypes2.default.string,
369 | sectionClassName: _propTypes2.default.string,
370 | navigationClass: _propTypes2.default.string,
371 | navigationAnchorClass: _propTypes2.default.string,
372 | activeClass: _propTypes2.default.string,
373 | sectionPaddingTop: _propTypes2.default.string,
374 | sectionPaddingBottom: _propTypes2.default.string,
375 | arrowNavigation: _propTypes2.default.bool,
376 | activeSection: _propTypes2.default.number,
377 | touchNavigation: _propTypes2.default.bool
378 | };
379 |
380 | SectionsContainer.childContextTypes = {
381 | verticalAlign: _propTypes2.default.bool,
382 | sectionClassName: _propTypes2.default.string,
383 | sectionPaddingTop: _propTypes2.default.string,
384 | sectionPaddingBottom: _propTypes2.default.string
385 | };
386 |
387 | exports.default = SectionsContainer;
--------------------------------------------------------------------------------
/example/demo.css:
--------------------------------------------------------------------------------
1 | html,
2 | body {
3 | margin: 0;
4 | font-family: arial,helvetica;
5 | }
6 |
7 | html {
8 | box-sizing: border-box;
9 | }
10 | *, *:before, *:after {
11 | box-sizing: inherit;
12 | }
13 |
14 | footer,
15 | header {
16 | color: #fff;
17 | text-align: center;
18 | padding: 10px;
19 | }
20 |
21 | header {
22 | background-color:rgba(0, 0, 0, 0.3);
23 | border-bottom: 1px solid #556270;
24 | }
25 |
26 | footer {
27 | color: #000;
28 | }
29 |
30 | a {
31 | display: inline-block;
32 | color: inherit;
33 | text-decoration: none;
34 | margin: 0px 25px;
35 |
36 | -webkit-transition: all 0.2s;
37 | -o-transition: all 0.2s;
38 | transition: all 0.2s;
39 | }
40 |
41 | a.active,
42 | a:hover {
43 | color: #C44D58;
44 | }
45 |
46 | button {
47 | width: 50px;
48 | padding: 8px;
49 | }
50 |
51 | .btnGroup {
52 | position: absolute;
53 | bottom: 20px;
54 | right: 20px;
55 | z-index: 9;
56 | }
--------------------------------------------------------------------------------
/example/demo.js:
--------------------------------------------------------------------------------
1 | import './demo.css';
2 |
3 | import * as React from 'react';
4 | import ReactDOM from 'react-dom';
5 |
6 | import { SectionsContainer, Section, Header, Footer } from '../index';
7 |
8 | const app = document.querySelector('#app');
9 |
10 | class Example extends React.Component {
11 | constructor(props) {
12 | super(props)
13 | this.state = {
14 | current: 0,
15 | }
16 | }
17 |
18 | render() {
19 | const options = {
20 | sectionClassName: 'section',
21 | anchors: ['sectionOne', 'sectionTwo', 'sectionThree'],
22 | scrollBar: false,
23 | navigation: true,
24 | verticalAlign: false,
25 | sectionPaddingTop: '50px',
26 | sectionPaddingBottom: '50px',
27 | arrowNavigation: true,
28 | scrollCallback: (states) => this.setState({current: states.activeSection})
29 | };
30 |
31 | const {current} = this.state
32 |
33 | return (
34 |
35 |
40 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 | )
57 | }
58 | }
59 |
60 | ReactDOM.render(, app);
61 |
--------------------------------------------------------------------------------
/example/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Test
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/example/server.js:
--------------------------------------------------------------------------------
1 | var config = require('./webpack.config.js');
2 | var webpack = require('webpack');
3 | var webpackDevServer = require('webpack-dev-server');
4 |
5 | config.entry.unshift('webpack-dev-server/client?http://localhost:9090');
6 |
7 | new webpackDevServer(webpack(config), {
8 | contentBase: __dirname + '/',
9 | progress: true,
10 | inline: true,
11 | historyApiFallback: true,
12 | stats: {
13 | assets: true,
14 | colors: true,
15 | hash: false,
16 | timings: true,
17 | chunks: false,
18 | chunkModules: false,
19 | modules: false,
20 | source: true,
21 | children: true
22 | }
23 | }).listen(9090, 'localhost', function (err) {
24 | if (err) {
25 | console.log(err);
26 | }
27 | console.log('Listening at localhost:' + 9090);
28 | });
29 |
--------------------------------------------------------------------------------
/example/webpack.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | cache: true,
3 | debug: true,
4 | entry: [
5 | __dirname + '/demo'
6 | ],
7 | publicPath: __dirname,
8 | output: {
9 | path: __dirname,
10 | filename: 'bundle.js'
11 | },
12 | module: {
13 | loaders: [{
14 | test: /\.js$/,
15 | exclude: /node_modules/,
16 | loader: 'babel-loader'
17 | },
18 | {
19 | test: /\.css$/, loader: 'css-loader'
20 | }
21 | ]
22 | }
23 | };
24 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | SectionsContainer: require('./dist/SectionsContainer').default,
3 | Section: require('./dist/Section').default,
4 | ScrollToTopOnMount: require('./dist/ScrollToTopOnMount').default,
5 | Header: require('./dist/Header').default,
6 | Footer: require('./dist/Footer').default,
7 | };
8 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-fullpage",
3 | "version": "0.1.19",
4 | "description": "An implementation of fullpage.js in react based on react-fullpage",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1",
8 | "release": "babel src --out-dir dist",
9 | "start": "node example/server.js",
10 | "dev": "babel src --out-dir dist --watch",
11 | "clean": "rm -rf dist && rm example/bundle.js",
12 | "build": "npm run release && node ./node_modules/webpack/bin/webpack.js --progress --colors --config example/webpack.config.js"
13 | },
14 | "repository": {
15 | "type": "git",
16 | "url": "git+https://github.com/subtirelumihail/react-fullpage"
17 | },
18 | "keywords": [
19 | "react",
20 | "fullpage.js"
21 | ],
22 | "author": "Subtirelu Mihail",
23 | "license": "ISC",
24 | "bugs": {
25 | "url": "https://github.com/subtirelumihail/react-fullpage/issues"
26 | },
27 | "homepage": "https://github.com/subtirelumihail/react-fullpage",
28 | "dependencies": {
29 | "babel-preset-stage-2": "^6.24.1",
30 | "react": "16.4.2",
31 | "react-dom": "16.4.2"
32 | },
33 | "devDependencies": {
34 | "babel-cli": "6.18.0",
35 | "babel-core": "6.18.2",
36 | "babel-loader": "6.2.7",
37 | "babel-preset-es2015": "6.18.0",
38 | "babel-preset-latest": "6.16.0",
39 | "babel-preset-react": "6.16.0",
40 | "css-loader": "0.25.0",
41 | "webpack": "1.12.2",
42 | "webpack-dev-server": "1.12.0"
43 | }
44 | }
45 |
--------------------------------------------------------------------------------
/src/Footer.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 |
3 | class Footer extends Component {
4 | render() {
5 | const footerStyle = {
6 | position: 'fixed',
7 | width: '100%',
8 | zIndex: '1',
9 | bottom: '0'
10 | };
11 |
12 | return (
13 |
16 | );
17 | }
18 | }
19 |
20 | export default Footer;
21 |
--------------------------------------------------------------------------------
/src/Header.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 |
3 | class Header extends Component {
4 | render() {
5 | const headerStyle = {
6 | position: 'fixed',
7 | width: '100%',
8 | zIndex: '1',
9 | top: '0'
10 | };
11 |
12 | return ;
13 | }
14 | }
15 |
16 | export default Header;
17 |
--------------------------------------------------------------------------------
/src/ScrollToTopOnMount.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 |
3 | class ScrollToTopOnMount extends Component {
4 | componentDidMount() {
5 | window.scrollTo(0, 0)
6 | }
7 |
8 | render() {
9 | return null
10 | }
11 | }
12 |
13 | export default ScrollToTopOnMount;
--------------------------------------------------------------------------------
/src/Section.js:
--------------------------------------------------------------------------------
1 | import React, { Component } from 'react';
2 | import PropTypes from 'prop-types';
3 |
4 | class Section extends Component {
5 | state = {
6 | windowHeight: 0
7 | };
8 |
9 | handleResize() {
10 | this.setState({
11 | windowHeight: window.innerHeight
12 | });
13 | }
14 |
15 | componentDidMount() {
16 | this.handleResize();
17 | window.addEventListener('resize', () => this.handleResize());
18 | }
19 |
20 | componentWillUnmount() {
21 | window.removeEventListener('resize', () => this.handleResize());
22 | }
23 |
24 | renderVerticalAlign = () => {
25 | const verticalAlignStyle = {
26 | display: 'table-cell',
27 | verticalAlign: 'middle',
28 | width: '100%'
29 | };
30 |
31 | return {this.props.children}
;
32 | };
33 |
34 | render() {
35 | const alignVertical =
36 | this.props.verticalAlign || this.context.verticalAlign;
37 |
38 | const sectionStyle = {
39 | width: '100%',
40 | display: alignVertical ? 'table' : 'block',
41 | height: this.state.windowHeight,
42 | maxHeight: this.state.windowHeight,
43 | overflow: 'auto',
44 | backgroundColor: this.props.color,
45 | paddingTop: this.context.sectionPaddingTop,
46 | paddingBottom: this.context.sectionPaddingBottom
47 | };
48 |
49 | return (
50 |
57 | {alignVertical ? this.renderVerticalAlign() : this.props.children}
58 |
59 | );
60 | }
61 | }
62 |
63 | Section.propTypes = {
64 | color: PropTypes.string
65 | };
66 |
67 | Section.contextTypes = {
68 | verticalAlign: PropTypes.bool,
69 | sectionClassName: PropTypes.string,
70 | sectionPaddingTop: PropTypes.string,
71 | sectionPaddingBottom: PropTypes.string
72 | };
73 |
74 | export default Section;
75 |
--------------------------------------------------------------------------------
/src/SectionsContainer.js:
--------------------------------------------------------------------------------
1 | import React, { Component, Children, cloneElement } from 'react';
2 | import PropTypes from 'prop-types';
3 |
4 | class SectionsContainer extends Component {
5 | state = {
6 | activeSection: this.props.activeSection,
7 | scrollingStarted: false,
8 | sectionScrolledPosition: 0,
9 | windowHeight: 0
10 | };
11 |
12 | resetScrollTimer;
13 | childrenLength;
14 | getChildContext() {
15 | return {
16 | verticalAlign: this.props.verticalAlign,
17 | sectionClassName: this.props.sectionClassName,
18 | sectionPaddingTop: this.props.sectionPaddingTop,
19 | sectionPaddingBottom: this.props.sectionPaddingBottom
20 | };
21 | }
22 |
23 | componentWillUnmount() {
24 | this.clearResetScrollTimer();
25 | this.removeDefaultEventListeners();
26 | this.removeMouseWheelEventHandlers();
27 | this.removeOverflowFromBody();
28 | }
29 |
30 | componentDidMount() {
31 | this.childrenLength = this.props.children.length;
32 |
33 | this.handleResize();
34 | window.addEventListener('resize', this.handleResize);
35 |
36 | if (!this.props.scrollBar) {
37 | this.addCSS3Scroll();
38 | this.handleAnchor();
39 |
40 | window.addEventListener('hashchange', this.handleAnchor, false);
41 |
42 | if (this.props.arrowNavigation) {
43 | window.addEventListener('keydown', this.handleArrowKeys);
44 | }
45 |
46 | if (this.props.touchNavigation) {
47 | this.handleTouchNav();
48 | }
49 | }
50 | }
51 |
52 | componentWillReceiveProps(nextProps) {
53 | if (this.props.activeSection !== nextProps.activeSection) {
54 | this.setState({ activeSection: nextProps.activeSection });
55 | this.setAnchor(nextProps.activeSection);
56 | this.handleSectionTransition(nextProps.activeSection);
57 | this.addActiveClass();
58 | }
59 | }
60 |
61 | removeDefaultEventListeners = () => {
62 | window.removeEventListener('resize', this.handleResize);
63 | window.removeEventListener('hashchange', this.handleAnchor);
64 |
65 | if (this.props.arrowNavigation) {
66 | window.removeEventListener('keydown', this.handleArrowKeys);
67 | }
68 | }
69 |
70 | addCSS3Scroll = () => {
71 | this.addOverflowToBody();
72 | this.addMouseWheelEventHandlers();
73 | }
74 |
75 | addActiveClass = () => {
76 | this.removeActiveClass();
77 |
78 | let hash = window.location.hash.substring(1);
79 | let activeLinks = document.querySelectorAll(`a[href="#${hash}"]`);
80 |
81 | for (let i = 0; i < activeLinks.length; i++) {
82 | activeLinks[i].className =
83 | activeLinks[i].className +
84 | (activeLinks[i].className.length > 0 ? ' ' : '') +
85 | `${this.props.activeClass}`;
86 | }
87 | }
88 |
89 | removeActiveClass = () => {
90 | let activeLinks = document.querySelectorAll(
91 | `a:not([href="#${this.props.anchors[this.state.activeSection]}"])`
92 | );
93 |
94 | for (let i = 0; i < activeLinks.length; i++) {
95 | activeLinks[i].className = activeLinks[i].className.replace(
96 | /\b ?active/g,
97 | ''
98 | );
99 | }
100 | }
101 |
102 | addChildrenWithAnchorId = () => {
103 | let index = 0;
104 |
105 | return Children.map(this.props.children, child => {
106 | let id = this.props.anchors[index];
107 |
108 | index++;
109 |
110 | if (id) {
111 | return cloneElement(child, {
112 | id: id
113 | });
114 | } else {
115 | return child;
116 | }
117 | });
118 | }
119 |
120 | addOverflowToBody = () => {
121 | document.querySelector('body').style.overflow = 'hidden';
122 | }
123 |
124 | removeOverflowFromBody = () => {
125 | document.querySelector('body').style.overflow = 'initial';
126 | }
127 |
128 | addMouseWheelEventHandlers = () => {
129 | window.addEventListener('mousewheel', this.handleMouseWheel, false);
130 | window.addEventListener('DOMMouseScroll', this.handleMouseWheel, false);
131 | }
132 |
133 | removeMouseWheelEventHandlers = () => {
134 | window.removeEventListener('mousewheel', this.handleMouseWheel);
135 | window.removeEventListener('DOMMouseScroll', this.handleMouseWheel);
136 | }
137 |
138 | handleMouseWheel = event => {
139 | const e = window.event || event;
140 | const delta = Math.max(-1, Math.min(1, e.wheelDelta || -e.detail));
141 | const activeSection = this.state.activeSection - delta;
142 |
143 | if (
144 | this.state.scrollingStarted ||
145 | activeSection < 0 ||
146 | this.childrenLength === activeSection
147 | ) {
148 | return false;
149 | }
150 |
151 | this.setAnchor(activeSection);
152 | this.handleSectionTransition(activeSection);
153 | this.addActiveClass();
154 | }
155 |
156 | handleResize = () => {
157 | const position = 0 - this.state.activeSection * window.innerHeight;
158 |
159 | this.setState({
160 | scrollingStarted: true,
161 | windowHeight: window.innerHeight,
162 | sectionScrolledPosition: position
163 | });
164 |
165 | this.resetScroll();
166 | }
167 |
168 | handleSectionTransition = (index) => {
169 | const position = 0 - index * this.state.windowHeight;
170 |
171 | if (
172 | !this.props.anchors.length ||
173 | index === -1 ||
174 | index >= this.props.anchors.length
175 | ) {
176 | return false;
177 | }
178 |
179 | this.setState({
180 | scrollingStarted: true,
181 | activeSection: index,
182 | sectionScrolledPosition: position
183 | });
184 |
185 | this.resetScroll();
186 | this.handleScrollCallback();
187 | }
188 |
189 | handleArrowKeys = (e) => {
190 |
191 |
192 |
193 | const event = window.event ? window.event : e;
194 | const activeSection =
195 | event.keyCode === 38 || event.keyCode === 37
196 | ? this.state.activeSection - 1
197 | : event.keyCode === 40 || event.keyCode === 39
198 | ? this.state.activeSection + 1
199 | : -1;
200 |
201 | if (
202 | this.state.scrollingStarted ||
203 | activeSection < 0 ||
204 | this.childrenLength === activeSection
205 | ) {
206 | return false;
207 | }
208 |
209 | this.setAnchor(activeSection);
210 | this.handleSectionTransition(activeSection);
211 | this.addActiveClass();
212 | }
213 |
214 | handleTouchNav = () => {
215 | let that = this;
216 |
217 | let touchsurface = document.querySelector('.' + this.props.className),
218 | swipedir,
219 | startX,
220 | startY,
221 | dist,
222 | distX,
223 | distY,
224 | threshold = 50,
225 | restraint = 100,
226 | allowedTime = 1000,
227 | elapsedTime,
228 | startTime,
229 | handleswipe = function(swipedir) {
230 | console.log(swipedir);
231 | };
232 |
233 | touchsurface.addEventListener(
234 | 'touchstart',
235 | function(e) {
236 | let touchobj = e.changedTouches[0];
237 | swipedir = 'none';
238 | dist = 0;
239 | startX = touchobj.pageX;
240 | startY = touchobj.pageY;
241 | startTime = new Date().getTime();
242 |
243 | },
244 | false
245 | );
246 |
247 | touchsurface.addEventListener(
248 | 'touchmove',
249 | function(e) {
250 | e.preventDefault();
251 | },
252 | false
253 | );
254 |
255 | touchsurface.addEventListener(
256 | 'touchend',
257 | function(e) {
258 | let touchobj = e.changedTouches[0];
259 | distX = touchobj.pageX - startX;
260 | distY = touchobj.pageY - startY;
261 | elapsedTime = new Date().getTime() - startTime;
262 | if (elapsedTime <= allowedTime) {
263 |
264 | if (Math.abs(distY) >= threshold && Math.abs(distX) <= restraint) {
265 |
266 | swipedir = distY < 0 ? 'up' : 'down';
267 | let direction =
268 | swipedir === 'down'
269 | ? that.state.activeSection - 1
270 | : swipedir === 'up'
271 | ? that.state.activeSection + 1
272 | : -1;
273 | let hash = that.props.anchors[direction];
274 |
275 | if (!that.props.anchors.length || hash) {
276 | window.location.hash = '#' + hash;
277 | }
278 |
279 | that.handleSectionTransition(direction);
280 | }
281 | }
282 | handleswipe(swipedir);
283 |
284 | },
285 | false
286 | );
287 | }
288 |
289 | handleAnchor = () => {
290 | const hash = window.location.hash.substring(1);
291 | const activeSection = this.props.anchors.indexOf(hash);
292 |
293 | if (this.state.activeSection !== activeSection) {
294 | this.handleSectionTransition(activeSection);
295 | this.addActiveClass();
296 | }
297 | }
298 |
299 | setAnchor = (index) => {
300 | const hash = this.props.anchors[index];
301 |
302 | if (!this.props.anchors.length || hash) {
303 | window.location.hash = '#' + hash;
304 | }
305 | }
306 |
307 | handleScrollCallback = () => {
308 | if (this.props.scrollCallback) {
309 | setTimeout(() => this.props.scrollCallback(this.state), 0);
310 | }
311 | }
312 |
313 | resetScroll = () => {
314 | this.clearResetScrollTimer();
315 |
316 | this.resetScrollTimer = setTimeout(() => {
317 | this.setState({
318 | scrollingStarted: false
319 | });
320 | }, this.props.delay + 300);
321 | }
322 |
323 | clearResetScrollTimer = () => {
324 | if (this.resetScrollTimer) {
325 | clearTimeout(this.resetScrollTimer);
326 | }
327 | }
328 |
329 | renderNavigation = () => {
330 | let navigationStyle = {
331 | position: 'fixed',
332 | zIndex: '10',
333 | right: '20px',
334 | top: '50%',
335 | transform: 'translate(-50%, -50%)'
336 | };
337 |
338 | const anchors = this.props.anchors.map((link, index) => {
339 | const anchorStyle = {
340 | display: 'block',
341 | margin: '10px',
342 | borderRadius: '100%',
343 | backgroundColor: '#556270',
344 | padding: '5px',
345 | transition: 'all 0.2s',
346 | transform: this.state.activeSection === index ? 'scale(1.3)' : 'none'
347 | };
348 |
349 | return (
350 |
356 | );
357 | });
358 |
359 | return (
360 |
363 | {anchors}
364 |
365 | );
366 | }
367 |
368 | render() {
369 | let containerStyle = {
370 | height: '100%',
371 | width: '100%',
372 | position: 'relative',
373 | transform: `translate3d(0px, ${
374 | this.state.sectionScrolledPosition
375 | }px, 0px)`,
376 | transition: `all ${this.props.delay}ms ease`
377 | };
378 | return (
379 |
380 |
381 | {this.props.scrollBar
382 | ? this.addChildrenWithAnchorId()
383 | : this.props.children}
384 |
385 | {this.props.navigation && !this.props.scrollBar
386 | ? this.renderNavigation()
387 | : null}
388 |
389 | );
390 | }
391 | }
392 |
393 | SectionsContainer.defaultProps = {
394 | scrollCallback: null,
395 | delay: 1000,
396 | verticalAlign: false,
397 | scrollBar: false,
398 | navigation: true,
399 | className: 'SectionContainer',
400 | sectionClassName: 'Section',
401 | anchors: [],
402 | activeClass: 'active',
403 | sectionPaddingTop: '0',
404 | sectionPaddingBottom: '0',
405 | arrowNavigation: true,
406 | activeSection: 0,
407 | touchNavigation: true
408 | };
409 |
410 | SectionsContainer.propTypes = {
411 | scrollCallback: PropTypes.func,
412 | delay: PropTypes.number,
413 | verticalAlign: PropTypes.bool,
414 | scrollBar: PropTypes.bool,
415 | navigation: PropTypes.bool,
416 | className: PropTypes.string,
417 | sectionClassName: PropTypes.string,
418 | navigationClass: PropTypes.string,
419 | navigationAnchorClass: PropTypes.string,
420 | activeClass: PropTypes.string,
421 | sectionPaddingTop: PropTypes.string,
422 | sectionPaddingBottom: PropTypes.string,
423 | arrowNavigation: PropTypes.bool,
424 | activeSection: PropTypes.number,
425 | touchNavigation: PropTypes.bool
426 | };
427 |
428 | SectionsContainer.childContextTypes = {
429 | verticalAlign: PropTypes.bool,
430 | sectionClassName: PropTypes.string,
431 | sectionPaddingTop: PropTypes.string,
432 | sectionPaddingBottom: PropTypes.string
433 | };
434 |
435 | export default SectionsContainer;
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | Base64@~0.2.0:
6 | version "0.2.1"
7 | resolved "https://registry.npmjs.org/Base64/-/Base64-0.2.1.tgz#ba3a4230708e186705065e66babdd4c35cf60028"
8 |
9 | abbrev@1:
10 | version "1.1.1"
11 | resolved "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
12 |
13 | accepts@1.3.3:
14 | version "1.3.3"
15 | resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz#c3ca7434938648c3e0d9c1e328dd68b622c284ca"
16 | dependencies:
17 | mime-types "~2.1.11"
18 | negotiator "0.6.1"
19 |
20 | accepts@~1.3.4, accepts@~1.3.5:
21 | version "1.3.5"
22 | resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
23 | dependencies:
24 | mime-types "~2.1.18"
25 | negotiator "0.6.1"
26 |
27 | after@0.8.2:
28 | version "0.8.2"
29 | resolved "https://registry.npmjs.org/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f"
30 |
31 | alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
32 | version "1.0.2"
33 | resolved "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
34 |
35 | amdefine@>=0.0.4:
36 | version "1.0.1"
37 | resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
38 |
39 | ansi-regex@^2.0.0:
40 | version "2.1.1"
41 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
42 |
43 | ansi-regex@^3.0.0:
44 | version "3.0.0"
45 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
46 |
47 | ansi-styles@^2.2.1:
48 | version "2.2.1"
49 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
50 |
51 | ansi-styles@^3.2.1:
52 | version "3.2.1"
53 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
54 | dependencies:
55 | color-convert "^1.9.0"
56 |
57 | anymatch@^1.3.0:
58 | version "1.3.2"
59 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a"
60 | dependencies:
61 | micromatch "^2.1.5"
62 | normalize-path "^2.0.0"
63 |
64 | aproba@^1.0.3:
65 | version "1.2.0"
66 | resolved "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
67 |
68 | are-we-there-yet@~1.1.2:
69 | version "1.1.5"
70 | resolved "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21"
71 | dependencies:
72 | delegates "^1.0.0"
73 | readable-stream "^2.0.6"
74 |
75 | argparse@^1.0.7:
76 | version "1.0.10"
77 | resolved "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
78 | dependencies:
79 | sprintf-js "~1.0.2"
80 |
81 | arr-diff@^2.0.0:
82 | version "2.0.0"
83 | resolved "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
84 | dependencies:
85 | arr-flatten "^1.0.1"
86 |
87 | arr-flatten@^1.0.1:
88 | version "1.1.0"
89 | resolved "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
90 |
91 | array-flatten@1.1.1:
92 | version "1.1.1"
93 | resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
94 |
95 | array-unique@^0.2.1:
96 | version "0.2.1"
97 | resolved "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
98 |
99 | arraybuffer.slice@0.0.6:
100 | version "0.0.6"
101 | resolved "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz#f33b2159f0532a3f3107a272c0ccfbd1ad2979ca"
102 |
103 | asap@~2.0.3:
104 | version "2.0.6"
105 | resolved "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
106 |
107 | assert@^1.1.1:
108 | version "1.4.1"
109 | resolved "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
110 | dependencies:
111 | util "0.10.3"
112 |
113 | async-each@^1.0.0:
114 | version "1.0.1"
115 | resolved "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
116 |
117 | async@^0.9.0:
118 | version "0.9.2"
119 | resolved "https://registry.npmjs.org/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d"
120 |
121 | async@^1.3.0:
122 | version "1.5.2"
123 | resolved "https://registry.npmjs.org/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
124 |
125 | async@~0.2.6:
126 | version "0.2.10"
127 | resolved "https://registry.npmjs.org/async/-/async-0.2.10.tgz#b6bbe0b0674b9d719708ca38de8c237cb526c3d1"
128 |
129 | autoprefixer@^6.3.1:
130 | version "6.7.7"
131 | resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
132 | dependencies:
133 | browserslist "^1.7.6"
134 | caniuse-db "^1.0.30000634"
135 | normalize-range "^0.1.2"
136 | num2fraction "^1.2.2"
137 | postcss "^5.2.16"
138 | postcss-value-parser "^3.2.3"
139 |
140 | babel-cli@6.18.0:
141 | version "6.18.0"
142 | resolved "https://registry.npmjs.org/babel-cli/-/babel-cli-6.18.0.tgz#92117f341add9dead90f6fa7d0a97c0cc08ec186"
143 | dependencies:
144 | babel-core "^6.18.0"
145 | babel-polyfill "^6.16.0"
146 | babel-register "^6.18.0"
147 | babel-runtime "^6.9.0"
148 | commander "^2.8.1"
149 | convert-source-map "^1.1.0"
150 | fs-readdir-recursive "^1.0.0"
151 | glob "^5.0.5"
152 | lodash "^4.2.0"
153 | output-file-sync "^1.1.0"
154 | path-is-absolute "^1.0.0"
155 | slash "^1.0.0"
156 | source-map "^0.5.0"
157 | v8flags "^2.0.10"
158 | optionalDependencies:
159 | chokidar "^1.0.0"
160 |
161 | babel-code-frame@^6.11.0, babel-code-frame@^6.16.0, babel-code-frame@^6.26.0:
162 | version "6.26.0"
163 | resolved "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
164 | dependencies:
165 | chalk "^1.1.3"
166 | esutils "^2.0.2"
167 | js-tokens "^3.0.2"
168 |
169 | babel-core@6.18.2:
170 | version "6.18.2"
171 | resolved "https://registry.npmjs.org/babel-core/-/babel-core-6.18.2.tgz#d8bb14dd6986fa4f3566a26ceda3964fa0e04e5b"
172 | dependencies:
173 | babel-code-frame "^6.16.0"
174 | babel-generator "^6.18.0"
175 | babel-helpers "^6.16.0"
176 | babel-messages "^6.8.0"
177 | babel-register "^6.18.0"
178 | babel-runtime "^6.9.1"
179 | babel-template "^6.16.0"
180 | babel-traverse "^6.18.0"
181 | babel-types "^6.18.0"
182 | babylon "^6.11.0"
183 | convert-source-map "^1.1.0"
184 | debug "^2.1.1"
185 | json5 "^0.5.0"
186 | lodash "^4.2.0"
187 | minimatch "^3.0.2"
188 | path-is-absolute "^1.0.0"
189 | private "^0.1.6"
190 | slash "^1.0.0"
191 | source-map "^0.5.0"
192 |
193 | babel-core@^6.18.0, babel-core@^6.26.0:
194 | version "6.26.3"
195 | resolved "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207"
196 | dependencies:
197 | babel-code-frame "^6.26.0"
198 | babel-generator "^6.26.0"
199 | babel-helpers "^6.24.1"
200 | babel-messages "^6.23.0"
201 | babel-register "^6.26.0"
202 | babel-runtime "^6.26.0"
203 | babel-template "^6.26.0"
204 | babel-traverse "^6.26.0"
205 | babel-types "^6.26.0"
206 | babylon "^6.18.0"
207 | convert-source-map "^1.5.1"
208 | debug "^2.6.9"
209 | json5 "^0.5.1"
210 | lodash "^4.17.4"
211 | minimatch "^3.0.4"
212 | path-is-absolute "^1.0.1"
213 | private "^0.1.8"
214 | slash "^1.0.0"
215 | source-map "^0.5.7"
216 |
217 | babel-generator@^6.18.0, babel-generator@^6.26.0:
218 | version "6.26.1"
219 | resolved "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
220 | dependencies:
221 | babel-messages "^6.23.0"
222 | babel-runtime "^6.26.0"
223 | babel-types "^6.26.0"
224 | detect-indent "^4.0.0"
225 | jsesc "^1.3.0"
226 | lodash "^4.17.4"
227 | source-map "^0.5.7"
228 | trim-right "^1.0.1"
229 |
230 | babel-helper-bindify-decorators@^6.24.1:
231 | version "6.24.1"
232 | resolved "https://registry.npmjs.org/babel-helper-bindify-decorators/-/babel-helper-bindify-decorators-6.24.1.tgz#14c19e5f142d7b47f19a52431e52b1ccbc40a330"
233 | dependencies:
234 | babel-runtime "^6.22.0"
235 | babel-traverse "^6.24.1"
236 | babel-types "^6.24.1"
237 |
238 | babel-helper-builder-binary-assignment-operator-visitor@^6.24.1:
239 | version "6.24.1"
240 | resolved "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664"
241 | dependencies:
242 | babel-helper-explode-assignable-expression "^6.24.1"
243 | babel-runtime "^6.22.0"
244 | babel-types "^6.24.1"
245 |
246 | babel-helper-builder-react-jsx@^6.24.1:
247 | version "6.26.0"
248 | resolved "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz#39ff8313b75c8b65dceff1f31d383e0ff2a408a0"
249 | dependencies:
250 | babel-runtime "^6.26.0"
251 | babel-types "^6.26.0"
252 | esutils "^2.0.2"
253 |
254 | babel-helper-call-delegate@^6.24.1:
255 | version "6.24.1"
256 | resolved "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d"
257 | dependencies:
258 | babel-helper-hoist-variables "^6.24.1"
259 | babel-runtime "^6.22.0"
260 | babel-traverse "^6.24.1"
261 | babel-types "^6.24.1"
262 |
263 | babel-helper-define-map@^6.24.1:
264 | version "6.26.0"
265 | resolved "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f"
266 | dependencies:
267 | babel-helper-function-name "^6.24.1"
268 | babel-runtime "^6.26.0"
269 | babel-types "^6.26.0"
270 | lodash "^4.17.4"
271 |
272 | babel-helper-explode-assignable-expression@^6.24.1:
273 | version "6.24.1"
274 | resolved "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa"
275 | dependencies:
276 | babel-runtime "^6.22.0"
277 | babel-traverse "^6.24.1"
278 | babel-types "^6.24.1"
279 |
280 | babel-helper-explode-class@^6.24.1:
281 | version "6.24.1"
282 | resolved "https://registry.npmjs.org/babel-helper-explode-class/-/babel-helper-explode-class-6.24.1.tgz#7dc2a3910dee007056e1e31d640ced3d54eaa9eb"
283 | dependencies:
284 | babel-helper-bindify-decorators "^6.24.1"
285 | babel-runtime "^6.22.0"
286 | babel-traverse "^6.24.1"
287 | babel-types "^6.24.1"
288 |
289 | babel-helper-function-name@^6.24.1:
290 | version "6.24.1"
291 | resolved "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9"
292 | dependencies:
293 | babel-helper-get-function-arity "^6.24.1"
294 | babel-runtime "^6.22.0"
295 | babel-template "^6.24.1"
296 | babel-traverse "^6.24.1"
297 | babel-types "^6.24.1"
298 |
299 | babel-helper-get-function-arity@^6.24.1:
300 | version "6.24.1"
301 | resolved "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d"
302 | dependencies:
303 | babel-runtime "^6.22.0"
304 | babel-types "^6.24.1"
305 |
306 | babel-helper-hoist-variables@^6.24.1:
307 | version "6.24.1"
308 | resolved "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76"
309 | dependencies:
310 | babel-runtime "^6.22.0"
311 | babel-types "^6.24.1"
312 |
313 | babel-helper-optimise-call-expression@^6.24.1:
314 | version "6.24.1"
315 | resolved "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257"
316 | dependencies:
317 | babel-runtime "^6.22.0"
318 | babel-types "^6.24.1"
319 |
320 | babel-helper-regex@^6.24.1:
321 | version "6.26.0"
322 | resolved "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72"
323 | dependencies:
324 | babel-runtime "^6.26.0"
325 | babel-types "^6.26.0"
326 | lodash "^4.17.4"
327 |
328 | babel-helper-remap-async-to-generator@^6.24.1:
329 | version "6.24.1"
330 | resolved "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b"
331 | dependencies:
332 | babel-helper-function-name "^6.24.1"
333 | babel-runtime "^6.22.0"
334 | babel-template "^6.24.1"
335 | babel-traverse "^6.24.1"
336 | babel-types "^6.24.1"
337 |
338 | babel-helper-replace-supers@^6.24.1:
339 | version "6.24.1"
340 | resolved "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"
341 | dependencies:
342 | babel-helper-optimise-call-expression "^6.24.1"
343 | babel-messages "^6.23.0"
344 | babel-runtime "^6.22.0"
345 | babel-template "^6.24.1"
346 | babel-traverse "^6.24.1"
347 | babel-types "^6.24.1"
348 |
349 | babel-helpers@^6.16.0, babel-helpers@^6.24.1:
350 | version "6.24.1"
351 | resolved "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
352 | dependencies:
353 | babel-runtime "^6.22.0"
354 | babel-template "^6.24.1"
355 |
356 | babel-loader@6.2.7:
357 | version "6.2.7"
358 | resolved "https://registry.npmjs.org/babel-loader/-/babel-loader-6.2.7.tgz#16fdbf64328030dc5a606827d389c8b92a2a8032"
359 | dependencies:
360 | find-cache-dir "^0.1.1"
361 | loader-utils "^0.2.11"
362 | mkdirp "^0.5.1"
363 | object-assign "^4.0.1"
364 |
365 | babel-messages@^6.23.0, babel-messages@^6.8.0:
366 | version "6.23.0"
367 | resolved "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
368 | dependencies:
369 | babel-runtime "^6.22.0"
370 |
371 | babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.3.13:
372 | version "6.22.0"
373 | resolved "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a"
374 | dependencies:
375 | babel-runtime "^6.22.0"
376 |
377 | babel-plugin-syntax-async-functions@^6.8.0:
378 | version "6.13.0"
379 | resolved "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95"
380 |
381 | babel-plugin-syntax-async-generators@^6.5.0:
382 | version "6.13.0"
383 | resolved "https://registry.npmjs.org/babel-plugin-syntax-async-generators/-/babel-plugin-syntax-async-generators-6.13.0.tgz#6bc963ebb16eccbae6b92b596eb7f35c342a8b9a"
384 |
385 | babel-plugin-syntax-class-properties@^6.8.0:
386 | version "6.13.0"
387 | resolved "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz#d7eb23b79a317f8543962c505b827c7d6cac27de"
388 |
389 | babel-plugin-syntax-decorators@^6.13.0:
390 | version "6.13.0"
391 | resolved "https://registry.npmjs.org/babel-plugin-syntax-decorators/-/babel-plugin-syntax-decorators-6.13.0.tgz#312563b4dbde3cc806cee3e416cceeaddd11ac0b"
392 |
393 | babel-plugin-syntax-dynamic-import@^6.18.0:
394 | version "6.18.0"
395 | resolved "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz#8d6a26229c83745a9982a441051572caa179b1da"
396 |
397 | babel-plugin-syntax-exponentiation-operator@^6.8.0:
398 | version "6.13.0"
399 | resolved "https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de"
400 |
401 | babel-plugin-syntax-flow@^6.18.0, babel-plugin-syntax-flow@^6.3.13:
402 | version "6.18.0"
403 | resolved "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz#4c3ab20a2af26aa20cd25995c398c4eb70310c8d"
404 |
405 | babel-plugin-syntax-jsx@^6.3.13, babel-plugin-syntax-jsx@^6.8.0:
406 | version "6.18.0"
407 | resolved "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
408 |
409 | babel-plugin-syntax-object-rest-spread@^6.8.0:
410 | version "6.13.0"
411 | resolved "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
412 |
413 | babel-plugin-syntax-trailing-function-commas@^6.22.0:
414 | version "6.22.0"
415 | resolved "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3"
416 |
417 | babel-plugin-transform-async-generator-functions@^6.24.1:
418 | version "6.24.1"
419 | resolved "https://registry.npmjs.org/babel-plugin-transform-async-generator-functions/-/babel-plugin-transform-async-generator-functions-6.24.1.tgz#f058900145fd3e9907a6ddf28da59f215258a5db"
420 | dependencies:
421 | babel-helper-remap-async-to-generator "^6.24.1"
422 | babel-plugin-syntax-async-generators "^6.5.0"
423 | babel-runtime "^6.22.0"
424 |
425 | babel-plugin-transform-async-to-generator@^6.24.1:
426 | version "6.24.1"
427 | resolved "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"
428 | dependencies:
429 | babel-helper-remap-async-to-generator "^6.24.1"
430 | babel-plugin-syntax-async-functions "^6.8.0"
431 | babel-runtime "^6.22.0"
432 |
433 | babel-plugin-transform-class-properties@^6.24.1:
434 | version "6.24.1"
435 | resolved "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz#6a79763ea61d33d36f37b611aa9def81a81b46ac"
436 | dependencies:
437 | babel-helper-function-name "^6.24.1"
438 | babel-plugin-syntax-class-properties "^6.8.0"
439 | babel-runtime "^6.22.0"
440 | babel-template "^6.24.1"
441 |
442 | babel-plugin-transform-decorators@^6.24.1:
443 | version "6.24.1"
444 | resolved "https://registry.npmjs.org/babel-plugin-transform-decorators/-/babel-plugin-transform-decorators-6.24.1.tgz#788013d8f8c6b5222bdf7b344390dfd77569e24d"
445 | dependencies:
446 | babel-helper-explode-class "^6.24.1"
447 | babel-plugin-syntax-decorators "^6.13.0"
448 | babel-runtime "^6.22.0"
449 | babel-template "^6.24.1"
450 | babel-types "^6.24.1"
451 |
452 | babel-plugin-transform-es2015-arrow-functions@^6.22.0, babel-plugin-transform-es2015-arrow-functions@^6.3.13:
453 | version "6.22.0"
454 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221"
455 | dependencies:
456 | babel-runtime "^6.22.0"
457 |
458 | babel-plugin-transform-es2015-block-scoped-functions@^6.22.0, babel-plugin-transform-es2015-block-scoped-functions@^6.3.13:
459 | version "6.22.0"
460 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141"
461 | dependencies:
462 | babel-runtime "^6.22.0"
463 |
464 | babel-plugin-transform-es2015-block-scoping@^6.18.0, babel-plugin-transform-es2015-block-scoping@^6.24.1:
465 | version "6.26.0"
466 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
467 | dependencies:
468 | babel-runtime "^6.26.0"
469 | babel-template "^6.26.0"
470 | babel-traverse "^6.26.0"
471 | babel-types "^6.26.0"
472 | lodash "^4.17.4"
473 |
474 | babel-plugin-transform-es2015-classes@^6.18.0, babel-plugin-transform-es2015-classes@^6.24.1:
475 | version "6.24.1"
476 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"
477 | dependencies:
478 | babel-helper-define-map "^6.24.1"
479 | babel-helper-function-name "^6.24.1"
480 | babel-helper-optimise-call-expression "^6.24.1"
481 | babel-helper-replace-supers "^6.24.1"
482 | babel-messages "^6.23.0"
483 | babel-runtime "^6.22.0"
484 | babel-template "^6.24.1"
485 | babel-traverse "^6.24.1"
486 | babel-types "^6.24.1"
487 |
488 | babel-plugin-transform-es2015-computed-properties@^6.24.1, babel-plugin-transform-es2015-computed-properties@^6.3.13:
489 | version "6.24.1"
490 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3"
491 | dependencies:
492 | babel-runtime "^6.22.0"
493 | babel-template "^6.24.1"
494 |
495 | babel-plugin-transform-es2015-destructuring@^6.18.0, babel-plugin-transform-es2015-destructuring@^6.22.0:
496 | version "6.23.0"
497 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d"
498 | dependencies:
499 | babel-runtime "^6.22.0"
500 |
501 | babel-plugin-transform-es2015-duplicate-keys@^6.24.1, babel-plugin-transform-es2015-duplicate-keys@^6.6.0:
502 | version "6.24.1"
503 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e"
504 | dependencies:
505 | babel-runtime "^6.22.0"
506 | babel-types "^6.24.1"
507 |
508 | babel-plugin-transform-es2015-for-of@^6.18.0, babel-plugin-transform-es2015-for-of@^6.22.0:
509 | version "6.23.0"
510 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691"
511 | dependencies:
512 | babel-runtime "^6.22.0"
513 |
514 | babel-plugin-transform-es2015-function-name@^6.24.1, babel-plugin-transform-es2015-function-name@^6.9.0:
515 | version "6.24.1"
516 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"
517 | dependencies:
518 | babel-helper-function-name "^6.24.1"
519 | babel-runtime "^6.22.0"
520 | babel-types "^6.24.1"
521 |
522 | babel-plugin-transform-es2015-literals@^6.22.0, babel-plugin-transform-es2015-literals@^6.3.13:
523 | version "6.22.0"
524 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e"
525 | dependencies:
526 | babel-runtime "^6.22.0"
527 |
528 | babel-plugin-transform-es2015-modules-amd@^6.18.0, babel-plugin-transform-es2015-modules-amd@^6.24.1:
529 | version "6.24.1"
530 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154"
531 | dependencies:
532 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
533 | babel-runtime "^6.22.0"
534 | babel-template "^6.24.1"
535 |
536 | babel-plugin-transform-es2015-modules-commonjs@^6.18.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1:
537 | version "6.26.2"
538 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3"
539 | dependencies:
540 | babel-plugin-transform-strict-mode "^6.24.1"
541 | babel-runtime "^6.26.0"
542 | babel-template "^6.26.0"
543 | babel-types "^6.26.0"
544 |
545 | babel-plugin-transform-es2015-modules-systemjs@^6.18.0, babel-plugin-transform-es2015-modules-systemjs@^6.24.1:
546 | version "6.24.1"
547 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23"
548 | dependencies:
549 | babel-helper-hoist-variables "^6.24.1"
550 | babel-runtime "^6.22.0"
551 | babel-template "^6.24.1"
552 |
553 | babel-plugin-transform-es2015-modules-umd@^6.18.0, babel-plugin-transform-es2015-modules-umd@^6.24.1:
554 | version "6.24.1"
555 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468"
556 | dependencies:
557 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
558 | babel-runtime "^6.22.0"
559 | babel-template "^6.24.1"
560 |
561 | babel-plugin-transform-es2015-object-super@^6.24.1, babel-plugin-transform-es2015-object-super@^6.3.13:
562 | version "6.24.1"
563 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d"
564 | dependencies:
565 | babel-helper-replace-supers "^6.24.1"
566 | babel-runtime "^6.22.0"
567 |
568 | babel-plugin-transform-es2015-parameters@^6.18.0, babel-plugin-transform-es2015-parameters@^6.24.1:
569 | version "6.24.1"
570 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b"
571 | dependencies:
572 | babel-helper-call-delegate "^6.24.1"
573 | babel-helper-get-function-arity "^6.24.1"
574 | babel-runtime "^6.22.0"
575 | babel-template "^6.24.1"
576 | babel-traverse "^6.24.1"
577 | babel-types "^6.24.1"
578 |
579 | babel-plugin-transform-es2015-shorthand-properties@^6.18.0, babel-plugin-transform-es2015-shorthand-properties@^6.24.1:
580 | version "6.24.1"
581 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0"
582 | dependencies:
583 | babel-runtime "^6.22.0"
584 | babel-types "^6.24.1"
585 |
586 | babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.3.13:
587 | version "6.22.0"
588 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"
589 | dependencies:
590 | babel-runtime "^6.22.0"
591 |
592 | babel-plugin-transform-es2015-sticky-regex@^6.24.1, babel-plugin-transform-es2015-sticky-regex@^6.3.13:
593 | version "6.24.1"
594 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"
595 | dependencies:
596 | babel-helper-regex "^6.24.1"
597 | babel-runtime "^6.22.0"
598 | babel-types "^6.24.1"
599 |
600 | babel-plugin-transform-es2015-template-literals@^6.22.0, babel-plugin-transform-es2015-template-literals@^6.6.0:
601 | version "6.22.0"
602 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"
603 | dependencies:
604 | babel-runtime "^6.22.0"
605 |
606 | babel-plugin-transform-es2015-typeof-symbol@^6.18.0, babel-plugin-transform-es2015-typeof-symbol@^6.22.0:
607 | version "6.23.0"
608 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372"
609 | dependencies:
610 | babel-runtime "^6.22.0"
611 |
612 | babel-plugin-transform-es2015-unicode-regex@^6.24.1, babel-plugin-transform-es2015-unicode-regex@^6.3.13:
613 | version "6.24.1"
614 | resolved "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9"
615 | dependencies:
616 | babel-helper-regex "^6.24.1"
617 | babel-runtime "^6.22.0"
618 | regexpu-core "^2.0.0"
619 |
620 | babel-plugin-transform-exponentiation-operator@^6.24.1:
621 | version "6.24.1"
622 | resolved "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"
623 | dependencies:
624 | babel-helper-builder-binary-assignment-operator-visitor "^6.24.1"
625 | babel-plugin-syntax-exponentiation-operator "^6.8.0"
626 | babel-runtime "^6.22.0"
627 |
628 | babel-plugin-transform-flow-strip-types@^6.3.13:
629 | version "6.22.0"
630 | resolved "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz#84cb672935d43714fdc32bce84568d87441cf7cf"
631 | dependencies:
632 | babel-plugin-syntax-flow "^6.18.0"
633 | babel-runtime "^6.22.0"
634 |
635 | babel-plugin-transform-object-rest-spread@^6.22.0:
636 | version "6.26.0"
637 | resolved "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
638 | dependencies:
639 | babel-plugin-syntax-object-rest-spread "^6.8.0"
640 | babel-runtime "^6.26.0"
641 |
642 | babel-plugin-transform-react-display-name@^6.3.13:
643 | version "6.25.0"
644 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz#67e2bf1f1e9c93ab08db96792e05392bf2cc28d1"
645 | dependencies:
646 | babel-runtime "^6.22.0"
647 |
648 | babel-plugin-transform-react-jsx-self@^6.11.0:
649 | version "6.22.0"
650 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-jsx-self/-/babel-plugin-transform-react-jsx-self-6.22.0.tgz#df6d80a9da2612a121e6ddd7558bcbecf06e636e"
651 | dependencies:
652 | babel-plugin-syntax-jsx "^6.8.0"
653 | babel-runtime "^6.22.0"
654 |
655 | babel-plugin-transform-react-jsx-source@^6.3.13:
656 | version "6.22.0"
657 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz#66ac12153f5cd2d17b3c19268f4bf0197f44ecd6"
658 | dependencies:
659 | babel-plugin-syntax-jsx "^6.8.0"
660 | babel-runtime "^6.22.0"
661 |
662 | babel-plugin-transform-react-jsx@^6.3.13:
663 | version "6.24.1"
664 | resolved "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz#840a028e7df460dfc3a2d29f0c0d91f6376e66a3"
665 | dependencies:
666 | babel-helper-builder-react-jsx "^6.24.1"
667 | babel-plugin-syntax-jsx "^6.8.0"
668 | babel-runtime "^6.22.0"
669 |
670 | babel-plugin-transform-regenerator@^6.16.0, babel-plugin-transform-regenerator@^6.24.1:
671 | version "6.26.0"
672 | resolved "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"
673 | dependencies:
674 | regenerator-transform "^0.10.0"
675 |
676 | babel-plugin-transform-strict-mode@^6.24.1:
677 | version "6.24.1"
678 | resolved "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758"
679 | dependencies:
680 | babel-runtime "^6.22.0"
681 | babel-types "^6.24.1"
682 |
683 | babel-polyfill@^6.16.0:
684 | version "6.26.0"
685 | resolved "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153"
686 | dependencies:
687 | babel-runtime "^6.26.0"
688 | core-js "^2.5.0"
689 | regenerator-runtime "^0.10.5"
690 |
691 | babel-preset-es2015@6.18.0:
692 | version "6.18.0"
693 | resolved "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.18.0.tgz#b8c70df84ec948c43dcf2bf770e988eb7da88312"
694 | dependencies:
695 | babel-plugin-check-es2015-constants "^6.3.13"
696 | babel-plugin-transform-es2015-arrow-functions "^6.3.13"
697 | babel-plugin-transform-es2015-block-scoped-functions "^6.3.13"
698 | babel-plugin-transform-es2015-block-scoping "^6.18.0"
699 | babel-plugin-transform-es2015-classes "^6.18.0"
700 | babel-plugin-transform-es2015-computed-properties "^6.3.13"
701 | babel-plugin-transform-es2015-destructuring "^6.18.0"
702 | babel-plugin-transform-es2015-duplicate-keys "^6.6.0"
703 | babel-plugin-transform-es2015-for-of "^6.18.0"
704 | babel-plugin-transform-es2015-function-name "^6.9.0"
705 | babel-plugin-transform-es2015-literals "^6.3.13"
706 | babel-plugin-transform-es2015-modules-amd "^6.18.0"
707 | babel-plugin-transform-es2015-modules-commonjs "^6.18.0"
708 | babel-plugin-transform-es2015-modules-systemjs "^6.18.0"
709 | babel-plugin-transform-es2015-modules-umd "^6.18.0"
710 | babel-plugin-transform-es2015-object-super "^6.3.13"
711 | babel-plugin-transform-es2015-parameters "^6.18.0"
712 | babel-plugin-transform-es2015-shorthand-properties "^6.18.0"
713 | babel-plugin-transform-es2015-spread "^6.3.13"
714 | babel-plugin-transform-es2015-sticky-regex "^6.3.13"
715 | babel-plugin-transform-es2015-template-literals "^6.6.0"
716 | babel-plugin-transform-es2015-typeof-symbol "^6.18.0"
717 | babel-plugin-transform-es2015-unicode-regex "^6.3.13"
718 | babel-plugin-transform-regenerator "^6.16.0"
719 |
720 | babel-preset-es2015@^6.16.0:
721 | version "6.24.1"
722 | resolved "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz#d44050d6bc2c9feea702aaf38d727a0210538939"
723 | dependencies:
724 | babel-plugin-check-es2015-constants "^6.22.0"
725 | babel-plugin-transform-es2015-arrow-functions "^6.22.0"
726 | babel-plugin-transform-es2015-block-scoped-functions "^6.22.0"
727 | babel-plugin-transform-es2015-block-scoping "^6.24.1"
728 | babel-plugin-transform-es2015-classes "^6.24.1"
729 | babel-plugin-transform-es2015-computed-properties "^6.24.1"
730 | babel-plugin-transform-es2015-destructuring "^6.22.0"
731 | babel-plugin-transform-es2015-duplicate-keys "^6.24.1"
732 | babel-plugin-transform-es2015-for-of "^6.22.0"
733 | babel-plugin-transform-es2015-function-name "^6.24.1"
734 | babel-plugin-transform-es2015-literals "^6.22.0"
735 | babel-plugin-transform-es2015-modules-amd "^6.24.1"
736 | babel-plugin-transform-es2015-modules-commonjs "^6.24.1"
737 | babel-plugin-transform-es2015-modules-systemjs "^6.24.1"
738 | babel-plugin-transform-es2015-modules-umd "^6.24.1"
739 | babel-plugin-transform-es2015-object-super "^6.24.1"
740 | babel-plugin-transform-es2015-parameters "^6.24.1"
741 | babel-plugin-transform-es2015-shorthand-properties "^6.24.1"
742 | babel-plugin-transform-es2015-spread "^6.22.0"
743 | babel-plugin-transform-es2015-sticky-regex "^6.24.1"
744 | babel-plugin-transform-es2015-template-literals "^6.22.0"
745 | babel-plugin-transform-es2015-typeof-symbol "^6.22.0"
746 | babel-plugin-transform-es2015-unicode-regex "^6.24.1"
747 | babel-plugin-transform-regenerator "^6.24.1"
748 |
749 | babel-preset-es2016@^6.16.0:
750 | version "6.24.1"
751 | resolved "https://registry.npmjs.org/babel-preset-es2016/-/babel-preset-es2016-6.24.1.tgz#f900bf93e2ebc0d276df9b8ab59724ebfd959f8b"
752 | dependencies:
753 | babel-plugin-transform-exponentiation-operator "^6.24.1"
754 |
755 | babel-preset-es2017@^6.16.0:
756 | version "6.24.1"
757 | resolved "https://registry.npmjs.org/babel-preset-es2017/-/babel-preset-es2017-6.24.1.tgz#597beadfb9f7f208bcfd8a12e9b2b29b8b2f14d1"
758 | dependencies:
759 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
760 | babel-plugin-transform-async-to-generator "^6.24.1"
761 |
762 | babel-preset-latest@6.16.0:
763 | version "6.16.0"
764 | resolved "https://registry.npmjs.org/babel-preset-latest/-/babel-preset-latest-6.16.0.tgz#5b87e19e250bb1213f13af4ec9dc7a51d53f388d"
765 | dependencies:
766 | babel-preset-es2015 "^6.16.0"
767 | babel-preset-es2016 "^6.16.0"
768 | babel-preset-es2017 "^6.16.0"
769 |
770 | babel-preset-react@6.16.0:
771 | version "6.16.0"
772 | resolved "https://registry.npmjs.org/babel-preset-react/-/babel-preset-react-6.16.0.tgz#aa117d60de0928607e343c4828906e4661824316"
773 | dependencies:
774 | babel-plugin-syntax-flow "^6.3.13"
775 | babel-plugin-syntax-jsx "^6.3.13"
776 | babel-plugin-transform-flow-strip-types "^6.3.13"
777 | babel-plugin-transform-react-display-name "^6.3.13"
778 | babel-plugin-transform-react-jsx "^6.3.13"
779 | babel-plugin-transform-react-jsx-self "^6.11.0"
780 | babel-plugin-transform-react-jsx-source "^6.3.13"
781 |
782 | babel-preset-stage-2@^6.24.1:
783 | version "6.24.1"
784 | resolved "https://registry.npmjs.org/babel-preset-stage-2/-/babel-preset-stage-2-6.24.1.tgz#d9e2960fb3d71187f0e64eec62bc07767219bdc1"
785 | dependencies:
786 | babel-plugin-syntax-dynamic-import "^6.18.0"
787 | babel-plugin-transform-class-properties "^6.24.1"
788 | babel-plugin-transform-decorators "^6.24.1"
789 | babel-preset-stage-3 "^6.24.1"
790 |
791 | babel-preset-stage-3@^6.24.1:
792 | version "6.24.1"
793 | resolved "https://registry.npmjs.org/babel-preset-stage-3/-/babel-preset-stage-3-6.24.1.tgz#836ada0a9e7a7fa37cb138fb9326f87934a48395"
794 | dependencies:
795 | babel-plugin-syntax-trailing-function-commas "^6.22.0"
796 | babel-plugin-transform-async-generator-functions "^6.24.1"
797 | babel-plugin-transform-async-to-generator "^6.24.1"
798 | babel-plugin-transform-exponentiation-operator "^6.24.1"
799 | babel-plugin-transform-object-rest-spread "^6.22.0"
800 |
801 | babel-register@^6.18.0, babel-register@^6.26.0:
802 | version "6.26.0"
803 | resolved "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
804 | dependencies:
805 | babel-core "^6.26.0"
806 | babel-runtime "^6.26.0"
807 | core-js "^2.5.0"
808 | home-or-tmp "^2.0.0"
809 | lodash "^4.17.4"
810 | mkdirp "^0.5.1"
811 | source-map-support "^0.4.15"
812 |
813 | babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.0, babel-runtime@^6.9.1:
814 | version "6.26.0"
815 | resolved "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
816 | dependencies:
817 | core-js "^2.4.0"
818 | regenerator-runtime "^0.11.0"
819 |
820 | babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
821 | version "6.26.0"
822 | resolved "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
823 | dependencies:
824 | babel-runtime "^6.26.0"
825 | babel-traverse "^6.26.0"
826 | babel-types "^6.26.0"
827 | babylon "^6.18.0"
828 | lodash "^4.17.4"
829 |
830 | babel-traverse@^6.18.0, babel-traverse@^6.24.1, babel-traverse@^6.26.0:
831 | version "6.26.0"
832 | resolved "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
833 | dependencies:
834 | babel-code-frame "^6.26.0"
835 | babel-messages "^6.23.0"
836 | babel-runtime "^6.26.0"
837 | babel-types "^6.26.0"
838 | babylon "^6.18.0"
839 | debug "^2.6.8"
840 | globals "^9.18.0"
841 | invariant "^2.2.2"
842 | lodash "^4.17.4"
843 |
844 | babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0:
845 | version "6.26.0"
846 | resolved "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
847 | dependencies:
848 | babel-runtime "^6.26.0"
849 | esutils "^2.0.2"
850 | lodash "^4.17.4"
851 | to-fast-properties "^1.0.3"
852 |
853 | babylon@^6.11.0, babylon@^6.18.0:
854 | version "6.18.0"
855 | resolved "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
856 |
857 | backo2@1.0.2:
858 | version "1.0.2"
859 | resolved "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947"
860 |
861 | balanced-match@^0.4.2:
862 | version "0.4.2"
863 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
864 |
865 | balanced-match@^1.0.0:
866 | version "1.0.0"
867 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
868 |
869 | base64-arraybuffer@0.1.5:
870 | version "0.1.5"
871 | resolved "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8"
872 |
873 | base64-js@^1.0.2:
874 | version "1.3.0"
875 | resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3"
876 |
877 | base64id@1.0.0:
878 | version "1.0.0"
879 | resolved "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6"
880 |
881 | batch@0.6.1:
882 | version "0.6.1"
883 | resolved "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
884 |
885 | better-assert@~1.0.0:
886 | version "1.0.2"
887 | resolved "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522"
888 | dependencies:
889 | callsite "1.0.0"
890 |
891 | big.js@^3.1.3:
892 | version "3.2.0"
893 | resolved "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
894 |
895 | binary-extensions@^1.0.0:
896 | version "1.11.0"
897 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
898 |
899 | blob@0.0.4:
900 | version "0.0.4"
901 | resolved "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz#bcf13052ca54463f30f9fc7e95b9a47630a94921"
902 |
903 | body-parser@1.18.2:
904 | version "1.18.2"
905 | resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
906 | dependencies:
907 | bytes "3.0.0"
908 | content-type "~1.0.4"
909 | debug "2.6.9"
910 | depd "~1.1.1"
911 | http-errors "~1.6.2"
912 | iconv-lite "0.4.19"
913 | on-finished "~2.3.0"
914 | qs "6.5.1"
915 | raw-body "2.3.2"
916 | type-is "~1.6.15"
917 |
918 | brace-expansion@^1.1.7:
919 | version "1.1.11"
920 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
921 | dependencies:
922 | balanced-match "^1.0.0"
923 | concat-map "0.0.1"
924 |
925 | braces@^1.8.2:
926 | version "1.8.5"
927 | resolved "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
928 | dependencies:
929 | expand-range "^1.8.1"
930 | preserve "^0.2.0"
931 | repeat-element "^1.1.2"
932 |
933 | browserify-zlib@~0.1.4:
934 | version "0.1.4"
935 | resolved "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz#bb35f8a519f600e0fa6b8485241c979d0141fb2d"
936 | dependencies:
937 | pako "~0.2.0"
938 |
939 | browserslist@^1.3.6, browserslist@^1.5.2, browserslist@^1.7.6:
940 | version "1.7.7"
941 | resolved "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9"
942 | dependencies:
943 | caniuse-db "^1.0.30000639"
944 | electron-to-chromium "^1.2.7"
945 |
946 | buffer@^4.9.0:
947 | version "4.9.1"
948 | resolved "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298"
949 | dependencies:
950 | base64-js "^1.0.2"
951 | ieee754 "^1.1.4"
952 | isarray "^1.0.0"
953 |
954 | bytes@3.0.0:
955 | version "3.0.0"
956 | resolved "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
957 |
958 | callsite@1.0.0:
959 | version "1.0.0"
960 | resolved "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20"
961 |
962 | camelcase@^1.0.2:
963 | version "1.2.1"
964 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
965 |
966 | caniuse-api@^1.5.2:
967 | version "1.6.1"
968 | resolved "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz#b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"
969 | dependencies:
970 | browserslist "^1.3.6"
971 | caniuse-db "^1.0.30000529"
972 | lodash.memoize "^4.1.2"
973 | lodash.uniq "^4.5.0"
974 |
975 | caniuse-db@^1.0.30000529, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639:
976 | version "1.0.30000876"
977 | resolved "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000876.tgz#0cbd78ad84900196982e5145c26170f6d6a93fd7"
978 |
979 | chalk@^1.1.3:
980 | version "1.1.3"
981 | resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
982 | dependencies:
983 | ansi-styles "^2.2.1"
984 | escape-string-regexp "^1.0.2"
985 | has-ansi "^2.0.0"
986 | strip-ansi "^3.0.0"
987 | supports-color "^2.0.0"
988 |
989 | chalk@^2.4.1:
990 | version "2.4.1"
991 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e"
992 | dependencies:
993 | ansi-styles "^3.2.1"
994 | escape-string-regexp "^1.0.5"
995 | supports-color "^5.3.0"
996 |
997 | chokidar@^1.0.0:
998 | version "1.7.0"
999 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468"
1000 | dependencies:
1001 | anymatch "^1.3.0"
1002 | async-each "^1.0.0"
1003 | glob-parent "^2.0.0"
1004 | inherits "^2.0.1"
1005 | is-binary-path "^1.0.0"
1006 | is-glob "^2.0.0"
1007 | path-is-absolute "^1.0.0"
1008 | readdirp "^2.0.0"
1009 | optionalDependencies:
1010 | fsevents "^1.0.0"
1011 |
1012 | chownr@^1.0.1:
1013 | version "1.0.1"
1014 | resolved "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz#e2a75042a9551908bebd25b8523d5f9769d79181"
1015 |
1016 | clap@^1.0.9:
1017 | version "1.2.3"
1018 | resolved "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz#4f36745b32008492557f46412d66d50cb99bce51"
1019 | dependencies:
1020 | chalk "^1.1.3"
1021 |
1022 | clone@^1.0.2:
1023 | version "1.0.4"
1024 | resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
1025 |
1026 | coa@~1.0.1:
1027 | version "1.0.4"
1028 | resolved "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz#a9ef153660d6a86a8bdec0289a5c684d217432fd"
1029 | dependencies:
1030 | q "^1.1.2"
1031 |
1032 | code-point-at@^1.0.0:
1033 | version "1.1.0"
1034 | resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
1035 |
1036 | color-convert@^1.3.0, color-convert@^1.9.0:
1037 | version "1.9.2"
1038 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz#49881b8fba67df12a96bdf3f56c0aab9e7913147"
1039 | dependencies:
1040 | color-name "1.1.1"
1041 |
1042 | color-name@1.1.1:
1043 | version "1.1.1"
1044 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz#4b1415304cf50028ea81643643bd82ea05803689"
1045 |
1046 | color-name@^1.0.0:
1047 | version "1.1.3"
1048 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
1049 |
1050 | color-string@^0.3.0:
1051 | version "0.3.0"
1052 | resolved "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz#27d46fb67025c5c2fa25993bfbf579e47841b991"
1053 | dependencies:
1054 | color-name "^1.0.0"
1055 |
1056 | color@^0.11.0:
1057 | version "0.11.4"
1058 | resolved "https://registry.npmjs.org/color/-/color-0.11.4.tgz#6d7b5c74fb65e841cd48792ad1ed5e07b904d764"
1059 | dependencies:
1060 | clone "^1.0.2"
1061 | color-convert "^1.3.0"
1062 | color-string "^0.3.0"
1063 |
1064 | colormin@^1.0.5:
1065 | version "1.1.2"
1066 | resolved "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz#ea2f7420a72b96881a38aae59ec124a6f7298133"
1067 | dependencies:
1068 | color "^0.11.0"
1069 | css-color-names "0.0.4"
1070 | has "^1.0.1"
1071 |
1072 | colors@~1.1.2:
1073 | version "1.1.2"
1074 | resolved "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
1075 |
1076 | commander@^2.8.1:
1077 | version "2.17.1"
1078 | resolved "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf"
1079 |
1080 | commondir@^1.0.1:
1081 | version "1.0.1"
1082 | resolved "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
1083 |
1084 | component-bind@1.0.0:
1085 | version "1.0.0"
1086 | resolved "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"
1087 |
1088 | component-emitter@1.1.2:
1089 | version "1.1.2"
1090 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz#296594f2753daa63996d2af08d15a95116c9aec3"
1091 |
1092 | component-emitter@1.2.1:
1093 | version "1.2.1"
1094 | resolved "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
1095 |
1096 | component-inherit@0.0.3:
1097 | version "0.0.3"
1098 | resolved "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
1099 |
1100 | compressible@~2.0.14:
1101 | version "2.0.14"
1102 | resolved "https://registry.npmjs.org/compressible/-/compressible-2.0.14.tgz#326c5f507fbb055f54116782b969a81b67a29da7"
1103 | dependencies:
1104 | mime-db ">= 1.34.0 < 2"
1105 |
1106 | compression@^1.5.2:
1107 | version "1.7.3"
1108 | resolved "https://registry.npmjs.org/compression/-/compression-1.7.3.tgz#27e0e176aaf260f7f2c2813c3e440adb9f1993db"
1109 | dependencies:
1110 | accepts "~1.3.5"
1111 | bytes "3.0.0"
1112 | compressible "~2.0.14"
1113 | debug "2.6.9"
1114 | on-headers "~1.0.1"
1115 | safe-buffer "5.1.2"
1116 | vary "~1.1.2"
1117 |
1118 | concat-map@0.0.1:
1119 | version "0.0.1"
1120 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1121 |
1122 | connect-history-api-fallback@1.1.0:
1123 | version "1.1.0"
1124 | resolved "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.1.0.tgz#5a6dee82d9a648cb29131d3f9dd400ffa4593742"
1125 |
1126 | console-browserify@^1.1.0:
1127 | version "1.1.0"
1128 | resolved "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
1129 | dependencies:
1130 | date-now "^0.1.4"
1131 |
1132 | console-control-strings@^1.0.0, console-control-strings@~1.1.0:
1133 | version "1.1.0"
1134 | resolved "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
1135 |
1136 | constants-browserify@0.0.1:
1137 | version "0.0.1"
1138 | resolved "https://registry.npmjs.org/constants-browserify/-/constants-browserify-0.0.1.tgz#92577db527ba6c4cf0a4568d84bc031f441e21f2"
1139 |
1140 | content-disposition@0.5.2:
1141 | version "0.5.2"
1142 | resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
1143 |
1144 | content-type@~1.0.4:
1145 | version "1.0.4"
1146 | resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
1147 |
1148 | convert-source-map@^1.1.0, convert-source-map@^1.5.1:
1149 | version "1.5.1"
1150 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz#b8278097b9bc229365de5c62cf5fcaed8b5599e5"
1151 |
1152 | cookie-signature@1.0.6:
1153 | version "1.0.6"
1154 | resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
1155 |
1156 | cookie@0.3.1:
1157 | version "0.3.1"
1158 | resolved "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
1159 |
1160 | core-js@^1.0.0:
1161 | version "1.2.7"
1162 | resolved "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
1163 |
1164 | core-js@^2.4.0, core-js@^2.5.0:
1165 | version "2.5.7"
1166 | resolved "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz#f972608ff0cead68b841a16a932d0b183791814e"
1167 |
1168 | core-util-is@~1.0.0:
1169 | version "1.0.2"
1170 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
1171 |
1172 | crypto-browserify@~3.2.6:
1173 | version "3.2.8"
1174 | resolved "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.2.8.tgz#b9b11dbe6d9651dd882a01e6cc467df718ecf189"
1175 | dependencies:
1176 | pbkdf2-compat "2.0.1"
1177 | ripemd160 "0.2.0"
1178 | sha.js "2.2.6"
1179 |
1180 | css-color-names@0.0.4:
1181 | version "0.0.4"
1182 | resolved "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
1183 |
1184 | css-loader@0.25.0:
1185 | version "0.25.0"
1186 | resolved "https://registry.npmjs.org/css-loader/-/css-loader-0.25.0.tgz#c3febc8ce28f4c83576b6b13707f47f90c390223"
1187 | dependencies:
1188 | babel-code-frame "^6.11.0"
1189 | css-selector-tokenizer "^0.6.0"
1190 | cssnano ">=2.6.1 <4"
1191 | loader-utils "~0.2.2"
1192 | lodash.camelcase "^3.0.1"
1193 | object-assign "^4.0.1"
1194 | postcss "^5.0.6"
1195 | postcss-modules-extract-imports "^1.0.0"
1196 | postcss-modules-local-by-default "^1.0.1"
1197 | postcss-modules-scope "^1.0.0"
1198 | postcss-modules-values "^1.1.0"
1199 | source-list-map "^0.1.4"
1200 |
1201 | css-selector-tokenizer@^0.6.0:
1202 | version "0.6.0"
1203 | resolved "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.6.0.tgz#6445f582c7930d241dcc5007a43d6fcb8f073152"
1204 | dependencies:
1205 | cssesc "^0.1.0"
1206 | fastparse "^1.1.1"
1207 | regexpu-core "^1.0.0"
1208 |
1209 | css-selector-tokenizer@^0.7.0:
1210 | version "0.7.0"
1211 | resolved "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.0.tgz#e6988474ae8c953477bf5e7efecfceccd9cf4c86"
1212 | dependencies:
1213 | cssesc "^0.1.0"
1214 | fastparse "^1.1.1"
1215 | regexpu-core "^1.0.0"
1216 |
1217 | cssesc@^0.1.0:
1218 | version "0.1.0"
1219 | resolved "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4"
1220 |
1221 | "cssnano@>=2.6.1 <4":
1222 | version "3.10.0"
1223 | resolved "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz#4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"
1224 | dependencies:
1225 | autoprefixer "^6.3.1"
1226 | decamelize "^1.1.2"
1227 | defined "^1.0.0"
1228 | has "^1.0.1"
1229 | object-assign "^4.0.1"
1230 | postcss "^5.0.14"
1231 | postcss-calc "^5.2.0"
1232 | postcss-colormin "^2.1.8"
1233 | postcss-convert-values "^2.3.4"
1234 | postcss-discard-comments "^2.0.4"
1235 | postcss-discard-duplicates "^2.0.1"
1236 | postcss-discard-empty "^2.0.1"
1237 | postcss-discard-overridden "^0.1.1"
1238 | postcss-discard-unused "^2.2.1"
1239 | postcss-filter-plugins "^2.0.0"
1240 | postcss-merge-idents "^2.1.5"
1241 | postcss-merge-longhand "^2.0.1"
1242 | postcss-merge-rules "^2.0.3"
1243 | postcss-minify-font-values "^1.0.2"
1244 | postcss-minify-gradients "^1.0.1"
1245 | postcss-minify-params "^1.0.4"
1246 | postcss-minify-selectors "^2.0.4"
1247 | postcss-normalize-charset "^1.1.0"
1248 | postcss-normalize-url "^3.0.7"
1249 | postcss-ordered-values "^2.1.0"
1250 | postcss-reduce-idents "^2.2.2"
1251 | postcss-reduce-initial "^1.0.0"
1252 | postcss-reduce-transforms "^1.0.3"
1253 | postcss-svgo "^2.1.1"
1254 | postcss-unique-selectors "^2.0.2"
1255 | postcss-value-parser "^3.2.3"
1256 | postcss-zindex "^2.0.1"
1257 |
1258 | csso@~2.3.1:
1259 | version "2.3.2"
1260 | resolved "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz#ddd52c587033f49e94b71fc55569f252e8ff5f85"
1261 | dependencies:
1262 | clap "^1.0.9"
1263 | source-map "^0.5.3"
1264 |
1265 | date-now@^0.1.4:
1266 | version "0.1.4"
1267 | resolved "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b"
1268 |
1269 | debug@2.2.0:
1270 | version "2.2.0"
1271 | resolved "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz#f87057e995b1a1f6ae6a4960664137bc56f039da"
1272 | dependencies:
1273 | ms "0.7.1"
1274 |
1275 | debug@2.3.3:
1276 | version "2.3.3"
1277 | resolved "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz#40c453e67e6e13c901ddec317af8986cda9eff8c"
1278 | dependencies:
1279 | ms "0.7.2"
1280 |
1281 | debug@2.6.9, debug@^2.1.1, debug@^2.1.2, debug@^2.6.8, debug@^2.6.9:
1282 | version "2.6.9"
1283 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
1284 | dependencies:
1285 | ms "2.0.0"
1286 |
1287 | debug@^3.1.0:
1288 | version "3.1.0"
1289 | resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
1290 | dependencies:
1291 | ms "2.0.0"
1292 |
1293 | decamelize@^1.0.0, decamelize@^1.1.2:
1294 | version "1.2.0"
1295 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
1296 |
1297 | deep-extend@^0.6.0:
1298 | version "0.6.0"
1299 | resolved "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
1300 |
1301 | defined@^1.0.0:
1302 | version "1.0.0"
1303 | resolved "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
1304 |
1305 | delegates@^1.0.0:
1306 | version "1.0.0"
1307 | resolved "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
1308 |
1309 | depd@1.1.1:
1310 | version "1.1.1"
1311 | resolved "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
1312 |
1313 | depd@~1.1.1, depd@~1.1.2:
1314 | version "1.1.2"
1315 | resolved "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
1316 |
1317 | destroy@~1.0.4:
1318 | version "1.0.4"
1319 | resolved "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
1320 |
1321 | detect-indent@^4.0.0:
1322 | version "4.0.0"
1323 | resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208"
1324 | dependencies:
1325 | repeating "^2.0.0"
1326 |
1327 | detect-libc@^1.0.2:
1328 | version "1.0.3"
1329 | resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
1330 |
1331 | domain-browser@^1.1.1:
1332 | version "1.2.0"
1333 | resolved "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
1334 |
1335 | ee-first@1.1.1:
1336 | version "1.1.1"
1337 | resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
1338 |
1339 | electron-to-chromium@^1.2.7:
1340 | version "1.3.57"
1341 | resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.57.tgz#61b2446f16af26fb8873210007a7637ad644c82d"
1342 |
1343 | emojis-list@^2.0.0:
1344 | version "2.1.0"
1345 | resolved "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
1346 |
1347 | encodeurl@~1.0.2:
1348 | version "1.0.2"
1349 | resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
1350 |
1351 | encoding@^0.1.11:
1352 | version "0.1.12"
1353 | resolved "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
1354 | dependencies:
1355 | iconv-lite "~0.4.13"
1356 |
1357 | engine.io-client@~1.8.4:
1358 | version "1.8.5"
1359 | resolved "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.5.tgz#fe7fb60cb0dcf2fa2859489329cb5968dedeb11f"
1360 | dependencies:
1361 | component-emitter "1.2.1"
1362 | component-inherit "0.0.3"
1363 | debug "2.3.3"
1364 | engine.io-parser "1.3.2"
1365 | has-cors "1.1.0"
1366 | indexof "0.0.1"
1367 | parsejson "0.0.3"
1368 | parseqs "0.0.5"
1369 | parseuri "0.0.5"
1370 | ws "~1.1.5"
1371 | xmlhttprequest-ssl "1.5.3"
1372 | yeast "0.1.2"
1373 |
1374 | engine.io-parser@1.3.2:
1375 | version "1.3.2"
1376 | resolved "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz#937b079f0007d0893ec56d46cb220b8cb435220a"
1377 | dependencies:
1378 | after "0.8.2"
1379 | arraybuffer.slice "0.0.6"
1380 | base64-arraybuffer "0.1.5"
1381 | blob "0.0.4"
1382 | has-binary "0.1.7"
1383 | wtf-8 "1.0.0"
1384 |
1385 | engine.io@~1.8.4:
1386 | version "1.8.5"
1387 | resolved "https://registry.npmjs.org/engine.io/-/engine.io-1.8.5.tgz#4ebe5e75c6dc123dee4afdce6e5fdced21eb93f6"
1388 | dependencies:
1389 | accepts "1.3.3"
1390 | base64id "1.0.0"
1391 | cookie "0.3.1"
1392 | debug "2.3.3"
1393 | engine.io-parser "1.3.2"
1394 | ws "~1.1.5"
1395 |
1396 | enhanced-resolve@~0.9.0:
1397 | version "0.9.1"
1398 | resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz#4d6e689b3725f86090927ccc86cd9f1635b89e2e"
1399 | dependencies:
1400 | graceful-fs "^4.1.2"
1401 | memory-fs "^0.2.0"
1402 | tapable "^0.1.8"
1403 |
1404 | errno@^0.1.3:
1405 | version "0.1.7"
1406 | resolved "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
1407 | dependencies:
1408 | prr "~1.0.1"
1409 |
1410 | escape-html@~1.0.3:
1411 | version "1.0.3"
1412 | resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
1413 |
1414 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
1415 | version "1.0.5"
1416 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
1417 |
1418 | esprima@^2.5.0, esprima@^2.6.0:
1419 | version "2.7.3"
1420 | resolved "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
1421 |
1422 | esutils@^2.0.2:
1423 | version "2.0.2"
1424 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"
1425 |
1426 | etag@~1.8.1:
1427 | version "1.8.1"
1428 | resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
1429 |
1430 | eventemitter3@^3.0.0:
1431 | version "3.1.0"
1432 | resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.0.tgz#090b4d6cdbd645ed10bf750d4b5407942d7ba163"
1433 |
1434 | events@^1.0.0:
1435 | version "1.1.1"
1436 | resolved "https://registry.npmjs.org/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"
1437 |
1438 | expand-brackets@^0.1.4:
1439 | version "0.1.5"
1440 | resolved "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b"
1441 | dependencies:
1442 | is-posix-bracket "^0.1.0"
1443 |
1444 | expand-range@^1.8.1:
1445 | version "1.8.2"
1446 | resolved "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
1447 | dependencies:
1448 | fill-range "^2.1.0"
1449 |
1450 | express@^4.13.3:
1451 | version "4.16.3"
1452 | resolved "https://registry.npmjs.org/express/-/express-4.16.3.tgz#6af8a502350db3246ecc4becf6b5a34d22f7ed53"
1453 | dependencies:
1454 | accepts "~1.3.5"
1455 | array-flatten "1.1.1"
1456 | body-parser "1.18.2"
1457 | content-disposition "0.5.2"
1458 | content-type "~1.0.4"
1459 | cookie "0.3.1"
1460 | cookie-signature "1.0.6"
1461 | debug "2.6.9"
1462 | depd "~1.1.2"
1463 | encodeurl "~1.0.2"
1464 | escape-html "~1.0.3"
1465 | etag "~1.8.1"
1466 | finalhandler "1.1.1"
1467 | fresh "0.5.2"
1468 | merge-descriptors "1.0.1"
1469 | methods "~1.1.2"
1470 | on-finished "~2.3.0"
1471 | parseurl "~1.3.2"
1472 | path-to-regexp "0.1.7"
1473 | proxy-addr "~2.0.3"
1474 | qs "6.5.1"
1475 | range-parser "~1.2.0"
1476 | safe-buffer "5.1.1"
1477 | send "0.16.2"
1478 | serve-static "1.13.2"
1479 | setprototypeof "1.1.0"
1480 | statuses "~1.4.0"
1481 | type-is "~1.6.16"
1482 | utils-merge "1.0.1"
1483 | vary "~1.1.2"
1484 |
1485 | extglob@^0.3.1:
1486 | version "0.3.2"
1487 | resolved "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1"
1488 | dependencies:
1489 | is-extglob "^1.0.0"
1490 |
1491 | fastparse@^1.1.1:
1492 | version "1.1.1"
1493 | resolved "https://registry.npmjs.org/fastparse/-/fastparse-1.1.1.tgz#d1e2643b38a94d7583b479060e6c4affc94071f8"
1494 |
1495 | fbjs@^0.8.16:
1496 | version "0.8.17"
1497 | resolved "https://registry.npmjs.org/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd"
1498 | dependencies:
1499 | core-js "^1.0.0"
1500 | isomorphic-fetch "^2.1.1"
1501 | loose-envify "^1.0.0"
1502 | object-assign "^4.1.0"
1503 | promise "^7.1.1"
1504 | setimmediate "^1.0.5"
1505 | ua-parser-js "^0.7.18"
1506 |
1507 | filename-regex@^2.0.0:
1508 | version "2.0.1"
1509 | resolved "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"
1510 |
1511 | fill-range@^2.1.0:
1512 | version "2.2.4"
1513 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
1514 | dependencies:
1515 | is-number "^2.1.0"
1516 | isobject "^2.0.0"
1517 | randomatic "^3.0.0"
1518 | repeat-element "^1.1.2"
1519 | repeat-string "^1.5.2"
1520 |
1521 | finalhandler@1.1.1:
1522 | version "1.1.1"
1523 | resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz#eebf4ed840079c83f4249038c9d703008301b105"
1524 | dependencies:
1525 | debug "2.6.9"
1526 | encodeurl "~1.0.2"
1527 | escape-html "~1.0.3"
1528 | on-finished "~2.3.0"
1529 | parseurl "~1.3.2"
1530 | statuses "~1.4.0"
1531 | unpipe "~1.0.0"
1532 |
1533 | find-cache-dir@^0.1.1:
1534 | version "0.1.1"
1535 | resolved "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9"
1536 | dependencies:
1537 | commondir "^1.0.1"
1538 | mkdirp "^0.5.1"
1539 | pkg-dir "^1.0.0"
1540 |
1541 | find-up@^1.0.0:
1542 | version "1.1.2"
1543 | resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
1544 | dependencies:
1545 | path-exists "^2.0.0"
1546 | pinkie-promise "^2.0.0"
1547 |
1548 | flatten@^1.0.2:
1549 | version "1.0.2"
1550 | resolved "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782"
1551 |
1552 | follow-redirects@^1.0.0:
1553 | version "1.5.2"
1554 | resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.2.tgz#5a9d80e0165957e5ef0c1210678fc5c4acb9fb03"
1555 | dependencies:
1556 | debug "^3.1.0"
1557 |
1558 | for-in@^1.0.1:
1559 | version "1.0.2"
1560 | resolved "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
1561 |
1562 | for-own@^0.1.4:
1563 | version "0.1.5"
1564 | resolved "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce"
1565 | dependencies:
1566 | for-in "^1.0.1"
1567 |
1568 | forwarded@~0.1.2:
1569 | version "0.1.2"
1570 | resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
1571 |
1572 | fresh@0.5.2:
1573 | version "0.5.2"
1574 | resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
1575 |
1576 | fs-minipass@^1.2.5:
1577 | version "1.2.5"
1578 | resolved "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
1579 | dependencies:
1580 | minipass "^2.2.1"
1581 |
1582 | fs-readdir-recursive@^1.0.0:
1583 | version "1.1.0"
1584 | resolved "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27"
1585 |
1586 | fs.realpath@^1.0.0:
1587 | version "1.0.0"
1588 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1589 |
1590 | fsevents@^1.0.0:
1591 | version "1.2.4"
1592 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz#f41dcb1af2582af3692da36fc55cbd8e1041c426"
1593 | dependencies:
1594 | nan "^2.9.2"
1595 | node-pre-gyp "^0.10.0"
1596 |
1597 | function-bind@^1.1.1:
1598 | version "1.1.1"
1599 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1600 |
1601 | gauge@~2.7.3:
1602 | version "2.7.4"
1603 | resolved "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
1604 | dependencies:
1605 | aproba "^1.0.3"
1606 | console-control-strings "^1.0.0"
1607 | has-unicode "^2.0.0"
1608 | object-assign "^4.1.0"
1609 | signal-exit "^3.0.0"
1610 | string-width "^1.0.1"
1611 | strip-ansi "^3.0.1"
1612 | wide-align "^1.1.0"
1613 |
1614 | glob-base@^0.3.0:
1615 | version "0.3.0"
1616 | resolved "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"
1617 | dependencies:
1618 | glob-parent "^2.0.0"
1619 | is-glob "^2.0.0"
1620 |
1621 | glob-parent@^2.0.0:
1622 | version "2.0.0"
1623 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28"
1624 | dependencies:
1625 | is-glob "^2.0.0"
1626 |
1627 | glob@^5.0.5:
1628 | version "5.0.15"
1629 | resolved "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
1630 | dependencies:
1631 | inflight "^1.0.4"
1632 | inherits "2"
1633 | minimatch "2 || 3"
1634 | once "^1.3.0"
1635 | path-is-absolute "^1.0.0"
1636 |
1637 | glob@^7.0.5:
1638 | version "7.1.2"
1639 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
1640 | dependencies:
1641 | fs.realpath "^1.0.0"
1642 | inflight "^1.0.4"
1643 | inherits "2"
1644 | minimatch "^3.0.4"
1645 | once "^1.3.0"
1646 | path-is-absolute "^1.0.0"
1647 |
1648 | globals@^9.18.0:
1649 | version "9.18.0"
1650 | resolved "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"
1651 |
1652 | graceful-fs@^4.1.2, graceful-fs@^4.1.4:
1653 | version "4.1.11"
1654 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
1655 |
1656 | has-ansi@^2.0.0:
1657 | version "2.0.0"
1658 | resolved "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
1659 | dependencies:
1660 | ansi-regex "^2.0.0"
1661 |
1662 | has-binary@0.1.7:
1663 | version "0.1.7"
1664 | resolved "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz#68e61eb16210c9545a0a5cce06a873912fe1e68c"
1665 | dependencies:
1666 | isarray "0.0.1"
1667 |
1668 | has-cors@1.1.0:
1669 | version "1.1.0"
1670 | resolved "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39"
1671 |
1672 | has-flag@^1.0.0:
1673 | version "1.0.0"
1674 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
1675 |
1676 | has-flag@^3.0.0:
1677 | version "3.0.0"
1678 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1679 |
1680 | has-unicode@^2.0.0:
1681 | version "2.0.1"
1682 | resolved "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
1683 |
1684 | has@^1.0.1:
1685 | version "1.0.3"
1686 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1687 | dependencies:
1688 | function-bind "^1.1.1"
1689 |
1690 | home-or-tmp@^2.0.0:
1691 | version "2.0.0"
1692 | resolved "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8"
1693 | dependencies:
1694 | os-homedir "^1.0.0"
1695 | os-tmpdir "^1.0.1"
1696 |
1697 | html-comment-regex@^1.1.0:
1698 | version "1.1.1"
1699 | resolved "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.1.tgz#668b93776eaae55ebde8f3ad464b307a4963625e"
1700 |
1701 | http-browserify@^1.3.2:
1702 | version "1.7.0"
1703 | resolved "https://registry.npmjs.org/http-browserify/-/http-browserify-1.7.0.tgz#33795ade72df88acfbfd36773cefeda764735b20"
1704 | dependencies:
1705 | Base64 "~0.2.0"
1706 | inherits "~2.0.1"
1707 |
1708 | http-errors@1.6.2:
1709 | version "1.6.2"
1710 | resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz#0a002cc85707192a7e7946ceedc11155f60ec736"
1711 | dependencies:
1712 | depd "1.1.1"
1713 | inherits "2.0.3"
1714 | setprototypeof "1.0.3"
1715 | statuses ">= 1.3.1 < 2"
1716 |
1717 | http-errors@~1.6.2:
1718 | version "1.6.3"
1719 | resolved "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
1720 | dependencies:
1721 | depd "~1.1.2"
1722 | inherits "2.0.3"
1723 | setprototypeof "1.1.0"
1724 | statuses ">= 1.4.0 < 2"
1725 |
1726 | http-proxy@^1.11.2:
1727 | version "1.17.0"
1728 | resolved "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz#7ad38494658f84605e2f6db4436df410f4e5be9a"
1729 | dependencies:
1730 | eventemitter3 "^3.0.0"
1731 | follow-redirects "^1.0.0"
1732 | requires-port "^1.0.0"
1733 |
1734 | https-browserify@0.0.0:
1735 | version "0.0.0"
1736 | resolved "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.0.tgz#b3ffdfe734b2a3d4a9efd58e8654c91fce86eafd"
1737 |
1738 | iconv-lite@0.4.19:
1739 | version "0.4.19"
1740 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
1741 |
1742 | iconv-lite@^0.4.4, iconv-lite@~0.4.13:
1743 | version "0.4.23"
1744 | resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz#297871f63be507adcfbfca715d0cd0eed84e9a63"
1745 | dependencies:
1746 | safer-buffer ">= 2.1.2 < 3"
1747 |
1748 | icss-replace-symbols@^1.1.0:
1749 | version "1.1.0"
1750 | resolved "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
1751 |
1752 | ieee754@^1.1.4:
1753 | version "1.1.12"
1754 | resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.1.12.tgz#50bf24e5b9c8bb98af4964c941cdb0918da7b60b"
1755 |
1756 | ignore-walk@^3.0.1:
1757 | version "3.0.1"
1758 | resolved "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8"
1759 | dependencies:
1760 | minimatch "^3.0.4"
1761 |
1762 | indexes-of@^1.0.1:
1763 | version "1.0.1"
1764 | resolved "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
1765 |
1766 | indexof@0.0.1:
1767 | version "0.0.1"
1768 | resolved "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
1769 |
1770 | inflight@^1.0.4:
1771 | version "1.0.6"
1772 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1773 | dependencies:
1774 | once "^1.3.0"
1775 | wrappy "1"
1776 |
1777 | inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@~2.0.1, inherits@~2.0.3:
1778 | version "2.0.3"
1779 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1780 |
1781 | inherits@2.0.1:
1782 | version "2.0.1"
1783 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1784 |
1785 | ini@~1.3.0:
1786 | version "1.3.5"
1787 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
1788 |
1789 | interpret@^0.6.4:
1790 | version "0.6.6"
1791 | resolved "https://registry.npmjs.org/interpret/-/interpret-0.6.6.tgz#fecd7a18e7ce5ca6abfb953e1f86213a49f1625b"
1792 |
1793 | invariant@^2.2.2:
1794 | version "2.2.4"
1795 | resolved "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
1796 | dependencies:
1797 | loose-envify "^1.0.0"
1798 |
1799 | ipaddr.js@1.8.0:
1800 | version "1.8.0"
1801 | resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz#eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e"
1802 |
1803 | is-absolute-url@^2.0.0:
1804 | version "2.1.0"
1805 | resolved "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
1806 |
1807 | is-binary-path@^1.0.0:
1808 | version "1.0.1"
1809 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
1810 | dependencies:
1811 | binary-extensions "^1.0.0"
1812 |
1813 | is-buffer@^1.1.5:
1814 | version "1.1.6"
1815 | resolved "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
1816 |
1817 | is-dotfile@^1.0.0:
1818 | version "1.0.3"
1819 | resolved "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"
1820 |
1821 | is-equal-shallow@^0.1.3:
1822 | version "0.1.3"
1823 | resolved "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534"
1824 | dependencies:
1825 | is-primitive "^2.0.0"
1826 |
1827 | is-extendable@^0.1.1:
1828 | version "0.1.1"
1829 | resolved "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
1830 |
1831 | is-extglob@^1.0.0:
1832 | version "1.0.0"
1833 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0"
1834 |
1835 | is-finite@^1.0.0:
1836 | version "1.0.2"
1837 | resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa"
1838 | dependencies:
1839 | number-is-nan "^1.0.0"
1840 |
1841 | is-fullwidth-code-point@^1.0.0:
1842 | version "1.0.0"
1843 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb"
1844 | dependencies:
1845 | number-is-nan "^1.0.0"
1846 |
1847 | is-fullwidth-code-point@^2.0.0:
1848 | version "2.0.0"
1849 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
1850 |
1851 | is-glob@^2.0.0, is-glob@^2.0.1:
1852 | version "2.0.1"
1853 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863"
1854 | dependencies:
1855 | is-extglob "^1.0.0"
1856 |
1857 | is-number@^2.1.0:
1858 | version "2.1.0"
1859 | resolved "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
1860 | dependencies:
1861 | kind-of "^3.0.2"
1862 |
1863 | is-number@^4.0.0:
1864 | version "4.0.0"
1865 | resolved "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
1866 |
1867 | is-plain-obj@^1.0.0:
1868 | version "1.1.0"
1869 | resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
1870 |
1871 | is-posix-bracket@^0.1.0:
1872 | version "0.1.1"
1873 | resolved "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"
1874 |
1875 | is-primitive@^2.0.0:
1876 | version "2.0.0"
1877 | resolved "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575"
1878 |
1879 | is-stream@^1.0.1:
1880 | version "1.1.0"
1881 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
1882 |
1883 | is-svg@^2.0.0:
1884 | version "2.1.0"
1885 | resolved "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz#cf61090da0d9efbcab8722deba6f032208dbb0e9"
1886 | dependencies:
1887 | html-comment-regex "^1.1.0"
1888 |
1889 | isarray@0.0.1:
1890 | version "0.0.1"
1891 | resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf"
1892 |
1893 | isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0:
1894 | version "1.0.0"
1895 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1896 |
1897 | isobject@^2.0.0:
1898 | version "2.1.0"
1899 | resolved "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
1900 | dependencies:
1901 | isarray "1.0.0"
1902 |
1903 | isomorphic-fetch@^2.1.1:
1904 | version "2.2.1"
1905 | resolved "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
1906 | dependencies:
1907 | node-fetch "^1.0.1"
1908 | whatwg-fetch ">=0.10.0"
1909 |
1910 | js-base64@^2.1.9:
1911 | version "2.4.8"
1912 | resolved "https://registry.npmjs.org/js-base64/-/js-base64-2.4.8.tgz#57a9b130888f956834aa40c5b165ba59c758f033"
1913 |
1914 | "js-tokens@^3.0.0 || ^4.0.0":
1915 | version "4.0.0"
1916 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1917 |
1918 | js-tokens@^3.0.2:
1919 | version "3.0.2"
1920 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
1921 |
1922 | js-yaml@~3.7.0:
1923 | version "3.7.0"
1924 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz#5c967ddd837a9bfdca5f2de84253abe8a1c03b80"
1925 | dependencies:
1926 | argparse "^1.0.7"
1927 | esprima "^2.6.0"
1928 |
1929 | jsesc@^1.3.0:
1930 | version "1.3.0"
1931 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
1932 |
1933 | jsesc@~0.5.0:
1934 | version "0.5.0"
1935 | resolved "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
1936 |
1937 | json3@3.3.2:
1938 | version "3.3.2"
1939 | resolved "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz#3c0434743df93e2f5c42aee7b19bcb483575f4e1"
1940 |
1941 | json5@^0.5.0, json5@^0.5.1:
1942 | version "0.5.1"
1943 | resolved "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
1944 |
1945 | kind-of@^3.0.2:
1946 | version "3.2.2"
1947 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
1948 | dependencies:
1949 | is-buffer "^1.1.5"
1950 |
1951 | kind-of@^6.0.0:
1952 | version "6.0.2"
1953 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051"
1954 |
1955 | loader-utils@^0.2.11, loader-utils@~0.2.2:
1956 | version "0.2.17"
1957 | resolved "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348"
1958 | dependencies:
1959 | big.js "^3.1.3"
1960 | emojis-list "^2.0.0"
1961 | json5 "^0.5.0"
1962 | object-assign "^4.0.1"
1963 |
1964 | lodash._createcompounder@^3.0.0:
1965 | version "3.0.0"
1966 | resolved "https://registry.npmjs.org/lodash._createcompounder/-/lodash._createcompounder-3.0.0.tgz#5dd2cb55372d6e70e0e2392fb2304d6631091075"
1967 | dependencies:
1968 | lodash.deburr "^3.0.0"
1969 | lodash.words "^3.0.0"
1970 |
1971 | lodash._root@^3.0.0:
1972 | version "3.0.1"
1973 | resolved "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692"
1974 |
1975 | lodash.camelcase@^3.0.1:
1976 | version "3.0.1"
1977 | resolved "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-3.0.1.tgz#932c8b87f8a4377897c67197533282f97aeac298"
1978 | dependencies:
1979 | lodash._createcompounder "^3.0.0"
1980 |
1981 | lodash.deburr@^3.0.0:
1982 | version "3.2.0"
1983 | resolved "https://registry.npmjs.org/lodash.deburr/-/lodash.deburr-3.2.0.tgz#6da8f54334a366a7cf4c4c76ef8d80aa1b365ed5"
1984 | dependencies:
1985 | lodash._root "^3.0.0"
1986 |
1987 | lodash.memoize@^4.1.2:
1988 | version "4.1.2"
1989 | resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
1990 |
1991 | lodash.uniq@^4.5.0:
1992 | version "4.5.0"
1993 | resolved "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
1994 |
1995 | lodash.words@^3.0.0:
1996 | version "3.2.0"
1997 | resolved "https://registry.npmjs.org/lodash.words/-/lodash.words-3.2.0.tgz#4e2a8649bc08745b17c695b1a3ce8fee596623b3"
1998 | dependencies:
1999 | lodash._root "^3.0.0"
2000 |
2001 | lodash@^4.17.4, lodash@^4.2.0:
2002 | version "4.17.10"
2003 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
2004 |
2005 | loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.3.1:
2006 | version "1.4.0"
2007 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
2008 | dependencies:
2009 | js-tokens "^3.0.0 || ^4.0.0"
2010 |
2011 | math-expression-evaluator@^1.2.14:
2012 | version "1.2.17"
2013 | resolved "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac"
2014 |
2015 | math-random@^1.0.1:
2016 | version "1.0.1"
2017 | resolved "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz#8b3aac588b8a66e4975e3cdea67f7bb329601fac"
2018 |
2019 | media-typer@0.3.0:
2020 | version "0.3.0"
2021 | resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
2022 |
2023 | memory-fs@^0.2.0, memory-fs@~0.2.0:
2024 | version "0.2.0"
2025 | resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz#f2bb25368bc121e391c2520de92969caee0a0290"
2026 |
2027 | memory-fs@~0.4.1:
2028 | version "0.4.1"
2029 | resolved "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552"
2030 | dependencies:
2031 | errno "^0.1.3"
2032 | readable-stream "^2.0.1"
2033 |
2034 | merge-descriptors@1.0.1:
2035 | version "1.0.1"
2036 | resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
2037 |
2038 | methods@~1.1.2:
2039 | version "1.1.2"
2040 | resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
2041 |
2042 | micromatch@^2.1.5:
2043 | version "2.3.11"
2044 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565"
2045 | dependencies:
2046 | arr-diff "^2.0.0"
2047 | array-unique "^0.2.1"
2048 | braces "^1.8.2"
2049 | expand-brackets "^0.1.4"
2050 | extglob "^0.3.1"
2051 | filename-regex "^2.0.0"
2052 | is-extglob "^1.0.0"
2053 | is-glob "^2.0.1"
2054 | kind-of "^3.0.2"
2055 | normalize-path "^2.0.1"
2056 | object.omit "^2.0.0"
2057 | parse-glob "^3.0.4"
2058 | regex-cache "^0.4.2"
2059 |
2060 | "mime-db@>= 1.34.0 < 2", mime-db@~1.35.0:
2061 | version "1.35.0"
2062 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz#0569d657466491283709663ad379a99b90d9ab47"
2063 |
2064 | mime-types@~2.1.11, mime-types@~2.1.17, mime-types@~2.1.18:
2065 | version "2.1.19"
2066 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz#71e464537a7ef81c15f2db9d97e913fc0ff606f0"
2067 | dependencies:
2068 | mime-db "~1.35.0"
2069 |
2070 | mime@1.4.1:
2071 | version "1.4.1"
2072 | resolved "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
2073 |
2074 | mime@^1.5.0:
2075 | version "1.6.0"
2076 | resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
2077 |
2078 | "minimatch@2 || 3", minimatch@^3.0.2, minimatch@^3.0.4:
2079 | version "3.0.4"
2080 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
2081 | dependencies:
2082 | brace-expansion "^1.1.7"
2083 |
2084 | minimist@0.0.8:
2085 | version "0.0.8"
2086 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
2087 |
2088 | minimist@^1.2.0:
2089 | version "1.2.0"
2090 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284"
2091 |
2092 | minimist@~0.0.1:
2093 | version "0.0.10"
2094 | resolved "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
2095 |
2096 | minipass@^2.2.1, minipass@^2.3.3:
2097 | version "2.3.4"
2098 | resolved "https://registry.npmjs.org/minipass/-/minipass-2.3.4.tgz#4768d7605ed6194d6d576169b9e12ef71e9d9957"
2099 | dependencies:
2100 | safe-buffer "^5.1.2"
2101 | yallist "^3.0.0"
2102 |
2103 | minizlib@^1.1.0:
2104 | version "1.1.0"
2105 | resolved "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz#11e13658ce46bc3a70a267aac58359d1e0c29ceb"
2106 | dependencies:
2107 | minipass "^2.2.1"
2108 |
2109 | mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1:
2110 | version "0.5.1"
2111 | resolved "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
2112 | dependencies:
2113 | minimist "0.0.8"
2114 |
2115 | ms@0.7.1:
2116 | version "0.7.1"
2117 | resolved "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098"
2118 |
2119 | ms@0.7.2:
2120 | version "0.7.2"
2121 | resolved "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz#ae25cf2512b3885a1d95d7f037868d8431124765"
2122 |
2123 | ms@2.0.0:
2124 | version "2.0.0"
2125 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
2126 |
2127 | nan@^2.9.2:
2128 | version "2.10.0"
2129 | resolved "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f"
2130 |
2131 | needle@^2.2.1:
2132 | version "2.2.2"
2133 | resolved "https://registry.npmjs.org/needle/-/needle-2.2.2.tgz#1120ca4c41f2fcc6976fd28a8968afe239929418"
2134 | dependencies:
2135 | debug "^2.1.2"
2136 | iconv-lite "^0.4.4"
2137 | sax "^1.2.4"
2138 |
2139 | negotiator@0.6.1:
2140 | version "0.6.1"
2141 | resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
2142 |
2143 | node-fetch@^1.0.1:
2144 | version "1.7.3"
2145 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
2146 | dependencies:
2147 | encoding "^0.1.11"
2148 | is-stream "^1.0.1"
2149 |
2150 | "node-libs-browser@>= 0.4.0 <=0.6.0":
2151 | version "0.6.0"
2152 | resolved "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.6.0.tgz#244806d44d319e048bc8607b5cc4eaf9a29d2e3c"
2153 | dependencies:
2154 | assert "^1.1.1"
2155 | browserify-zlib "~0.1.4"
2156 | buffer "^4.9.0"
2157 | console-browserify "^1.1.0"
2158 | constants-browserify "0.0.1"
2159 | crypto-browserify "~3.2.6"
2160 | domain-browser "^1.1.1"
2161 | events "^1.0.0"
2162 | http-browserify "^1.3.2"
2163 | https-browserify "0.0.0"
2164 | os-browserify "~0.1.2"
2165 | path-browserify "0.0.0"
2166 | process "^0.11.0"
2167 | punycode "^1.2.4"
2168 | querystring-es3 "~0.2.0"
2169 | readable-stream "^1.1.13"
2170 | stream-browserify "^1.0.0"
2171 | string_decoder "~0.10.25"
2172 | timers-browserify "^1.0.1"
2173 | tty-browserify "0.0.0"
2174 | url "~0.10.1"
2175 | util "~0.10.3"
2176 | vm-browserify "0.0.4"
2177 |
2178 | node-pre-gyp@^0.10.0:
2179 | version "0.10.3"
2180 | resolved "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc"
2181 | dependencies:
2182 | detect-libc "^1.0.2"
2183 | mkdirp "^0.5.1"
2184 | needle "^2.2.1"
2185 | nopt "^4.0.1"
2186 | npm-packlist "^1.1.6"
2187 | npmlog "^4.0.2"
2188 | rc "^1.2.7"
2189 | rimraf "^2.6.1"
2190 | semver "^5.3.0"
2191 | tar "^4"
2192 |
2193 | nopt@^4.0.1:
2194 | version "4.0.1"
2195 | resolved "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
2196 | dependencies:
2197 | abbrev "1"
2198 | osenv "^0.1.4"
2199 |
2200 | normalize-path@^2.0.0, normalize-path@^2.0.1:
2201 | version "2.1.1"
2202 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
2203 | dependencies:
2204 | remove-trailing-separator "^1.0.1"
2205 |
2206 | normalize-range@^0.1.2:
2207 | version "0.1.2"
2208 | resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
2209 |
2210 | normalize-url@^1.4.0:
2211 | version "1.9.1"
2212 | resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c"
2213 | dependencies:
2214 | object-assign "^4.0.1"
2215 | prepend-http "^1.0.0"
2216 | query-string "^4.1.0"
2217 | sort-keys "^1.0.0"
2218 |
2219 | npm-bundled@^1.0.1:
2220 | version "1.0.5"
2221 | resolved "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.5.tgz#3c1732b7ba936b3a10325aef616467c0ccbcc979"
2222 |
2223 | npm-packlist@^1.1.6:
2224 | version "1.1.11"
2225 | resolved "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.11.tgz#84e8c683cbe7867d34b1d357d893ce29e28a02de"
2226 | dependencies:
2227 | ignore-walk "^3.0.1"
2228 | npm-bundled "^1.0.1"
2229 |
2230 | npmlog@^4.0.2:
2231 | version "4.1.2"
2232 | resolved "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b"
2233 | dependencies:
2234 | are-we-there-yet "~1.1.2"
2235 | console-control-strings "~1.1.0"
2236 | gauge "~2.7.3"
2237 | set-blocking "~2.0.0"
2238 |
2239 | num2fraction@^1.2.2:
2240 | version "1.2.2"
2241 | resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
2242 |
2243 | number-is-nan@^1.0.0:
2244 | version "1.0.1"
2245 | resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
2246 |
2247 | object-assign@4.1.0:
2248 | version "4.1.0"
2249 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"
2250 |
2251 | object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
2252 | version "4.1.1"
2253 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2254 |
2255 | object-component@0.0.3:
2256 | version "0.0.3"
2257 | resolved "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291"
2258 |
2259 | object.omit@^2.0.0:
2260 | version "2.0.1"
2261 | resolved "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"
2262 | dependencies:
2263 | for-own "^0.1.4"
2264 | is-extendable "^0.1.1"
2265 |
2266 | on-finished@~2.3.0:
2267 | version "2.3.0"
2268 | resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
2269 | dependencies:
2270 | ee-first "1.1.1"
2271 |
2272 | on-headers@~1.0.1:
2273 | version "1.0.1"
2274 | resolved "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7"
2275 |
2276 | once@^1.3.0:
2277 | version "1.4.0"
2278 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2279 | dependencies:
2280 | wrappy "1"
2281 |
2282 | optimist@~0.6.0:
2283 | version "0.6.1"
2284 | resolved "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686"
2285 | dependencies:
2286 | minimist "~0.0.1"
2287 | wordwrap "~0.0.2"
2288 |
2289 | options@>=0.0.5:
2290 | version "0.0.6"
2291 | resolved "https://registry.npmjs.org/options/-/options-0.0.6.tgz#ec22d312806bb53e731773e7cdaefcf1c643128f"
2292 |
2293 | os-browserify@~0.1.2:
2294 | version "0.1.2"
2295 | resolved "https://registry.npmjs.org/os-browserify/-/os-browserify-0.1.2.tgz#49ca0293e0b19590a5f5de10c7f265a617d8fe54"
2296 |
2297 | os-homedir@^1.0.0:
2298 | version "1.0.2"
2299 | resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
2300 |
2301 | os-tmpdir@^1.0.0, os-tmpdir@^1.0.1:
2302 | version "1.0.2"
2303 | resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
2304 |
2305 | osenv@^0.1.4:
2306 | version "0.1.5"
2307 | resolved "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410"
2308 | dependencies:
2309 | os-homedir "^1.0.0"
2310 | os-tmpdir "^1.0.0"
2311 |
2312 | output-file-sync@^1.1.0:
2313 | version "1.1.2"
2314 | resolved "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76"
2315 | dependencies:
2316 | graceful-fs "^4.1.4"
2317 | mkdirp "^0.5.1"
2318 | object-assign "^4.1.0"
2319 |
2320 | pako@~0.2.0:
2321 | version "0.2.9"
2322 | resolved "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
2323 |
2324 | parse-glob@^3.0.4:
2325 | version "3.0.4"
2326 | resolved "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"
2327 | dependencies:
2328 | glob-base "^0.3.0"
2329 | is-dotfile "^1.0.0"
2330 | is-extglob "^1.0.0"
2331 | is-glob "^2.0.0"
2332 |
2333 | parsejson@0.0.3:
2334 | version "0.0.3"
2335 | resolved "https://registry.npmjs.org/parsejson/-/parsejson-0.0.3.tgz#ab7e3759f209ece99437973f7d0f1f64ae0e64ab"
2336 | dependencies:
2337 | better-assert "~1.0.0"
2338 |
2339 | parseqs@0.0.5:
2340 | version "0.0.5"
2341 | resolved "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d"
2342 | dependencies:
2343 | better-assert "~1.0.0"
2344 |
2345 | parseuri@0.0.5:
2346 | version "0.0.5"
2347 | resolved "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a"
2348 | dependencies:
2349 | better-assert "~1.0.0"
2350 |
2351 | parseurl@~1.3.2:
2352 | version "1.3.2"
2353 | resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
2354 |
2355 | path-browserify@0.0.0:
2356 | version "0.0.0"
2357 | resolved "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
2358 |
2359 | path-exists@^2.0.0:
2360 | version "2.1.0"
2361 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
2362 | dependencies:
2363 | pinkie-promise "^2.0.0"
2364 |
2365 | path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
2366 | version "1.0.1"
2367 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2368 |
2369 | path-to-regexp@0.1.7:
2370 | version "0.1.7"
2371 | resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
2372 |
2373 | pbkdf2-compat@2.0.1:
2374 | version "2.0.1"
2375 | resolved "https://registry.npmjs.org/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz#b6e0c8fa99494d94e0511575802a59a5c142f288"
2376 |
2377 | pinkie-promise@^2.0.0:
2378 | version "2.0.1"
2379 | resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
2380 | dependencies:
2381 | pinkie "^2.0.0"
2382 |
2383 | pinkie@^2.0.0:
2384 | version "2.0.4"
2385 | resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
2386 |
2387 | pkg-dir@^1.0.0:
2388 | version "1.0.0"
2389 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"
2390 | dependencies:
2391 | find-up "^1.0.0"
2392 |
2393 | postcss-calc@^5.2.0:
2394 | version "5.3.1"
2395 | resolved "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz#77bae7ca928ad85716e2fda42f261bf7c1d65b5e"
2396 | dependencies:
2397 | postcss "^5.0.2"
2398 | postcss-message-helpers "^2.0.0"
2399 | reduce-css-calc "^1.2.6"
2400 |
2401 | postcss-colormin@^2.1.8:
2402 | version "2.2.2"
2403 | resolved "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz#6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"
2404 | dependencies:
2405 | colormin "^1.0.5"
2406 | postcss "^5.0.13"
2407 | postcss-value-parser "^3.2.3"
2408 |
2409 | postcss-convert-values@^2.3.4:
2410 | version "2.6.1"
2411 | resolved "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz#bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"
2412 | dependencies:
2413 | postcss "^5.0.11"
2414 | postcss-value-parser "^3.1.2"
2415 |
2416 | postcss-discard-comments@^2.0.4:
2417 | version "2.0.4"
2418 | resolved "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz#befe89fafd5b3dace5ccce51b76b81514be00e3d"
2419 | dependencies:
2420 | postcss "^5.0.14"
2421 |
2422 | postcss-discard-duplicates@^2.0.1:
2423 | version "2.1.0"
2424 | resolved "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz#b9abf27b88ac188158a5eb12abcae20263b91932"
2425 | dependencies:
2426 | postcss "^5.0.4"
2427 |
2428 | postcss-discard-empty@^2.0.1:
2429 | version "2.1.0"
2430 | resolved "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz#d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"
2431 | dependencies:
2432 | postcss "^5.0.14"
2433 |
2434 | postcss-discard-overridden@^0.1.1:
2435 | version "0.1.1"
2436 | resolved "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz#8b1eaf554f686fb288cd874c55667b0aa3668d58"
2437 | dependencies:
2438 | postcss "^5.0.16"
2439 |
2440 | postcss-discard-unused@^2.2.1:
2441 | version "2.2.3"
2442 | resolved "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz#bce30b2cc591ffc634322b5fb3464b6d934f4433"
2443 | dependencies:
2444 | postcss "^5.0.14"
2445 | uniqs "^2.0.0"
2446 |
2447 | postcss-filter-plugins@^2.0.0:
2448 | version "2.0.3"
2449 | resolved "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz#82245fdf82337041645e477114d8e593aa18b8ec"
2450 | dependencies:
2451 | postcss "^5.0.4"
2452 |
2453 | postcss-merge-idents@^2.1.5:
2454 | version "2.1.7"
2455 | resolved "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz#4c5530313c08e1d5b3bbf3d2bbc747e278eea270"
2456 | dependencies:
2457 | has "^1.0.1"
2458 | postcss "^5.0.10"
2459 | postcss-value-parser "^3.1.1"
2460 |
2461 | postcss-merge-longhand@^2.0.1:
2462 | version "2.0.2"
2463 | resolved "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz#23d90cd127b0a77994915332739034a1a4f3d658"
2464 | dependencies:
2465 | postcss "^5.0.4"
2466 |
2467 | postcss-merge-rules@^2.0.3:
2468 | version "2.1.2"
2469 | resolved "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz#d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"
2470 | dependencies:
2471 | browserslist "^1.5.2"
2472 | caniuse-api "^1.5.2"
2473 | postcss "^5.0.4"
2474 | postcss-selector-parser "^2.2.2"
2475 | vendors "^1.0.0"
2476 |
2477 | postcss-message-helpers@^2.0.0:
2478 | version "2.0.0"
2479 | resolved "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz#a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e"
2480 |
2481 | postcss-minify-font-values@^1.0.2:
2482 | version "1.0.5"
2483 | resolved "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz#4b58edb56641eba7c8474ab3526cafd7bbdecb69"
2484 | dependencies:
2485 | object-assign "^4.0.1"
2486 | postcss "^5.0.4"
2487 | postcss-value-parser "^3.0.2"
2488 |
2489 | postcss-minify-gradients@^1.0.1:
2490 | version "1.0.5"
2491 | resolved "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz#5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"
2492 | dependencies:
2493 | postcss "^5.0.12"
2494 | postcss-value-parser "^3.3.0"
2495 |
2496 | postcss-minify-params@^1.0.4:
2497 | version "1.2.2"
2498 | resolved "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz#ad2ce071373b943b3d930a3fa59a358c28d6f1f3"
2499 | dependencies:
2500 | alphanum-sort "^1.0.1"
2501 | postcss "^5.0.2"
2502 | postcss-value-parser "^3.0.2"
2503 | uniqs "^2.0.0"
2504 |
2505 | postcss-minify-selectors@^2.0.4:
2506 | version "2.1.1"
2507 | resolved "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz#b2c6a98c0072cf91b932d1a496508114311735bf"
2508 | dependencies:
2509 | alphanum-sort "^1.0.2"
2510 | has "^1.0.1"
2511 | postcss "^5.0.14"
2512 | postcss-selector-parser "^2.0.0"
2513 |
2514 | postcss-modules-extract-imports@^1.0.0:
2515 | version "1.1.0"
2516 | resolved "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz#b614c9720be6816eaee35fb3a5faa1dba6a05ddb"
2517 | dependencies:
2518 | postcss "^6.0.1"
2519 |
2520 | postcss-modules-local-by-default@^1.0.1:
2521 | version "1.2.0"
2522 | resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069"
2523 | dependencies:
2524 | css-selector-tokenizer "^0.7.0"
2525 | postcss "^6.0.1"
2526 |
2527 | postcss-modules-scope@^1.0.0:
2528 | version "1.1.0"
2529 | resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90"
2530 | dependencies:
2531 | css-selector-tokenizer "^0.7.0"
2532 | postcss "^6.0.1"
2533 |
2534 | postcss-modules-values@^1.1.0:
2535 | version "1.3.0"
2536 | resolved "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20"
2537 | dependencies:
2538 | icss-replace-symbols "^1.1.0"
2539 | postcss "^6.0.1"
2540 |
2541 | postcss-normalize-charset@^1.1.0:
2542 | version "1.1.1"
2543 | resolved "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz#ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"
2544 | dependencies:
2545 | postcss "^5.0.5"
2546 |
2547 | postcss-normalize-url@^3.0.7:
2548 | version "3.0.8"
2549 | resolved "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz#108f74b3f2fcdaf891a2ffa3ea4592279fc78222"
2550 | dependencies:
2551 | is-absolute-url "^2.0.0"
2552 | normalize-url "^1.4.0"
2553 | postcss "^5.0.14"
2554 | postcss-value-parser "^3.2.3"
2555 |
2556 | postcss-ordered-values@^2.1.0:
2557 | version "2.2.3"
2558 | resolved "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz#eec6c2a67b6c412a8db2042e77fe8da43f95c11d"
2559 | dependencies:
2560 | postcss "^5.0.4"
2561 | postcss-value-parser "^3.0.1"
2562 |
2563 | postcss-reduce-idents@^2.2.2:
2564 | version "2.4.0"
2565 | resolved "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz#c2c6d20cc958284f6abfbe63f7609bf409059ad3"
2566 | dependencies:
2567 | postcss "^5.0.4"
2568 | postcss-value-parser "^3.0.2"
2569 |
2570 | postcss-reduce-initial@^1.0.0:
2571 | version "1.0.1"
2572 | resolved "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz#68f80695f045d08263a879ad240df8dd64f644ea"
2573 | dependencies:
2574 | postcss "^5.0.4"
2575 |
2576 | postcss-reduce-transforms@^1.0.3:
2577 | version "1.0.4"
2578 | resolved "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz#ff76f4d8212437b31c298a42d2e1444025771ae1"
2579 | dependencies:
2580 | has "^1.0.1"
2581 | postcss "^5.0.8"
2582 | postcss-value-parser "^3.0.1"
2583 |
2584 | postcss-selector-parser@^2.0.0, postcss-selector-parser@^2.2.2:
2585 | version "2.2.3"
2586 | resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90"
2587 | dependencies:
2588 | flatten "^1.0.2"
2589 | indexes-of "^1.0.1"
2590 | uniq "^1.0.1"
2591 |
2592 | postcss-svgo@^2.1.1:
2593 | version "2.1.6"
2594 | resolved "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz#b6df18aa613b666e133f08adb5219c2684ac108d"
2595 | dependencies:
2596 | is-svg "^2.0.0"
2597 | postcss "^5.0.14"
2598 | postcss-value-parser "^3.2.3"
2599 | svgo "^0.7.0"
2600 |
2601 | postcss-unique-selectors@^2.0.2:
2602 | version "2.0.2"
2603 | resolved "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz#981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"
2604 | dependencies:
2605 | alphanum-sort "^1.0.1"
2606 | postcss "^5.0.4"
2607 | uniqs "^2.0.0"
2608 |
2609 | postcss-value-parser@^3.0.1, postcss-value-parser@^3.0.2, postcss-value-parser@^3.1.1, postcss-value-parser@^3.1.2, postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0:
2610 | version "3.3.0"
2611 | resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz#87f38f9f18f774a4ab4c8a232f5c5ce8872a9d15"
2612 |
2613 | postcss-zindex@^2.0.1:
2614 | version "2.2.0"
2615 | resolved "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz#d2109ddc055b91af67fc4cb3b025946639d2af22"
2616 | dependencies:
2617 | has "^1.0.1"
2618 | postcss "^5.0.4"
2619 | uniqs "^2.0.0"
2620 |
2621 | postcss@^5.0.10, postcss@^5.0.11, postcss@^5.0.12, postcss@^5.0.13, postcss@^5.0.14, postcss@^5.0.16, postcss@^5.0.2, postcss@^5.0.4, postcss@^5.0.5, postcss@^5.0.6, postcss@^5.0.8, postcss@^5.2.16:
2622 | version "5.2.18"
2623 | resolved "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
2624 | dependencies:
2625 | chalk "^1.1.3"
2626 | js-base64 "^2.1.9"
2627 | source-map "^0.5.6"
2628 | supports-color "^3.2.3"
2629 |
2630 | postcss@^6.0.1:
2631 | version "6.0.23"
2632 | resolved "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
2633 | dependencies:
2634 | chalk "^2.4.1"
2635 | source-map "^0.6.1"
2636 | supports-color "^5.4.0"
2637 |
2638 | prepend-http@^1.0.0:
2639 | version "1.0.4"
2640 | resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
2641 |
2642 | preserve@^0.2.0:
2643 | version "0.2.0"
2644 | resolved "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b"
2645 |
2646 | private@^0.1.6, private@^0.1.8:
2647 | version "0.1.8"
2648 | resolved "https://registry.npmjs.org/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
2649 |
2650 | process-nextick-args@~2.0.0:
2651 | version "2.0.0"
2652 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
2653 |
2654 | process@^0.11.0, process@~0.11.0:
2655 | version "0.11.10"
2656 | resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
2657 |
2658 | promise@^7.1.1:
2659 | version "7.3.1"
2660 | resolved "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
2661 | dependencies:
2662 | asap "~2.0.3"
2663 |
2664 | prop-types@^15.6.0:
2665 | version "15.6.2"
2666 | resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102"
2667 | dependencies:
2668 | loose-envify "^1.3.1"
2669 | object-assign "^4.1.1"
2670 |
2671 | proxy-addr@~2.0.3:
2672 | version "2.0.4"
2673 | resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz#ecfc733bf22ff8c6f407fa275327b9ab67e48b93"
2674 | dependencies:
2675 | forwarded "~0.1.2"
2676 | ipaddr.js "1.8.0"
2677 |
2678 | prr@~1.0.1:
2679 | version "1.0.1"
2680 | resolved "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
2681 |
2682 | punycode@1.3.2:
2683 | version "1.3.2"
2684 | resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
2685 |
2686 | punycode@^1.2.4:
2687 | version "1.4.1"
2688 | resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2689 |
2690 | q@^1.1.2:
2691 | version "1.5.1"
2692 | resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
2693 |
2694 | qs@6.5.1:
2695 | version "6.5.1"
2696 | resolved "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2697 |
2698 | query-string@^4.1.0:
2699 | version "4.3.4"
2700 | resolved "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb"
2701 | dependencies:
2702 | object-assign "^4.1.0"
2703 | strict-uri-encode "^1.0.0"
2704 |
2705 | querystring-es3@~0.2.0:
2706 | version "0.2.1"
2707 | resolved "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
2708 |
2709 | querystring@0.2.0:
2710 | version "0.2.0"
2711 | resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
2712 |
2713 | randomatic@^3.0.0:
2714 | version "3.1.0"
2715 | resolved "https://registry.npmjs.org/randomatic/-/randomatic-3.1.0.tgz#36f2ca708e9e567f5ed2ec01949026d50aa10116"
2716 | dependencies:
2717 | is-number "^4.0.0"
2718 | kind-of "^6.0.0"
2719 | math-random "^1.0.1"
2720 |
2721 | range-parser@^1.0.3, range-parser@~1.2.0:
2722 | version "1.2.0"
2723 | resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
2724 |
2725 | raw-body@2.3.2:
2726 | version "2.3.2"
2727 | resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz#bcd60c77d3eb93cde0050295c3f379389bc88f89"
2728 | dependencies:
2729 | bytes "3.0.0"
2730 | http-errors "1.6.2"
2731 | iconv-lite "0.4.19"
2732 | unpipe "1.0.0"
2733 |
2734 | rc@^1.2.7:
2735 | version "1.2.8"
2736 | resolved "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
2737 | dependencies:
2738 | deep-extend "^0.6.0"
2739 | ini "~1.3.0"
2740 | minimist "^1.2.0"
2741 | strip-json-comments "~2.0.1"
2742 |
2743 | react-dom@16.4.2:
2744 | version "16.4.2"
2745 | resolved "https://registry.npmjs.org/react-dom/-/react-dom-16.4.2.tgz#4afed569689f2c561d2b8da0b819669c38a0bda4"
2746 | dependencies:
2747 | fbjs "^0.8.16"
2748 | loose-envify "^1.1.0"
2749 | object-assign "^4.1.1"
2750 | prop-types "^15.6.0"
2751 |
2752 | react@16.4.2:
2753 | version "16.4.2"
2754 | resolved "https://registry.npmjs.org/react/-/react-16.4.2.tgz#2cd90154e3a9d9dd8da2991149fdca3c260e129f"
2755 | dependencies:
2756 | fbjs "^0.8.16"
2757 | loose-envify "^1.1.0"
2758 | object-assign "^4.1.1"
2759 | prop-types "^15.6.0"
2760 |
2761 | readable-stream@^1.0.27-1, readable-stream@^1.1.13:
2762 | version "1.1.14"
2763 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9"
2764 | dependencies:
2765 | core-util-is "~1.0.0"
2766 | inherits "~2.0.1"
2767 | isarray "0.0.1"
2768 | string_decoder "~0.10.x"
2769 |
2770 | readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6:
2771 | version "2.3.6"
2772 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
2773 | dependencies:
2774 | core-util-is "~1.0.0"
2775 | inherits "~2.0.3"
2776 | isarray "~1.0.0"
2777 | process-nextick-args "~2.0.0"
2778 | safe-buffer "~5.1.1"
2779 | string_decoder "~1.1.1"
2780 | util-deprecate "~1.0.1"
2781 |
2782 | readdirp@^2.0.0:
2783 | version "2.1.0"
2784 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz#4ed0ad060df3073300c48440373f72d1cc642d78"
2785 | dependencies:
2786 | graceful-fs "^4.1.2"
2787 | minimatch "^3.0.2"
2788 | readable-stream "^2.0.2"
2789 | set-immediate-shim "^1.0.1"
2790 |
2791 | reduce-css-calc@^1.2.6:
2792 | version "1.3.0"
2793 | resolved "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz#747c914e049614a4c9cfbba629871ad1d2927716"
2794 | dependencies:
2795 | balanced-match "^0.4.2"
2796 | math-expression-evaluator "^1.2.14"
2797 | reduce-function-call "^1.0.1"
2798 |
2799 | reduce-function-call@^1.0.1:
2800 | version "1.0.2"
2801 | resolved "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz#5a200bf92e0e37751752fe45b0ab330fd4b6be99"
2802 | dependencies:
2803 | balanced-match "^0.4.2"
2804 |
2805 | regenerate@^1.2.1:
2806 | version "1.4.0"
2807 | resolved "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11"
2808 |
2809 | regenerator-runtime@^0.10.5:
2810 | version "0.10.5"
2811 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
2812 |
2813 | regenerator-runtime@^0.11.0:
2814 | version "0.11.1"
2815 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
2816 |
2817 | regenerator-transform@^0.10.0:
2818 | version "0.10.1"
2819 | resolved "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd"
2820 | dependencies:
2821 | babel-runtime "^6.18.0"
2822 | babel-types "^6.19.0"
2823 | private "^0.1.6"
2824 |
2825 | regex-cache@^0.4.2:
2826 | version "0.4.4"
2827 | resolved "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd"
2828 | dependencies:
2829 | is-equal-shallow "^0.1.3"
2830 |
2831 | regexpu-core@^1.0.0:
2832 | version "1.0.0"
2833 | resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b"
2834 | dependencies:
2835 | regenerate "^1.2.1"
2836 | regjsgen "^0.2.0"
2837 | regjsparser "^0.1.4"
2838 |
2839 | regexpu-core@^2.0.0:
2840 | version "2.0.0"
2841 | resolved "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240"
2842 | dependencies:
2843 | regenerate "^1.2.1"
2844 | regjsgen "^0.2.0"
2845 | regjsparser "^0.1.4"
2846 |
2847 | regjsgen@^0.2.0:
2848 | version "0.2.0"
2849 | resolved "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7"
2850 |
2851 | regjsparser@^0.1.4:
2852 | version "0.1.5"
2853 | resolved "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"
2854 | dependencies:
2855 | jsesc "~0.5.0"
2856 |
2857 | remove-trailing-separator@^1.0.1:
2858 | version "1.1.0"
2859 | resolved "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
2860 |
2861 | repeat-element@^1.1.2:
2862 | version "1.1.2"
2863 | resolved "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a"
2864 |
2865 | repeat-string@^1.5.2:
2866 | version "1.6.1"
2867 | resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
2868 |
2869 | repeating@^2.0.0:
2870 | version "2.0.1"
2871 | resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
2872 | dependencies:
2873 | is-finite "^1.0.0"
2874 |
2875 | requires-port@^1.0.0:
2876 | version "1.0.0"
2877 | resolved "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
2878 |
2879 | rimraf@^2.6.1:
2880 | version "2.6.2"
2881 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
2882 | dependencies:
2883 | glob "^7.0.5"
2884 |
2885 | ripemd160@0.2.0:
2886 | version "0.2.0"
2887 | resolved "https://registry.npmjs.org/ripemd160/-/ripemd160-0.2.0.tgz#2bf198bde167cacfa51c0a928e84b68bbe171fce"
2888 |
2889 | safe-buffer@5.1.1:
2890 | version "5.1.1"
2891 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
2892 |
2893 | safe-buffer@5.1.2, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
2894 | version "5.1.2"
2895 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
2896 |
2897 | "safer-buffer@>= 2.1.2 < 3":
2898 | version "2.1.2"
2899 | resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
2900 |
2901 | sax@^1.2.4, sax@~1.2.1:
2902 | version "1.2.4"
2903 | resolved "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
2904 |
2905 | semver@^5.3.0:
2906 | version "5.5.0"
2907 | resolved "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
2908 |
2909 | send@0.16.2:
2910 | version "0.16.2"
2911 | resolved "https://registry.npmjs.org/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
2912 | dependencies:
2913 | debug "2.6.9"
2914 | depd "~1.1.2"
2915 | destroy "~1.0.4"
2916 | encodeurl "~1.0.2"
2917 | escape-html "~1.0.3"
2918 | etag "~1.8.1"
2919 | fresh "0.5.2"
2920 | http-errors "~1.6.2"
2921 | mime "1.4.1"
2922 | ms "2.0.0"
2923 | on-finished "~2.3.0"
2924 | range-parser "~1.2.0"
2925 | statuses "~1.4.0"
2926 |
2927 | serve-index@^1.7.2:
2928 | version "1.9.1"
2929 | resolved "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
2930 | dependencies:
2931 | accepts "~1.3.4"
2932 | batch "0.6.1"
2933 | debug "2.6.9"
2934 | escape-html "~1.0.3"
2935 | http-errors "~1.6.2"
2936 | mime-types "~2.1.17"
2937 | parseurl "~1.3.2"
2938 |
2939 | serve-static@1.13.2:
2940 | version "1.13.2"
2941 | resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz#095e8472fd5b46237db50ce486a43f4b86c6cec1"
2942 | dependencies:
2943 | encodeurl "~1.0.2"
2944 | escape-html "~1.0.3"
2945 | parseurl "~1.3.2"
2946 | send "0.16.2"
2947 |
2948 | set-blocking@~2.0.0:
2949 | version "2.0.0"
2950 | resolved "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
2951 |
2952 | set-immediate-shim@^1.0.1:
2953 | version "1.0.1"
2954 | resolved "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz#4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"
2955 |
2956 | setimmediate@^1.0.5:
2957 | version "1.0.5"
2958 | resolved "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
2959 |
2960 | setprototypeof@1.0.3:
2961 | version "1.0.3"
2962 | resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz#66567e37043eeb4f04d91bd658c0cbefb55b8e04"
2963 |
2964 | setprototypeof@1.1.0:
2965 | version "1.1.0"
2966 | resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
2967 |
2968 | sha.js@2.2.6:
2969 | version "2.2.6"
2970 | resolved "https://registry.npmjs.org/sha.js/-/sha.js-2.2.6.tgz#17ddeddc5f722fb66501658895461977867315ba"
2971 |
2972 | signal-exit@^3.0.0:
2973 | version "3.0.2"
2974 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
2975 |
2976 | slash@^1.0.0:
2977 | version "1.0.0"
2978 | resolved "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
2979 |
2980 | socket.io-adapter@0.5.0:
2981 | version "0.5.0"
2982 | resolved "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz#cb6d4bb8bec81e1078b99677f9ced0046066bb8b"
2983 | dependencies:
2984 | debug "2.3.3"
2985 | socket.io-parser "2.3.1"
2986 |
2987 | socket.io-client@1.7.4, socket.io-client@^1.3.6:
2988 | version "1.7.4"
2989 | resolved "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.4.tgz#ec9f820356ed99ef6d357f0756d648717bdd4281"
2990 | dependencies:
2991 | backo2 "1.0.2"
2992 | component-bind "1.0.0"
2993 | component-emitter "1.2.1"
2994 | debug "2.3.3"
2995 | engine.io-client "~1.8.4"
2996 | has-binary "0.1.7"
2997 | indexof "0.0.1"
2998 | object-component "0.0.3"
2999 | parseuri "0.0.5"
3000 | socket.io-parser "2.3.1"
3001 | to-array "0.1.4"
3002 |
3003 | socket.io-parser@2.3.1:
3004 | version "2.3.1"
3005 | resolved "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz#dd532025103ce429697326befd64005fcfe5b4a0"
3006 | dependencies:
3007 | component-emitter "1.1.2"
3008 | debug "2.2.0"
3009 | isarray "0.0.1"
3010 | json3 "3.3.2"
3011 |
3012 | socket.io@^1.3.6:
3013 | version "1.7.4"
3014 | resolved "https://registry.npmjs.org/socket.io/-/socket.io-1.7.4.tgz#2f7ecedc3391bf2d5c73e291fe233e6e34d4dd00"
3015 | dependencies:
3016 | debug "2.3.3"
3017 | engine.io "~1.8.4"
3018 | has-binary "0.1.7"
3019 | object-assign "4.1.0"
3020 | socket.io-adapter "0.5.0"
3021 | socket.io-client "1.7.4"
3022 | socket.io-parser "2.3.1"
3023 |
3024 | sort-keys@^1.0.0:
3025 | version "1.1.2"
3026 | resolved "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
3027 | dependencies:
3028 | is-plain-obj "^1.0.0"
3029 |
3030 | source-list-map@^0.1.4, source-list-map@~0.1.7:
3031 | version "0.1.8"
3032 | resolved "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz#c550b2ab5427f6b3f21f5afead88c4f5587b2106"
3033 |
3034 | source-map-support@^0.4.15:
3035 | version "0.4.18"
3036 | resolved "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f"
3037 | dependencies:
3038 | source-map "^0.5.6"
3039 |
3040 | source-map@0.1.34:
3041 | version "0.1.34"
3042 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.1.34.tgz#a7cfe89aec7b1682c3b198d0acfb47d7d090566b"
3043 | dependencies:
3044 | amdefine ">=0.0.4"
3045 |
3046 | source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7:
3047 | version "0.5.7"
3048 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
3049 |
3050 | source-map@^0.6.1:
3051 | version "0.6.1"
3052 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
3053 |
3054 | source-map@~0.4.1:
3055 | version "0.4.4"
3056 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b"
3057 | dependencies:
3058 | amdefine ">=0.0.4"
3059 |
3060 | sprintf-js@~1.0.2:
3061 | version "1.0.3"
3062 | resolved "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
3063 |
3064 | "statuses@>= 1.3.1 < 2", "statuses@>= 1.4.0 < 2":
3065 | version "1.5.0"
3066 | resolved "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
3067 |
3068 | statuses@~1.4.0:
3069 | version "1.4.0"
3070 | resolved "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
3071 |
3072 | stream-browserify@^1.0.0:
3073 | version "1.0.0"
3074 | resolved "https://registry.npmjs.org/stream-browserify/-/stream-browserify-1.0.0.tgz#bf9b4abfb42b274d751479e44e0ff2656b6f1193"
3075 | dependencies:
3076 | inherits "~2.0.1"
3077 | readable-stream "^1.0.27-1"
3078 |
3079 | stream-cache@~0.0.1:
3080 | version "0.0.2"
3081 | resolved "https://registry.npmjs.org/stream-cache/-/stream-cache-0.0.2.tgz#1ac5ad6832428ca55667dbdee395dad4e6db118f"
3082 |
3083 | strict-uri-encode@^1.0.0:
3084 | version "1.1.0"
3085 | resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
3086 |
3087 | string-width@^1.0.1:
3088 | version "1.0.2"
3089 | resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"
3090 | dependencies:
3091 | code-point-at "^1.0.0"
3092 | is-fullwidth-code-point "^1.0.0"
3093 | strip-ansi "^3.0.0"
3094 |
3095 | "string-width@^1.0.2 || 2":
3096 | version "2.1.1"
3097 | resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
3098 | dependencies:
3099 | is-fullwidth-code-point "^2.0.0"
3100 | strip-ansi "^4.0.0"
3101 |
3102 | string_decoder@~0.10.25, string_decoder@~0.10.x:
3103 | version "0.10.31"
3104 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
3105 |
3106 | string_decoder@~1.1.1:
3107 | version "1.1.1"
3108 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
3109 | dependencies:
3110 | safe-buffer "~5.1.0"
3111 |
3112 | strip-ansi@^3.0.0, strip-ansi@^3.0.1:
3113 | version "3.0.1"
3114 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
3115 | dependencies:
3116 | ansi-regex "^2.0.0"
3117 |
3118 | strip-ansi@^4.0.0:
3119 | version "4.0.0"
3120 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
3121 | dependencies:
3122 | ansi-regex "^3.0.0"
3123 |
3124 | strip-json-comments@~2.0.1:
3125 | version "2.0.1"
3126 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
3127 |
3128 | supports-color@^2.0.0:
3129 | version "2.0.0"
3130 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
3131 |
3132 | supports-color@^3.1.0, supports-color@^3.1.1, supports-color@^3.2.3:
3133 | version "3.2.3"
3134 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
3135 | dependencies:
3136 | has-flag "^1.0.0"
3137 |
3138 | supports-color@^5.3.0, supports-color@^5.4.0:
3139 | version "5.4.0"
3140 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54"
3141 | dependencies:
3142 | has-flag "^3.0.0"
3143 |
3144 | svgo@^0.7.0:
3145 | version "0.7.2"
3146 | resolved "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz#9f5772413952135c6fefbf40afe6a4faa88b4bb5"
3147 | dependencies:
3148 | coa "~1.0.1"
3149 | colors "~1.1.2"
3150 | csso "~2.3.1"
3151 | js-yaml "~3.7.0"
3152 | mkdirp "~0.5.1"
3153 | sax "~1.2.1"
3154 | whet.extend "~0.9.9"
3155 |
3156 | tapable@^0.1.8, tapable@~0.1.8:
3157 | version "0.1.10"
3158 | resolved "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz#29c35707c2b70e50d07482b5d202e8ed446dafd4"
3159 |
3160 | tar@^4:
3161 | version "4.4.6"
3162 | resolved "https://registry.npmjs.org/tar/-/tar-4.4.6.tgz#63110f09c00b4e60ac8bcfe1bf3c8660235fbc9b"
3163 | dependencies:
3164 | chownr "^1.0.1"
3165 | fs-minipass "^1.2.5"
3166 | minipass "^2.3.3"
3167 | minizlib "^1.1.0"
3168 | mkdirp "^0.5.0"
3169 | safe-buffer "^5.1.2"
3170 | yallist "^3.0.2"
3171 |
3172 | time-stamp@^2.0.0:
3173 | version "2.0.1"
3174 | resolved "https://registry.npmjs.org/time-stamp/-/time-stamp-2.0.1.tgz#708a89359c1fc50bd5e7b1c8aa750d08c9172232"
3175 |
3176 | timers-browserify@^1.0.1:
3177 | version "1.4.2"
3178 | resolved "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz#c9c58b575be8407375cb5e2462dacee74359f41d"
3179 | dependencies:
3180 | process "~0.11.0"
3181 |
3182 | to-array@0.1.4:
3183 | version "0.1.4"
3184 | resolved "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"
3185 |
3186 | to-fast-properties@^1.0.3:
3187 | version "1.0.3"
3188 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3189 |
3190 | trim-right@^1.0.1:
3191 | version "1.0.1"
3192 | resolved "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
3193 |
3194 | tty-browserify@0.0.0:
3195 | version "0.0.0"
3196 | resolved "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
3197 |
3198 | type-is@~1.6.15, type-is@~1.6.16:
3199 | version "1.6.16"
3200 | resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz#f89ce341541c672b25ee7ae3c73dee3b2be50194"
3201 | dependencies:
3202 | media-typer "0.3.0"
3203 | mime-types "~2.1.18"
3204 |
3205 | ua-parser-js@^0.7.18:
3206 | version "0.7.18"
3207 | resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.18.tgz#a7bfd92f56edfb117083b69e31d2aa8882d4b1ed"
3208 |
3209 | uglify-js@~2.4.24:
3210 | version "2.4.24"
3211 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-2.4.24.tgz#fad5755c1e1577658bb06ff9ab6e548c95bebd6e"
3212 | dependencies:
3213 | async "~0.2.6"
3214 | source-map "0.1.34"
3215 | uglify-to-browserify "~1.0.0"
3216 | yargs "~3.5.4"
3217 |
3218 | uglify-to-browserify@~1.0.0:
3219 | version "1.0.2"
3220 | resolved "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7"
3221 |
3222 | ultron@1.0.x:
3223 | version "1.0.2"
3224 | resolved "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz#ace116ab557cd197386a4e88f4685378c8b2e4fa"
3225 |
3226 | uniq@^1.0.1:
3227 | version "1.0.1"
3228 | resolved "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
3229 |
3230 | uniqs@^2.0.0:
3231 | version "2.0.0"
3232 | resolved "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
3233 |
3234 | unpipe@1.0.0, unpipe@~1.0.0:
3235 | version "1.0.0"
3236 | resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
3237 |
3238 | url@~0.10.1:
3239 | version "0.10.3"
3240 | resolved "https://registry.npmjs.org/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64"
3241 | dependencies:
3242 | punycode "1.3.2"
3243 | querystring "0.2.0"
3244 |
3245 | user-home@^1.1.1:
3246 | version "1.1.1"
3247 | resolved "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190"
3248 |
3249 | util-deprecate@~1.0.1:
3250 | version "1.0.2"
3251 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
3252 |
3253 | util@0.10.3:
3254 | version "0.10.3"
3255 | resolved "https://registry.npmjs.org/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
3256 | dependencies:
3257 | inherits "2.0.1"
3258 |
3259 | util@~0.10.3:
3260 | version "0.10.4"
3261 | resolved "https://registry.npmjs.org/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901"
3262 | dependencies:
3263 | inherits "2.0.3"
3264 |
3265 | utils-merge@1.0.1:
3266 | version "1.0.1"
3267 | resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
3268 |
3269 | v8flags@^2.0.10:
3270 | version "2.1.1"
3271 | resolved "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4"
3272 | dependencies:
3273 | user-home "^1.1.1"
3274 |
3275 | vary@~1.1.2:
3276 | version "1.1.2"
3277 | resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
3278 |
3279 | vendors@^1.0.0:
3280 | version "1.0.2"
3281 | resolved "https://registry.npmjs.org/vendors/-/vendors-1.0.2.tgz#7fcb5eef9f5623b156bcea89ec37d63676f21801"
3282 |
3283 | vm-browserify@0.0.4:
3284 | version "0.0.4"
3285 | resolved "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
3286 | dependencies:
3287 | indexof "0.0.1"
3288 |
3289 | watchpack@^0.2.1:
3290 | version "0.2.9"
3291 | resolved "https://registry.npmjs.org/watchpack/-/watchpack-0.2.9.tgz#62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b"
3292 | dependencies:
3293 | async "^0.9.0"
3294 | chokidar "^1.0.0"
3295 | graceful-fs "^4.1.2"
3296 |
3297 | webpack-core@~0.6.0:
3298 | version "0.6.9"
3299 | resolved "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz#fc571588c8558da77be9efb6debdc5a3b172bdc2"
3300 | dependencies:
3301 | source-list-map "~0.1.7"
3302 | source-map "~0.4.1"
3303 |
3304 | webpack-dev-middleware@^1.2.0:
3305 | version "1.12.2"
3306 | resolved "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz#f8fc1120ce3b4fc5680ceecb43d777966b21105e"
3307 | dependencies:
3308 | memory-fs "~0.4.1"
3309 | mime "^1.5.0"
3310 | path-is-absolute "^1.0.0"
3311 | range-parser "^1.0.3"
3312 | time-stamp "^2.0.0"
3313 |
3314 | webpack-dev-server@1.12.0:
3315 | version "1.12.0"
3316 | resolved "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-1.12.0.tgz#1417becba96b366a9bebf5de4422c86de7716bde"
3317 | dependencies:
3318 | compression "^1.5.2"
3319 | connect-history-api-fallback "1.1.0"
3320 | express "^4.13.3"
3321 | http-proxy "^1.11.2"
3322 | optimist "~0.6.0"
3323 | serve-index "^1.7.2"
3324 | socket.io "^1.3.6"
3325 | socket.io-client "^1.3.6"
3326 | stream-cache "~0.0.1"
3327 | strip-ansi "^3.0.0"
3328 | supports-color "^3.1.1"
3329 | webpack-dev-middleware "^1.2.0"
3330 |
3331 | webpack@1.12.2:
3332 | version "1.12.2"
3333 | resolved "https://registry.npmjs.org/webpack/-/webpack-1.12.2.tgz#ef40ed5d7c54716f5fae1598a451669316434e51"
3334 | dependencies:
3335 | async "^1.3.0"
3336 | clone "^1.0.2"
3337 | enhanced-resolve "~0.9.0"
3338 | esprima "^2.5.0"
3339 | interpret "^0.6.4"
3340 | memory-fs "~0.2.0"
3341 | mkdirp "~0.5.0"
3342 | node-libs-browser ">= 0.4.0 <=0.6.0"
3343 | optimist "~0.6.0"
3344 | supports-color "^3.1.0"
3345 | tapable "~0.1.8"
3346 | uglify-js "~2.4.24"
3347 | watchpack "^0.2.1"
3348 | webpack-core "~0.6.0"
3349 |
3350 | whatwg-fetch@>=0.10.0:
3351 | version "2.0.4"
3352 | resolved "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f"
3353 |
3354 | whet.extend@~0.9.9:
3355 | version "0.9.9"
3356 | resolved "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz#f877d5bf648c97e5aa542fadc16d6a259b9c11a1"
3357 |
3358 | wide-align@^1.1.0:
3359 | version "1.1.3"
3360 | resolved "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457"
3361 | dependencies:
3362 | string-width "^1.0.2 || 2"
3363 |
3364 | window-size@0.1.0:
3365 | version "0.1.0"
3366 | resolved "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"
3367 |
3368 | wordwrap@0.0.2:
3369 | version "0.0.2"
3370 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
3371 |
3372 | wordwrap@~0.0.2:
3373 | version "0.0.3"
3374 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3375 |
3376 | wrappy@1:
3377 | version "1.0.2"
3378 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
3379 |
3380 | ws@~1.1.5:
3381 | version "1.1.5"
3382 | resolved "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz#cbd9e6e75e09fc5d2c90015f21f0c40875e0dd51"
3383 | dependencies:
3384 | options ">=0.0.5"
3385 | ultron "1.0.x"
3386 |
3387 | wtf-8@1.0.0:
3388 | version "1.0.0"
3389 | resolved "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz#392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a"
3390 |
3391 | xmlhttprequest-ssl@1.5.3:
3392 | version "1.5.3"
3393 | resolved "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz#185a888c04eca46c3e4070d99f7b49de3528992d"
3394 |
3395 | yallist@^3.0.0, yallist@^3.0.2:
3396 | version "3.0.2"
3397 | resolved "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz#8452b4bb7e83c7c188d8041c1a837c773d6d8bb9"
3398 |
3399 | yargs@~3.5.4:
3400 | version "3.5.4"
3401 | resolved "https://registry.npmjs.org/yargs/-/yargs-3.5.4.tgz#d8aff8f665e94c34bd259bdebd1bfaf0ddd35361"
3402 | dependencies:
3403 | camelcase "^1.0.2"
3404 | decamelize "^1.0.0"
3405 | window-size "0.1.0"
3406 | wordwrap "0.0.2"
3407 |
3408 | yeast@0.1.2:
3409 | version "0.1.2"
3410 | resolved "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419"
3411 |
--------------------------------------------------------------------------------