index
int64 0
0
| repo_id
stringlengths 16
145
| file_path
stringlengths 27
196
| content
stringlengths 1
16.7M
|
---|---|---|---|
0 | capitalone_repos/federated-model-aggregation/clients/javascript_client | capitalone_repos/federated-model-aggregation/clients/javascript_client/fma_connect/settings.ts | export class DefaultSettings {
url: string;
constructor() {
this.url = 'http://127.0.0.1:8000/';
}
}
|
0 | capitalone_repos/federated-model-aggregation/clients/javascript_client | capitalone_repos/federated-model-aggregation/clients/javascript_client/fma_connect/clients.ts | // import { DefaultSettings } from './settings';
// const defaultSettings = new DefaultSettings();
|
0 | capitalone_repos/federated-model-aggregation/clients/javascript_client | capitalone_repos/federated-model-aggregation/clients/javascript_client/.husky/pre-commit | cd clients/javascript_client
npm run format
npm run lint
npm run test
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/.pre-commit-config.yaml | files: clients/python_client/fma_connect
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: end-of-file-fixer
name: EOF in fma_connect
- id: trailing-whitespace
name: Whitespace in fma_connect
- id: check-ast
name: AST in fma_connect
- id: check-docstring-first
name: docstring first in fma_connect
- repo: https://github.com/psf/black
rev: 22.8.0
hooks:
- id: black
name: Black in fma_connect
- repo: https://github.com/pycqa/flake8
rev: '5.0.4' # pick a git hash / tag to point to
hooks:
- id: flake8
name: flake8 in fma_connect
# https://github.com/PyCQA/pydocstyle/issues/68 for ignore of D401
# https://github.com/OCA/maintainer-quality-tools/issues/552 for ignore of W503
args: ["--config=clients/python_client/setup.cfg", "--ignore=D401,W503"]
additional_dependencies: [flake8-docstrings]
exclude: (^.*/tests|^.*/__init__.py)
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort in fma_connect
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/setup.cfg | [metadata]
name = client
description = An interface used for client code to interact with the FMA service
long_description = file: README.md
license = Apache License 2.0
classifiers =
Framework :: Django
Framework :: Django :: 4.*
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Topic :: Education
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Information Analysis
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
[flake8]
max-line-length = 88
extend-ignore = E203
[isort]
multi_line_output=3
profile=black
skip=venv
src_paths=fma_connect
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/requirements.txt | requests>=2.27.1
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/.coveragerc | [run]
omit = */tests/*,setup.py
branch = True
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/Pipfile | [[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
requests = "2.27.1"
[dev-packages]
pytest = "*"
pytest-cov = "*"
black = "*"
flake8 = "*"
tox = "*"
pre-commit = "*"
[requires]
python_version = "3"
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/README.md | # Python Client for FMA service
## Install and Test
To install the requirements to test the client:
```
make install
```
To run the tests:
```
make test
```
For testing and coverage reports:
```
make test-and-coverage
```
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/Makefile |
.PHONY: install
install:
pipenv --rm || true
pipenv --clear
rm -f Pipfile.lock
pipenv install --dev
pipenv run pre-commit install
.PHONY: test
test:
pipenv run pytest
.PHONY: test-and-coverage
test-and-coverage:
pipenv run pytest --junit-xml=junit_xml_test_report.xml --cov-branch --cov=fma_connect .
pipenv run coverage xml -i
pipenv run coverage report --fail-under 80
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/requirements-dev.txt | tox
pytest
pytest-cov
pytest-mock
flake8
|
0 | capitalone_repos/federated-model-aggregation/clients | capitalone_repos/federated-model-aggregation/clients/python_client/setup.py | """Setup.py for fma-connect"""
# To use a consistent encoding
from os import path
from codecs import open
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
# Load package version
from fma_connect.version import __version__
project_path = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(project_path, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
# Get the install_requirements from requirements.txt
with open(path.join(project_path, 'requirements.txt'), encoding='utf-8') as f:
required_packages = f.read().splitlines()
DESCRIPTION = "Federated Model Aggregation's Python Clients"
packages = find_packages(exclude=["fma_connect/tests"])
setup(
name="fma-connect",
author="Kenny Bean, Tyler Farnan, Taylor Turner, Michael Davis, Jeremy Goodsitt",
version=__version__,
python_requires=">=3.8",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
classifiers=[
"Framework :: Django",
"Framework :: Django :: 4",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Information Analysis",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3",
],
# The project's main homepage.
url='https://github.com/capitalone/federated-model-aggregation',
# Choose your license
license='Apache License, Version 2.0',
keywords='Federated Learning',
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
# packages=find_packages(exclude=['src/test', 'src/sample']),
packages=packages,
# List run-time dependencies here. These will be installed by pip when
# requirements files see:
# your project is installed. For an analysis of "install_requires" vs pip's
# https://packaging.python.org/en/latest/requirements.html
install_requires=required_packages,
# List of run-time dependencies for the labeler. These will be installed
# by pip when someone installs the project[<label>].
extras_require={},
# # If there are data files included in your packages that need to be
# # have to be included in MANIFEST.in as well.
# # installed, specify them here. If using Python 2.6 or less, then these
include_package_data=True,
data_files=None,
)
print("find_packages():", find_packages())
|
0 | capitalone_repos/federated-model-aggregation/clients/python_client | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect/settings.py | """Client settings."""
default_url = "http://127.0.0.1:8000/"
|
0 | capitalone_repos/federated-model-aggregation/clients/python_client | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect/version.py | """File contains the version number for the package."""
MAJOR = 0
MINOR = 0
MICRO = 2
VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO)
__version__ = VERSION
|
0 | capitalone_repos/federated-model-aggregation/clients/python_client | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect/clients.py | """Web Client file."""
import os
from typing import Any
import requests
from fma_connect import exceptions, settings
class WebClient:
"""REST API Wrapper to interact with the federated learning service."""
def __init__(self, federated_model_id, uuid=None, url=None):
"""Initialization function for WebClient.
:param federated_model_id: id of the federated model for which to send
updates
:type federated_model_id: int
:param uuid: client uuid, None if not previously registered
:type uuid: str
:param url: url of the api, by default uses settings
:type url: str
"""
if url is None:
url = settings.default_url
self._url = url
self._uuid = uuid
self._federated_model_id = federated_model_id
self._is_registered = False
self._last_model_aggregate = None
@property
def uuid(self):
"""Client uuid."""
if self._uuid is None:
self._uuid = self.register()
return self._uuid
@property
def url(self):
"""URL of the API."""
return self._url
@property
def federated_model_id(self):
"""ID of the federated model for which to send updates."""
return self._federated_model_id
def _get_auth_header(self, uuid=None):
"""Generates the request auth header for the client.
:param uuid: client uuid, None if not previously registered
:type uuid: int
:return: dict of headers for the request
:rtype: Dict[('CLIENT-UUID': str)]
"""
if uuid is None:
uuid = self._uuid
return {"CLIENT-UUID": uuid}
def register(self):
"""Registers client with federated model.
Registers the client with the federated model. If the client is already
registered, no changes will be made.
:raises APIException: response is something other than 200 or 201
:return: string of the registered uuid
:rtype: str
"""
auth_header = None
if self._uuid:
auth_header = self._get_auth_header()
url = os.path.join(
self.url, "api/v1/models", str(self._federated_model_id), "register_client/"
)
response = requests.post(url, headers=auth_header, timeout=10)
if response.status_code not in [200, 201]:
raise exceptions.APIException(
status_code=response.status_code, message=response.json()
)
self._uuid = response.json()["uuid"]
self._is_registered = True
return response.json()["uuid"]
def send_update(self, data: Any, base_aggregate=None) -> dict:
"""
Sends updates to the API service.
:param data: the updates to the weights you intend of sending to API
:type data: Any
:param base_aggregate: the starting aggregate which your updates are based on,
defaults to None
:type base_aggregate: Any, optional
:raises APIException: response status code is something other than 201
:return: a dictionary of the response from the FMA Service
:model_data: The stored weights that now exist within the service's database
:rtype: Dict[('model_data': Any)]
"""
auth_header = None
if self._uuid:
auth_header = self._get_auth_header()
params = {
"federated_model": self._federated_model_id,
"data": data,
"base_aggregate": base_aggregate,
}
url = os.path.join(self.url, "api/v1/model_updates/")
response = requests.post(url, headers=auth_header, json=params, timeout=10)
if response.status_code != 201:
raise exceptions.APIException(
status_code=response.status_code, message=response.json()
)
return response.json()
def check_for_new_model_aggregate(self, update_after=None):
"""
Retrieves the latest model aggregate for the model.
:param update_after: aggregate id that any new aggregate has to be more
than, defaults to None
:type update_after: int, optional
:raises APIException: response status code is something other than 200
:return: response of the api in json format
:id: model aggregate object identifier
:results: output of the aggregation function (ie updated model weights)
:validation_score: output of the specified evaluation function
:rtype: Optional[Dict[('id': int),
('results': Any),
('validation_score': float)]]
"""
auth_header = None
if self._uuid:
auth_header = self._get_auth_header()
url = os.path.join(
self.url,
"api/v1/models",
str(self._federated_model_id),
"get_latest_aggregate/",
)
response = requests.get(url, headers=auth_header, timeout=10)
if response.status_code != 200:
raise exceptions.APIException(
status_code=response.status_code, message=response.json()
)
model_agg = response.json()
if not model_agg:
return None
response_agg_id = model_agg["id"]
# if latest agg is not new, don't return the aggregate
last_model_aggregate = update_after or self._last_model_aggregate
if last_model_aggregate is not None and last_model_aggregate >= response_agg_id:
model_agg = None
# update to latest
if update_after:
response_agg_id = max(response_agg_id, self._last_model_aggregate)
self._last_model_aggregate = response_agg_id
return model_agg
def get_current_artifact(self):
"""
Retrieves the latest artifact for the model.
:raises APIException: response status code is something other than 200
:return: response of the API in json format
:id: id of the artifact object
:values: model weights of the published artifact
:version: version of the model artifact published to production
inference environment
:created_on: timestamp
:federated_model: id of the base federated model object}
:rtype: Optional[Dict[('id': int),
('values': Any),
('created_on': str),
('federated_model': int)]]
"""
auth_header = None
if self._uuid:
auth_header = self._get_auth_header()
url = os.path.join(
self.url,
"api/v1/models",
str(self._federated_model_id),
"get_current_artifact/",
)
response = requests.get(url, headers=auth_header, timeout=10)
if response.status_code != 200:
raise exceptions.APIException(
status_code=response.status_code, message=response.json()
)
return response.json()
def check_for_latest_model(self, update_after=None):
"""Retrieves latest update to Federated Model.
Retrieves latest update to Federated model based on timestamp
regardless of artifact or aggregate.
:param update_after: aggregate id that any new aggregate has to be more
than, defaults to None
:type update_after: int, optional
:raises APIException: response status code is something other than 200
:return: response of the api in json format
:values: The data to be loaded into model schema
:aggregate: the id of the aggregate the values were pulled from
(None if pulling from artifact)
:rtype: Optional[Dict[('values': Any), ('aggregate': int)]]
"""
auth_header = None
if self._uuid:
auth_header = self._get_auth_header()
url = os.path.join(
self.url,
"api/v1/models",
str(self._federated_model_id),
"get_latest_model/",
)
response = requests.get(url, headers=auth_header, timeout=10)
if response.status_code != 200:
raise exceptions.APIException(
status_code=response.status_code, message=response.json()
)
model_agg = response.json()
if not model_agg:
return None
response_agg_id = (
model_agg["aggregate"] if model_agg["aggregate"] is not None else -1
)
# if latest agg is not new, don't return the aggregate
last_model_aggregate = update_after or self._last_model_aggregate
if last_model_aggregate is not None and last_model_aggregate >= response_agg_id:
model_agg = None
# update to latest
if update_after:
response_agg_id = max(response_agg_id, self._last_model_aggregate)
self._last_model_aggregate = response_agg_id
return model_agg
def send_val_results(self, results: Any, aggregate_id: int) -> dict:
"""
Sends updates to the FMA service.
:param results: the updates to the weights you intend of sending to FMA
:type results: Any
:param aggregate_id: the starting aggregate your updates are based on
:type aggregate_id: int
:raises APIException: response status code is something other than 201
:return: a dictionary of the response from the FMA Service in json format
:results: a copy of the pushed results including the status of the API call
:rtype: Dict
"""
auth_header = None
if self._uuid:
auth_header = self._get_auth_header()
params = {
"validation_results": results,
"federated_model": self._federated_model_id,
"aggregate": aggregate_id,
"client": self._uuid,
}
url = os.path.join(self.url, "api/v1/client_aggregate_scores/")
response = requests.post(url, headers=auth_header, json=params, timeout=10)
if response.status_code != 201:
raise exceptions.APIException(
status_code=response.status_code, message=response.json()
)
return response.json()
|
0 | capitalone_repos/federated-model-aggregation/clients/python_client | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect/exceptions.py | """API Exception class."""
class APIException(Exception):
"""Base class for REST framework exceptions.
Subclasses should provide `.status_code` and `.default_detail` properties.
"""
def __init__(self, status_code=None, message=None):
"""
Initialize APIException.
:param status_code: status_code
:type status_code: int
:param message: API Code message
:type message: str
"""
if message is None:
message = "Could not connect to the server."
if status_code is None:
status_code = "NULL"
self.error_message = ("An API error occurred (status_code={}): {}").format(
status_code, str(message)
)
def __str__(self):
"""Format API error message as a string."""
return str(self.error_message)
|
0 | capitalone_repos/federated-model-aggregation/clients/python_client | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect/__init__.py | from fma_connect import exceptions
from fma_connect.clients import * # noqa: F403
from fma_connect.version import __version__
|
0 | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect/tests/test_exceptions.py | import os
import sys
import unittest
TEST_ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
CLIENT_ROOT_DIR = os.path.dirname(TEST_ROOT_DIR)
sys.path.append(CLIENT_ROOT_DIR)
from fma_connect import exceptions # noqa: E402
class TestApiException(unittest.TestCase):
def test_init(self):
exception = exceptions.APIException()
self.assertEqual(
"An API error occurred (status_code=NULL): Could not connect to "
"the server.",
str(exception),
)
exception = exceptions.APIException(403, {"detail": "unauthorized"})
self.assertEqual(
"An API error occurred (status_code=403): " "{'detail': 'unauthorized'}",
str(exception),
)
|
0 | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect | capitalone_repos/federated-model-aggregation/clients/python_client/fma_connect/tests/test_webclient.py | import os
import sys
import unittest
import urllib.parse
from unittest import mock
TEST_ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
CLIENT_ROOT_DIR = os.path.dirname(TEST_ROOT_DIR)
sys.path.append(CLIENT_ROOT_DIR)
import fma_connect # noqa: E402
import fma_connect.settings # noqa: E402
from fma_connect import exceptions # noqa: E402
class TestWebClient(unittest.TestCase):
def test_init(self):
# only setting federated_model_id
client = fma_connect.WebClient(federated_model_id=1)
self.assertEqual(1, client.federated_model_id)
self.assertEqual(None, client._uuid)
self.assertEqual(fma_connect.settings.default_url, client.url)
self.assertFalse(client._is_registered)
self.assertIsNone(client._last_model_aggregate)
# setting url
client = fma_connect.WebClient(federated_model_id=1, url="http://test.com")
self.assertEqual(1, client.federated_model_id)
self.assertEqual(None, client._uuid)
self.assertEqual("http://test.com", client.url)
self.assertFalse(client._is_registered)
self.assertIsNone(client._last_model_aggregate)
# setting url and uuid
client = fma_connect.WebClient(
federated_model_id=1,
url="http://test.com",
uuid="ab359e5d-6991-4088-8815-a85d3e413c02",
)
self.assertEqual(1, client.federated_model_id)
self.assertEqual("ab359e5d-6991-4088-8815-a85d3e413c02", client.uuid)
self.assertEqual("http://test.com", client.url)
self.assertFalse(client._is_registered)
self.assertIsNone(client._last_model_aggregate)
@mock.patch("requests.post")
def test_register(self, mock_post):
# validate server error
client = fma_connect.WebClient(federated_model_id=1)
mock_post.return_value.status_code = 403
mock_post.return_value.json.return_value = {"detail": "unauthorized"}
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.register()
self.assertFalse(client._is_registered)
self.assertIsNone(client._last_model_aggregate)
# validate success, no uuid
client = fma_connect.WebClient(federated_model_id=1)
mock_post.return_value.status_code = 200
mock_post.return_value.json.return_value = {"uuid": "fake-uuid"}
uuid = client.register()
self.assertEqual("fake-uuid", uuid)
self.assertEqual("fake-uuid", client.uuid)
url = urllib.parse.urljoin(
fma_connect.settings.default_url, "/api/v1/models/1/register_client/"
)
mock_post.assert_called_with(url, headers=None, timeout=10)
self.assertTrue(client._is_registered)
self.assertIsNone(client._last_model_aggregate)
# validate success, no uuid
client = fma_connect.WebClient(federated_model_id=1, uuid="fake-uuid")
mock_post.return_value.status_code = 200
mock_post.return_value.json.return_value = {"uuid": "fake-uuid"}
uuid = client.register()
self.assertEqual("fake-uuid", uuid)
self.assertEqual("fake-uuid", client.uuid)
url = urllib.parse.urljoin(
fma_connect.settings.default_url, "/api/v1/models/1/register_client/"
)
mock_post.assert_called_with(
url, headers={"CLIENT-UUID": "fake-uuid"}, timeout=10
)
self.assertTrue(client._is_registered)
self.assertIsNone(client._last_model_aggregate)
@mock.patch("requests.post")
def test_send_update(self, mock_post):
client = fma_connect.WebClient(federated_model_id=1)
# validate server error
mock_post.return_value.status_code = 403
mock_post.return_value.json.return_value = {"detail": "unauthorized"}
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.send_update([1, 2, 3])
# validate error, with uuid
client._uuid = "fake-uuid"
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.send_update([1, 2, 3])
# validate success
mock_post.return_value.status_code = 201
mock_post.return_value.json.return_value = {"model_data": "test"}
response = client.send_update([1, 2, 3])
self.assertDictEqual({"model_data": "test"}, response)
# validate success with base_aggregate set
mock_post.return_value.status_code = 201
mock_post.return_value.json.return_value = {"model_data": "test"}
response = client.send_update([1, 2, 3], base_aggregate=1)
self.assertDictEqual({"model_data": "test"}, response)
@mock.patch("fma_connect.WebClient.register")
def test_uuid_property(self, mock_register):
# test when no uuid assigned
mock_register.return_value = "fake-uuid"
client = fma_connect.WebClient(federated_model_id=1)
self.assertEqual("fake-uuid", client.uuid)
mock_register.assert_called()
# test when uuid exists
mock_register.reset_mock()
client._uuid = "already-registered"
self.assertEqual("already-registered", client.uuid)
mock_register.assert_not_called()
@mock.patch("requests.get")
def test_check_for_new_model_aggregate(self, mock_get):
client = fma_connect.WebClient(federated_model_id=1)
# validate server error
mock_get.return_value.status_code = 403
mock_get.return_value.json.return_value = {"detail": "unauthorized"}
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.check_for_new_model_aggregate()
# validate error, with uuid
client._uuid = "fake-uuid"
mock_get.return_value.status_code = 403
mock_get.return_value.json.return_value = {"detail": "unauthorized"}
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.check_for_new_model_aggregate()
# validate success, no update_after set
self.assertIsNone(client._last_model_aggregate)
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"id": 1, # should cause an update to last agg
"results": [1, 4],
"validation_score": 1.0,
}
response = client.check_for_new_model_aggregate()
self.assertDictEqual(
{"id": 1, "results": [1, 4], "validation_score": 1.0}, response
)
self.assertEqual(1, client._last_model_aggregate)
# validate success, no values
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {}
response = client.check_for_new_model_aggregate()
self.assertIsNone(response)
self.assertEqual(1, client._last_model_aggregate)
# validate success, update not new
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"id": 1,
"results": [1, 4],
"validation_score": 6.7,
}
response = client.check_for_new_model_aggregate()
self.assertIsNone(response)
self.assertEqual(1, client._last_model_aggregate)
# validate success, update is new
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"id": 2, # should cause an update to last agg
"results": [2, 3],
"validation_score": 3.8,
}
response = client.check_for_new_model_aggregate()
self.assertDictEqual(
{"id": 2, "results": [2, 3], "validation_score": 3.8}, response
)
self.assertEqual(2, client._last_model_aggregate)
# validate success, update_after not new
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"id": 3, # should cause an update to last agg
"results": [1, 4],
"validation_score": 9.2,
}
response = client.check_for_new_model_aggregate(update_after=3)
self.assertIsNone(response)
self.assertEqual(3, client._last_model_aggregate)
# validate success, update_after is new
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"id": 2, # should not cause an update to last agg
"results": [2, 3],
"validation_score": None,
}
response = client.check_for_new_model_aggregate(update_after=1)
self.assertDictEqual(
{"id": 2, "results": [2, 3], "validation_score": None}, response
)
self.assertEqual(3, client._last_model_aggregate)
@mock.patch("requests.get")
def test_get_current_artifact(self, mock_get):
client = fma_connect.WebClient(federated_model_id=1)
# validate server error
mock_get.return_value.status_code = 403
mock_get.return_value.json.return_value = {"detail": "unauthorized"}
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.get_current_artifact()
# validate error, with uuid
client._uuid = "fake-uuid"
mock_get.return_value.status_code = 403
mock_get.return_value.json.return_value = {"detail": "unauthorized"}
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.get_current_artifact()
# validate success
self.assertIsNone(client._last_model_aggregate)
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"id": 3,
"values": [1, 2],
"version": "1.0.0",
"created_on": "2022-03-12T23:55:34.066180Z",
"federated_model": 1,
}
expected_response = mock_get.return_value.json.return_value
response = client.get_current_artifact()
self.assertDictEqual(expected_response, response)
@mock.patch("requests.get")
def test_check_for_latest_model(self, mock_get):
client = fma_connect.WebClient(federated_model_id=1)
# validate server error
mock_get.return_value.status_code = 403
mock_get.return_value.json.return_value = {"detail": "unauthorized"}
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.check_for_latest_model()
# validate error, with uuid
client._uuid = "fake-uuid"
mock_get.return_value.status_code = 403
mock_get.return_value.json.return_value = {"detail": "unauthorized"}
with self.assertRaisesRegex(
exceptions.APIException,
r"An API error occurred \(status_code=403"
r"\): {'detail': 'unauthorized'}",
):
client.check_for_latest_model()
# validate success w/ aggregate populated
self.assertIsNone(client._last_model_aggregate)
mock_get.return_value.json.return_value = {"values": [1, 2], "aggregate": 3}
mock_get.return_value.status_code = 200
expected_response = mock_get.return_value.json.return_value
response = client.check_for_latest_model()
self.assertDictEqual(expected_response, response)
# validate success w/o aggregate populated
client._last_model_aggregate = None
# Setup for no model aggregate
mock_get.return_value.json.return_value = {"values": [2, 5], "aggregate": None}
expected_response = mock_get.return_value.json.return_value
response = client.check_for_latest_model()
self.assertDictEqual(expected_response, response)
# validate success, no update_after set
client._last_model_aggregate = None
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"aggregate": 1, # should cause an update to last agg
"values": [1, 4],
}
response = client.check_for_latest_model()
self.assertDictEqual({"aggregate": 1, "values": [1, 4]}, response)
self.assertEqual(1, client._last_model_aggregate)
# validate success, no values
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {}
response = client.check_for_latest_model()
self.assertIsNone(response)
self.assertEqual(1, client._last_model_aggregate)
# validate success, update not new
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"aggregate": 1,
"values": [1, 4],
}
response = client.check_for_latest_model()
self.assertIsNone(response)
self.assertEqual(1, client._last_model_aggregate)
# validate success, update is new
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"aggregate": 2, # should cause an update to last agg
"values": [2, 3],
}
response = client.check_for_latest_model()
self.assertDictEqual({"aggregate": 2, "values": [2, 3]}, response)
self.assertEqual(2, client._last_model_aggregate)
# validate success, update_after not new
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"aggregate": 3, # should cause an update to last agg
"values": [1, 4],
}
response = client.check_for_latest_model(update_after=3)
self.assertIsNone(response)
self.assertEqual(3, client._last_model_aggregate)
# validate success, update_after is new
mock_get.return_value.status_code = 200
mock_get.return_value.json.return_value = {
"aggregate": 2, # should not cause an update to last agg
"values": [2, 3],
}
response = client.check_for_latest_model(update_after=1)
self.assertDictEqual({"aggregate": 2, "values": [2, 3]}, response)
self.assertEqual(3, client._last_model_aggregate)
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/.pre-commit-config.yaml | files: aggregator/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: end-of-file-fixer
name: EOF for aggregator
- id: trailing-whitespace
name: Whitespace for aggregator
- id: check-ast
name: python file for aggregator
- id: check-docstring-first
name: docstring first for aggregator
- repo: https://github.com/psf/black
rev: 22.8.0
hooks:
- id: black
name: Black for aggregator
- repo: https://github.com/pycqa/flake8
rev: '5.0.4'
hooks:
- id: flake8
name: flake8 for aggregator
files: aggregator/
# https://github.com/PyCQA/pydocstyle/issues/68 for ignore of D401
# https://github.com/OCA/maintainer-quality-tools/issues/552 for ignore of W503
args: ["--config=aggregator/setup.cfg", "--ignore=D401,W503"]
additional_dependencies: [flake8-docstrings]
exclude: (^aggregator/tests|^.*/__init__.py)
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
name: isort for aggregator
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/setup.cfg | [metadata]
name = aggregator
description = A component to perform aggregation on model updates that are passed to your system
long_description = file: README.md
license = Apache License 2.0
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: Information Technology
Intended Audience :: Science/Research
Topic :: Education
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Information Analysis
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
[tool:pytest]
django_find_project = false
pythonpath = "."
DJANGO_SETTINGS_MODULE = federated_learning_project.settings_local
env =
FMA_SETTINGS_MODULE = federated_learning_project.fma_settings
[flake8]
max-line-length = 88
extend-ignore = E203
[isort]
multi_line_output = 3
skip=iam/,examples/,connectors/,api_service/,clients/,.aws-sam,fma-core
profile = black
src_paths = .
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/manage.py | #!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys
try:
# TODO: abstract to file and remove only for testing locally
import pysqlite3 # noqa: F401
sys.modules["sqlite3"] = sys.modules.pop("pysqlite3")
except ModuleNotFoundError:
pass
def main():
"""Run administrative tasks."""
os.environ.setdefault(
"DJANGO_SETTINGS_MODULE", "federated_learning_project.settings_local"
)
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)
if __name__ == "__main__":
main()
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/app.py | """Application main file, this is where the lambda functionality is written."""
import json
import logging
from dataclasses import dataclass
from aws_lambda_powertools import Logger, Tracer
from aws_lambda_powertools.event_handler.api_gateway import ALBResolver, Response
from aws_lambda_powertools.logging import correlation_paths
from fma_core.workflows.tasks import agg_service, post_agg_service_hook
import patch_xray
# Can be removed when xray is updated and the patch is live.
patch_xray.patch()
URL_PREFIX = ""
logger = Logger()
logger.setLevel(logging.INFO)
tracer = Tracer()
# A aws_lambda_powertools application is used to route the ALB event to various
# endpoints. The @app markup below maps the functions to various endpoints and
# HTTP methods
app = ALBResolver()
# TODO: abstract to fma-core
@dataclass
class Task:
"""Used to construct a valid parameter for the post_agg_service function."""
args: list
success: bool
def __init__(self, args, success):
"""Initialization of the Task class.
:param args: Arguments
:type args: Dict, optional
:param success: The initial task success status
:type success: bool
"""
self.args = args
self.success = success
@app.get("/health")
@tracer.capture_method
def health_check():
"""A health check endpoint needed to register an API with a gateway.
:return: An ALB response.
:rtype: aws_lambda_powertools.event_handler.api_gateway.Response
"""
response_body = {"status": "healthy"}
return Response(
status_code=200, body=json.dumps(response_body), content_type="application/json"
)
@app.get(f"{URL_PREFIX}/example")
@app.get(f"{URL_PREFIX}/example/")
@tracer.capture_method
def example_get():
"""An example API endpoint that could be registered with a gateway.
Change this endpoint and the associated path to be specific to the API
being implemented
:return: An ALB response.
:rtype: aws_lambda_powertools.event_handler.api_gateway.Response
"""
response_body = {"data": {"message": "Hello World"}}
#
# Response must be in the format that the ALB understands
return Response(
status_code=200, body=json.dumps(response_body), content_type="application/json"
)
def validate_federated_model_id_as_int(id):
"""Sanitizes the federated model id as an integer.
Casts the federated model id to an integer.
Raises ValueError if 'id' is not castable to an integer.
:param id: The id of the Federated Model
:type id: int, float, str
:raises ValueError: the federated_model_id could not be converted to an int
:return: the federated model id as an integer
:rtype: int
"""
try:
id: int = int(id)
except ValueError:
raise ValueError("the federated_model_id could not be converted to an int")
return id
def create_response(response_body, status_code=200):
"""Creates valid lambda response with body inserted.
:param response_body: The response body returned
:type response_body: Union[str, int, float, bool, None, List, Dict]
:param status_code: The status code of the response,
defaults to 200
:type status_code: int, optional
:return: The full response with the statusCode, headers, and body
:rtype: Dict[('statusCode': <status_code>),
('headers': { 'Content-type' : 'application/json' }),
('body': <response_body>)]
"""
return {
"statusCode": status_code,
"headers": {
"Content-Type": "application/json",
},
"body": json.dumps(response_body),
}
@logger.inject_lambda_context(
correlation_id_path=correlation_paths.APPLICATION_LOAD_BALANCER
)
@tracer.capture_lambda_handler
def handler(event, context):
"""Utilizes the ALBResolver to route the event to the appropriate function.
:param event: Metadata about the event
:type event: Dict
:param context: The body of the event
:type context: Any
:return: The response from the event
:rtype: Dict
"""
logger.info(context)
logger.info(event)
if "httpMethod" not in event:
fed_id = event.get("detail", {}).get("model_id", None)
if not fed_id:
return create_response({"data": "NO MODEL ID PROVIDED"}, status_code=400)
fed_id = validate_federated_model_id_as_int(fed_id)
# default to False
success = False
agg_id = None
try:
agg_id = agg_service(fed_id)
success = True
except Exception as e:
logger.error(e)
finally:
task = Task(args=[fed_id], success=success)
post_agg_service_hook(task)
if agg_id:
logger.info("AGGREGATE CREATED: {}".format(agg_id))
return create_response({"data": dict(fed_id=fed_id, agg_id=agg_id)})
return app.resolve(event, context)
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/.coveragerc | [run]
omit = */tests/*,manage.py,*/settings_remote.py, */settings_remote_clean.py, */fma_settings_clean.py
branch = True
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/template-remote.yaml | AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
FmaServerless
Sample SAM Template for asp-template-generator
# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
Function:
Timeout: 15
Environment:
Variables:
ENV: dev
fake/path/to/passwords: "{\"fake\": \"secret\"}"
DJANGO_SETTINGS_MODULE: federated_learning_project.settings_remote
FMA_SETTINGS_MODULE: federated_learning_project.fma_settings
IS_LAMBDA_DEPLOYMENT: True
Resources:
FmaServerless:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: ./
Handler: app.handler
Runtime: python3.9
Architectures:
- x86_64
Events:
HelloWorld:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /health
Method: get
ExampleEndpoint:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /example
Method: get
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/template.yaml | AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
FmaServerless
Sample SAM Template for asp-template-generator
# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
Function:
Timeout: 15
Environment:
Variables:
ENV: dev
fake/path/to/passwords: "{\"fake\": \"secret\"}"
DJANGO_SETTINGS_MODULE: federated_learning_project.settings_local
IS_LAMBDA_DEPLOYMENT: True
FMA_SETTINGS_MODULE: federated_learning_project.fma_settings
Resources:
FmaServerless:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Metadata:
BuildMethod: makefile
Properties:
CodeUri: ./
Handler: app.handler
Runtime: python3.9
Architectures:
- x86_64
Events:
HelloWorld:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /health
Method: get
ExampleEndpoint:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /example
Method: get
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/Pipfile | [[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
pytest = "*"
coverage = "*"
behave = "*"
flake8 = "*"
pytest-cov = "*"
pre-commit = "*"
pytest-django = "*"
pytest-env = "*"
[packages]
requests = "2.28.1"
aws-lambda-powertools = {extras = ["tracer"], version = "2.3.0"}
boto3 = "1.26.11"
numpy = "1.22.2"
fma-django = {path = "./artifacts/fma_django-0.0.1-py3-none-any.whl"}
fma-core = {path = "./artifacts/fma_core-0.0.1-py3-none-any.whl"}
[requires]
python_version = "3"
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/README.md | # Aggregator
## Description
The Aggregator component is used to perform aggregation on model updates that are passed to your system
via the API Service. The aggregator is a terraform deployable component of
the FMA service. The aggregator is made up of components called Connectors.
These Connectors allow the aggregator component to pass information both externally to data sources and
internally to other components.
This repository utilizes the `serverless-function/scheduled-event` managed pipeline and was
initially created by the Application Scaffolding Pipeline.
## Setup
### Installation
This project is managed with [Pipenv](https://pipenv.pypa.io/en/latest/).
1. Compile the django connector package:
```
make fma-django-compile
```
2. Install your pipenv dependencies and pre-commit [More info](https://pipenv.pypa.io/en/latest/basics/):
```
make install
```
### Settings Remote File
There is a file that controls the initial setup of the environment where the aggregator will run.
(`aggregator/federated_learning_project/settings_remote.py`).
The following things will have to be set the developer:
* Environment Variables to be set
* FMA_DATABASE_NAME - The name of the metadata database that is desired
* FMA_DATABASE_HOST - The address that your database will be hosted
* FMA_DATABASE_PORT- The port the database will use for communication
* FMA_DB_SECRET_PATH - The path used to store secrets permissions definitions
* Values to set be within the `settings_remote.py` file
* AGGREGATOR_LAMBDA_ARN - The arn associated with the aggregator component you wish to spin up
**Note: These values must match with the values set to the corresponding terraform deployment resources if terraform is
the form of deployment chosen**
### FMA Settings Description
The aggregator connector is customizable for many types of deployments.
The aggregator’s connector type is decided by the settings file
(`aggregator/federated_learning_project/fma_settings.py`)
```
INSTALLED_PACKAGES = ["fma_django_connectors"]
AGGREGATOR_SETTINGS = {
"aggregator_connector_type": "DjangoAggConnector",
"metadata_connector": {
"type": "DjangoMetadataConnector",
},
"model_data_connector": {
"type": None
}
"secrets_manager": "<name of secrets manager>",
"secrets_name": ["<name of secrets to pull>"]
}
```
As seen above, `INSTALLED_PACKAGES` references the package(s) which contain the connectors being used in the below settings.
`AGGREGATOR_SETTINGS` is customized by setting the `aggregator_connector_type`.
There are also the settings of the underlying connectors that the aggregator connector uses.
* The `model_data_connector` is used to push and pull data to and from the resource that stores model data for your federated experiments
* The `metadata_connector` is used to push and pull data to and from the resource that stores metadata for your federated experiments
*Note: We talk about the model and metadata connectors in greater detail in the “Connectors” component section*
The last part of the `AGGREGATOR_SETTINGS` is the `secrets_manager` and `secrets_name`. <br>
These settings are used to tell the aggregator what type of secrets manager the user
is requesting to use and the name of the secrets the user wishes to grab using the
specified manager.
## Local Testing and Development
To run `pre-commit` hooks.
If you want to run the `pre-commit` fresh over all the files, use the `--all-files` flag
```
pipenv run pre-commit run
```
Use the following command to run the tests:
```
make test
```
For testing and coverage reports:
```
make test-and-coverage
```
## Setting up and running AWS SAM
The `template.yaml` included in this repo is configured to proved support for
`sam local invoke` [info here](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-cli-command-reference-sam-local-invoke.html).
Download and tag the appropriate emulation images:
```
docker pull <TMP_PATH_TO_IMAGE>
docker tag <TMP_PATH_TO_IMAGE>
```
Install the AWS SAM CLI (May need to enable proxy):
```
brew tap aws/tap
brew install aws-sam-cli
```
To use SAM (specifically `sam local start-api`), run the following Makefile commands (Requires pipenv steps):
```
make sam-build-remote
make sam-build-local
```
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/Makefile | .PHONY: install
install:
pipenv --rm || true
pipenv --clear
rm -rf Pipfile.lock
pipenv install --dev
pipenv run pre-commit install
.PHONY: test
test:
pipenv run pytest
.PHONY: test-and-coverage
test-and-coverage:
pipenv run pytest --junit-xml=junit_xml_test_report.xml --cov-branch --cov=. .
pipenv run coverage xml -i
pipenv run coverage report --fail-under 80
.PHONY: sam-build-local
sam-build-local:
PIPENV_VERBOSITY=-1 \
pipenv requirements --dev > requirements.txt && \
pipenv run echo "pysqlite3-binary" >> requirements.txt && \
pipenv run sam build --debug --use-container
.PHONY: sam-build-remote
sam-build-remote:
PIPENV_VERBOSITY=-1 \
pipenv requirements > requirements.txt && \
pipenv run sam build --debug --use-container --template=./template-remote.yaml
.PHONY: sam-local
sam-local:
PIPENV_VERBOSITY=-1 pipenv run sam local invoke -e tests/fixtures/sam-local-event.json
.PHONY: build-FmaServerless
build-FmaServerless:
mkdir -p "$(ARTIFACTS_DIR)"
cp -r ./* "$(ARTIFACTS_DIR)"
python -m pip install -r requirements.txt -t "$(ARTIFACTS_DIR)" --find-links ./artifacts
python "$(ARTIFACTS_DIR)"/manage.py migrate
python "$(ARTIFACTS_DIR)"/manage.py loaddata tests/fixtures/TaskQueue_User.json
python "$(ARTIFACTS_DIR)"/manage.py loaddata tests/fixtures/TaskQueue_client.json
python "$(ARTIFACTS_DIR)"/manage.py loaddata tests/fixtures/DjangoQ_Schedule.json
python "$(ARTIFACTS_DIR)"/manage.py loaddata tests/fixtures/DjangoQ_Task.json
python "$(ARTIFACTS_DIR)"/manage.py loaddata tests/fixtures/TaskQueue_FederatedModel.json
python "$(ARTIFACTS_DIR)"/manage.py loaddata tests/fixtures/TaskQueue_ModelAggregate.json
python "$(ARTIFACTS_DIR)"/manage.py loaddata tests/fixtures/TaskQueue_ModelArtifact.json
python "$(ARTIFACTS_DIR)"/manage.py loaddata tests/fixtures/TaskQueue_ModelUpdate.json
cp -a tests/fixtures/mediafiles/. "$(ARTIFACTS_DIR)"/mediafiles/
.PHONY: fma-django-compile
fma-django-compile:
PIPENV_VERBOSITY=-1
rm -rf artifacts && \
cd ../connectors/django && \
pipenv run python setup.py sdist bdist_wheel && \
mkdir -p ../../aggregator/artifacts && \
cp -r dist/* ../../aggregator/artifacts/ && \
cd ../../fma-core && \
pipenv run python setup.py sdist bdist_wheel && \
cp -r dist/* ../aggregator/artifacts/
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/samconfig.toml | version = 0.1
[default.local_invoke]
[default.local_invoke.parameters]
skip_pull_image=true # --skip-pull-image
[default.local_start_api]
[default.local_start_api.parameters]
skip_pull_image=true # --skip-pull-image
|
0 | capitalone_repos/federated-model-aggregation | capitalone_repos/federated-model-aggregation/aggregator/patch_xray.py | """This code is sliced from a future version of the aws-xray-sdk not yet merged.
If errors, aws-xray-sdk patched this may be able to be removed.
https://github.com/aws/aws-xray-sdk-python/pull/350/files
"""
import wrapt
from aws_xray_sdk.ext.dbapi2 import XRayTracedConn, XRayTracedCursor
def patch():
"""Patches xray function wrapper."""
wrapt.wrap_function_wrapper(
"psycopg2.extras", "register_default_jsonb", _xray_register_default_jsonb_fix
)
def _xray_register_default_jsonb_fix(wrapped, instance, args, kwargs):
our_kwargs = dict()
for key, value in kwargs.items():
if key == "conn_or_curs" and isinstance(
value, (XRayTracedConn, XRayTracedCursor)
):
# unwrap the connection or cursor to be sent to register_default_jsonb
value = value.__wrapped__
our_kwargs[key] = value
return wrapped(*args, **our_kwargs)
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/secrets_managers/aws_secrets.py | """Utility functionality used to grab secrets from AWS Secrets Manager."""
import json
import os
import requests
_secret_cache = {}
class SecretException(Exception):
"""Overarching secret handler class."""
pass
def get_secret(secret_name):
"""
Gets secret info from a folder path.
:param secret_name: name of secret
:type secret_name: str
:return: Secret Token
:rtype: Union[str, int, float, bool, None, List, Dict]
"""
secret_extension_port = os.environ.get(
"PARAMETERS_SECRETS_EXTENSION_HTTP_PORT", "2773"
)
endpoint = f"http://localhost:{secret_extension_port}"
secret_path = os.environ["FMA_DB_SECRET_PATH"]
value = os.getenv(secret_name, None)
try:
value = json.loads(value)
except (json.JSONDecodeError, TypeError):
pass
if value is None:
try:
# Secrets rotation will require more attributes of this request
secrets_extension_endpoint = (
f"{endpoint}/secretsmanager/get?secretId={secret_name}"
)
response = requests.get(secrets_extension_endpoint)
secret_data = response.json().get("SecretString")
if secret_data is not None:
value = secret_data
_secret_cache[secret_path] = value
except Exception as e:
raise SecretException(
"Failure: Cannot grab key from secret manager."
) from e
return value or ""
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/federated_learning_project/settings_base.py | """
Django settings for federated_learning_project project.
Generated by 'django-admin startproject' using Django 4.1.3.
For more information on this file, see
https://docs.djangoproject.com/en/4.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.1/ref/settings/
"""
from pathlib import Path
from .settings_secret import * # noqa: F403,F401,E402
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
# Application definition
INSTALLED_APPS = [
"django.contrib.auth",
"django.contrib.contenttypes",
# temp install of django q
"django_q",
# MPTT install
"mptt",
# app
"fma_django",
]
# Database
# https://docs.djangoproject.com/en/4.1/ref/settings/#databases
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": BASE_DIR / "db.sqlite3",
}
}
# Internationalization
# https://docs.djangoproject.com/en/4.1/topics/i18n/
LANGUAGE_CODE = "en-us"
TIME_ZONE = "UTC"
USE_I18N = True
USE_TZ = True
# Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
DATA_UPLOAD_MAX_MEMORY_SIZE = 100 * (1024**2) # 100 MB
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/federated_learning_project/settings_remote.py | """Django settings used for the remote environment."""
import importlib
import os
from fma_core.conf import settings as fma_settings
from .settings_base import * # noqa: F401,F403
# Overwrite all the settings specific to remote deployment environment
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
# ENVIRONMENT VARS
fma_database_name = os.environ["FMA_DATABASE_NAME"]
fma_database_host = os.environ["FMA_DATABASE_HOST"]
fma_database_port = os.environ["FMA_DATABASE_PORT"]
SECRETS_PATH = os.environ["FMA_DB_SECRET_PATH"]
# PLACEHOLDER VARS NEEDED TO BE SET HERE
AGGREGATOR_LAMBDA_ARN = os.environ.get("LAMBDA_INVOKED_FUNCTION_ARN", "")
secrets_manager = importlib.import_module(
"secrets_managers." + fma_settings.AGGREGATOR_SETTINGS["secrets_manager"]
)
db_secret = secrets_manager.get_secret(SECRETS_PATH)
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql_psycopg2",
"NAME": fma_database_name,
"USER": list(db_secret.keys())[0],
"PASSWORD": list(db_secret.values())[0],
"HOST": fma_database_host,
"PORT": fma_database_port,
}
}
# aws settings
AWS_STORAGE_BUCKET_NAME = "fma-serverless-storage"
AWS_DEFAULT_ACL = None
AWS_S3_OBJECT_PARAMETERS = {"CacheControl": "max-age=86400"}
# s3 static settings
STATIC_URL = "/static/"
DEFAULT_FILE_STORAGE = "storages.backends.s3boto3.S3Boto3Storage"
STATICFILES_STORAGE = "federated_learning_project.s3_storage_utils.StaticStorage"
MEDIA_URL = "/mediafiles/"
IS_LOCAL_DEPLOYMENT = False
TAGS = {
# """<TMP_TAGKEY>""": """<TMP_TAGVALUE>""",
}
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/federated_learning_project/settings_local.py | """Django settings used for the local environment."""
import os
import sys
try:
# TODO: abstract to file and remove only for testing locally
import pysqlite3 # noqa: F401
sys.modules["sqlite3"] = sys.modules.pop("pysqlite3")
except ModuleNotFoundError:
pass
from .settings_base import * # noqa: F403,F401
MEDIA_ROOT = os.environ.get("DJANGO_MEDIA_ROOT", "media_root")
PROJECT_ROOT = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
FIXTURE_DIRS = (os.path.join(PROJECT_ROOT, "tests/fixtures"),)
# local storage settings
MEDIA_ROOT = os.environ.get("DJANGO_MEDIA_ROOT", "mediafiles")
MEDIA_URL = "/mediafiles/"
IS_LOCAL_DEPLOYMENT = True
try:
IS_LAMBDA_DEPLOYMENT = bool(os.environ.get("IS_LAMBDA_DEPLOYMENT", False))
except Exception:
IS_LAMBDA_DEPLOYMENT = False
if IS_LAMBDA_DEPLOYMENT:
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": "/tmp/db.sqlite3",
}
}
# TODO: fix workaround for lambda non-persistent memory to locally test
import shutil
shutil.copyfile("./db.sqlite3", "/tmp/db.sqlite3")
shutil.copytree("./mediafiles/", "/tmp/mediafiles/")
MEDIA_ROOT = "/tmp/mediafiles/"
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/federated_learning_project/version.py | """File contains the version number for the package."""
MAJOR = 0
MINOR = 0
MICRO = 1
VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO)
__version__ = VERSION
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/federated_learning_project/settings_secret.py | """Set secret keys for api use."""
import os
import secrets
SECRET_KEY = str(os.environ.get("SECRET_KEY", None))
if not SECRET_KEY:
SECRET_KEY = secrets.token_urlsafe(50)
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/federated_learning_project/fma_settings.py | """Abstract aggregator settings."""
INSTALLED_PACKAGES = ["fma_django_connectors"]
AGGREGATOR_SETTINGS = {
"aggregator_connector_type": "DjangoAggConnector",
"metadata_connector": {
"type": "DjangoMetadataConnector",
},
"secrets_manager": "<name of secrets manager>",
"secrets_name": ["<name of secrets to pull>"],
}
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/tests/test_aws_secrets.py | import os
from unittest import mock
import pytest
from botocore.exceptions import ClientError
from secrets_managers.aws_secrets import SecretException, get_secret
mock_environ = os.environ.copy()
@mock.patch("requests.get")
def test_get_secret_string_via_api(mock_get):
mocked_secret = {"SecretString": "my-secret"}
mock_get.return_value.json.return_value = mocked_secret
secret_key = "my-secret"
res = get_secret(secret_key)
assert res == "my-secret"
@mock.patch("requests.get")
def test_get_secret_binary_via_api(mock_get):
mocked_secret = {"SecretString": "my-secret"}
mock_get.return_value.json.return_value = mocked_secret
secret_key = "my-secret"
res = get_secret(secret_key)
assert res == "my-secret"
@mock.patch("os.environ", mock_environ)
def test_get_secret_via_env():
mock_environ.update({"test": {"fake": "data"}})
secret_key = "test"
result = get_secret(secret_key)
assert result == {"fake": "data"}
@mock.patch("requests.get")
def test_get_exception(mock_get):
secret_key = "my-secret"
error_messages = ["Failure: Cannot grab key from secret manager."]
for error_message in error_messages:
mock_get.return_value.json.side_effect = Exception("test")
with pytest.raises(SecretException) as e_info:
_ = get_secret(secret_key)
assert e_info == error_message
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/tests/conftest.py | """Sets root directory for repo."""
import os
import sys
from os.path import abspath, dirname
root_dir = dirname(abspath(__file__))
sys.path.append(root_dir)
os.environ["FMA_SETTINGS_MODULE"] = "federated_learning_project.fma_settings"
os.environ["FMA_DB_SECRET_PATH"] = "fake/path"
|
0 | capitalone_repos/federated-model-aggregation/aggregator | capitalone_repos/federated-model-aggregation/aggregator/tests/test_handler.py | import json
from dataclasses import dataclass
from unittest import mock
import django
import pytest
from django.test import TestCase
from fma_django import models as fma_django_models
from fma_django_api import utils
import app
from secrets_managers.aws_secrets import get_secret
SECRET_KEYS = ["fake/path"]
def mock_read_file(self, *args, **kwargs):
name = self.name.split("/")[-1]
if name in ["5", "7", "save_create"]:
return "[1, 2, 4]"
elif name in ["6", "8"]:
return "[5, 2, 3]"
return ""
def mock_file(self, *args, **kawrgs):
name = self.name.split("/")[-1]
# Turn aggregation results into file
if name in ["5", "7", "save_create"]:
test_data = utils.create_model_file([1, 2, 4])
return test_data
if name in ["6", "8"]:
test_data = utils.create_model_file([5, 2, 3])
return test_data
@pytest.fixture
def lambda_context():
@dataclass
class LambdaContext:
function_name: str = "test"
memory_limit_in_mb: int = 128
invoked_function_arn: str = (
"arn:aws:events:us-east-1:123456789012:rule/ExampleRule"
)
aws_request_id: str = "fake_request_id"
return LambdaContext()
@pytest.mark.django_db
def test_health_check(lambda_context):
test_event = {"path": "/health", "httpMethod": "GET"}
result = app.handler(test_event, lambda_context)
assert result["statusCode"] == 200
@mock.patch("secrets_managers.aws_secrets.get_secret")
@mock.patch("django.db.models.fields.files.FieldFile.read", mock_read_file)
@mock.patch("django.db.models.fields.files.FieldFile.open", mock_file)
class TestDBConnection(TestCase):
fixtures = [
"TaskQueue_client.json",
"DjangoQ_Schedule.json",
"TaskQueue_User.json",
"TaskQueue_FederatedModel.json",
"TaskQueue_ModelUpdate.json",
"TaskQueue_ModelAggregate.json",
]
def test_handler(self, mock_get_secrets, *mocks):
context = mock.Mock()
# Requirement require_x_updates not met (1 update, expected 3)
event = {"detail": {"model_id": 1}}
actual_response = app.handler(event, context)
expected_response = {
"statusCode": 200,
"headers": {
"Content-Type": "application/json",
},
"body": json.dumps({"data": {"fed_id": 1, "agg_id": None}}),
}
self.assertDictEqual(expected_response, actual_response)
# Federated Model has no registered clients
event = {"detail": {"model_id": 2}}
actual_response = app.handler(event, context)
# agg_id is None because there are no clients to registered
# so agg model cannot be created with zero valid updates
expected_response = {
"statusCode": 200,
"headers": {
"Content-Type": "application/json",
},
"body": json.dumps({"data": {"fed_id": 2, "agg_id": None}}),
}
self.assertDictEqual(expected_response, actual_response)
# Successful aggregate creation
event = {"detail": {"model_id": 3}}
actual_response = app.handler(event, context)
expected_response = {
"statusCode": 200,
"headers": {
"Content-Type": "application/json",
},
"body": json.dumps({"data": {"fed_id": 3, "agg_id": 3}}),
}
self.assertDictEqual(expected_response, actual_response)
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/DjangoQ_Task.json | [
{
"model": "django_q.task",
"pk": "00e1e856f432482a8ec88766615c5764",
"fields": {
"name": "hotel-one-oregon-autumn",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAYWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "1",
"started": "2022-11-03T15:47:25.437Z",
"stopped": "2022-11-03T15:47:25.555Z",
"success": true,
"attempt_count": 1
}
},
{
"model": "django_q.task",
"pk": "0246b30654ac4cc9b3eaa66835554dba",
"fields": {
"name": "washington-louisiana-nebraska-nebraska",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAoWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "2",
"started": "2023-01-16T21:37:02.390Z",
"stopped": "2023-01-16T21:37:02.399Z",
"success": true,
"attempt_count": 1
}
},
{
"model": "django_q.task",
"pk": "03b637f07453428c82838f30e4f4c84c",
"fields": {
"name": "king-utah-sad-mountain",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAYWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "1",
"started": "2022-12-13T23:32:25.130Z",
"stopped": "2022-12-13T23:32:25.285Z",
"success": true,
"attempt_count": 1
}
},
{
"model": "django_q.task",
"pk": "0524ce5f18684e3c809bce35490b21ca",
"fields": {
"name": "pizza-alanine-timing-oven",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAYWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "1",
"started": "2022-12-11T23:34:25.975Z",
"stopped": "2022-12-11T23:34:26.130Z",
"success": true,
"attempt_count": 1
}
},
{
"model": "django_q.task",
"pk": "06fe00da1cfe4983b140a9fd8aac19ed",
"fields": {
"name": "carpet-cola-orange-spring",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAYWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "1",
"started": "2022-11-29T16:31:15.312Z",
"stopped": "2022-11-29T16:31:15.318Z",
"success": true,
"attempt_count": 1
}
},
{
"model": "django_q.task",
"pk": "07d13f2f26af4abfbc8c96300418384b",
"fields": {
"name": "single-london-music-kansas",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAYWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "1",
"started": "2023-01-09T15:39:21.762Z",
"stopped": "2023-01-09T15:39:21.769Z",
"success": true,
"attempt_count": 1
}
},
{
"model": "django_q.task",
"pk": "08b7aa01d6754ad7afd5afe0f164e049",
"fields": {
"name": "berlin-emma-double-eighteen",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAYWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "1",
"started": "2023-01-23T15:10:08.631Z",
"stopped": "2023-01-23T15:10:08.639Z",
"success": true,
"attempt_count": 1
}
},
{
"model": "django_q.task",
"pk": "0b379ab5c37f4ef9b98ae950e617c39c",
"fields": {
"name": "beer-asparagus-mike-pennsylvania",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAYWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "1",
"started": "2022-12-17T16:52:24.624Z",
"stopped": "2022-12-17T16:52:24.631Z",
"success": true,
"attempt_count": 1
}
},
{
"model": "django_q.task",
"pk": "0b81094263fb44fc91f61aa7c1aa4ac3",
"fields": {
"name": "september-cardinal-ten-twelve",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "gAWVBQAAAAAAAABLAYWULg==",
"kwargs": "gAV9lC4=",
"result": null,
"group": "1",
"started": "2022-12-28T16:29:14.380Z",
"stopped": "2022-12-28T16:29:14.387Z",
"success": false,
"attempt_count": 1
}
}
]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/TaskQueue_FederatedModel.json | [
{
"model": "fma_django.federatedmodel",
"pk": 1,
"fields": {
"name": "test",
"developer": 1,
"current_artifact": null,
"requirement": "require_x_updates",
"requirement_args": [
3
],
"aggregator": "avg_values_if_data",
"update_schema": {
"type": "array",
"prefixItems": [
{"type": "array", "minItems": 3, "maxItems": 3},
{"type": "array", "minItems": 3, "maxItems": 3}
],
"items": false
},
"scheduler": 1,
"created_on": "2022-12-15T23:08:28.693Z",
"last_modified": "2022-12-18T23:08:28.693Z",
"clients": [
"531580e6-ce6c-4f01-a5aa-9ed7af5ee768",
"ab359e5d-6991-4088-8815-a85d3e413c02",
"cbb6025f-c15c-4e90-b3fb-85626f7a79f1"
]
}
},
{
"model": "fma_django.federatedmodel",
"pk": 2,
"fields": {
"name": "test-non-admin",
"developer": 2,
"current_artifact": null,
"requirement": "all_clients",
"requirement_args": null,
"aggregator": "avg_values_if_data",
"update_schema": null,
"scheduler": 2,
"created_on": "2022-12-24T23:08:28.693Z",
"last_modified": "2022-12-28T23:08:28.693Z",
"clients": []
}
},
{
"model": "fma_django.federatedmodel",
"pk": 3,
"fields": {
"name": "test-no-aggregate",
"developer": 2,
"current_artifact": null,
"requirement": "all_clients",
"requirement_args": null,
"aggregator": "avg_values_if_data",
"update_schema": {
"type": "array",
"prefixItems": [
{"type": "array", "minItems": 3, "maxItems": 3},
{"type": "array", "minItems": 3, "maxItems": 3}
],
"items": false
},
"scheduler": 3,
"created_on": "2022-12-18T23:08:28.693Z",
"last_modified": "2022-12-19T23:08:28.693Z",
"clients": [
"cbb6025f-c15c-4e90-b3fb-85626f7a79f1"
]
}
}
]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/TaskQueue_User.json | [
{
"model": "auth.user",
"pk": 1,
"fields": {
"password": "this_is_a_fake_password",
"last_login": "2023-01-21T00:37:10.275Z",
"is_superuser": true,
"username": "admin",
"first_name": "",
"last_name": "",
"email": "",
"is_staff": true,
"is_active": true,
"date_joined": "2023-01-09T19:00:10.922Z",
"groups": [],
"user_permissions": []
}
},
{
"model": "auth.user",
"pk": 2,
"fields": {
"password": "this_is_another_fake_password",
"last_login": null,
"is_superuser": false,
"username": "non_admin",
"first_name": "",
"last_name": "",
"email": "",
"is_staff": false,
"is_active": true,
"date_joined": "2022-12-26T03:14:46Z",
"groups": [],
"user_permissions": []
}
}
]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/TaskQueue_ModelArtifact.json | [
{
"model": "fma_django.modelartifact",
"pk": 3,
"fields": {
"values": "fake/path/model_artifact/1",
"federated_model": 1,
"version": "1.0.0",
"created_on": "2022-12-12T23:55:34.066Z"
}
}
]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/TaskQueue_ModelUpdate.json | [
{
"model": "fma_django.modelupdate",
"pk": 1,
"fields": {
"client": "cbb6025f-c15c-4e90-b3fb-85626f7a79f1",
"federated_model": 1,
"data": "fake/path/model_updates/1",
"status": 2,
"created_on": "2022-12-15T23:08:28.720Z"
}
},
{
"model": "fma_django.modelupdate",
"pk": 2,
"fields": {
"client": "cbb6025f-c15c-4e90-b3fb-85626f7a79f1",
"federated_model": 1,
"data": "fake/path/model_updates/2",
"status": 2,
"created_on": "2023-01-10T23:10:33.720Z"
}
},
{
"model": "fma_django.modelupdate",
"pk": 3,
"fields": {
"client": "531580e6-ce6c-4f01-a5aa-9ed7af5ee768",
"federated_model": 1,
"data": "fake/path/model_updates/3",
"status": 2,
"created_on": "2023-01-16T23:17:35.480Z"
}
},
{
"model": "fma_django.modelupdate",
"pk": 4,
"fields": {
"client": "531580e6-ce6c-4f01-a5aa-9ed7af5ee768",
"federated_model": 1,
"data": "fake/path/model_updates/4",
"status": 3,
"created_on": "2022-02-17T17:58:13.819Z"
}
},
{
"model": "fma_django.modelupdate",
"pk": 5,
"fields": {
"client": "cbb6025f-c15c-4e90-b3fb-85626f7a79f1",
"federated_model": 2,
"data": "fake/path/model_updates/5",
"status": 0,
"created_on": "2022-02-17T17:58:44.441Z"
}
},
{
"model": "fma_django.modelupdate",
"pk": 6,
"fields": {
"client": "ab359e5d-6991-4088-8815-a85d3e413c02",
"federated_model": 2,
"data": "fake/path/model_updates/6",
"status": 0,
"created_on": "2022-02-28T00:36:54.803Z"
}
},
{
"model": "fma_django.modelupdate",
"pk": 7,
"fields": {
"client": "cbb6025f-c15c-4e90-b3fb-85626f7a79f1",
"federated_model": 3,
"data": "fake/path/model_updates/7",
"status": 0,
"created_on": "2022-12-26T01:12:55.467Z"
}
},
{
"model": "fma_django.modelupdate",
"pk": 8,
"fields": {
"client": "cbb6025f-c15c-4e90-b3fb-85626f7a79f1",
"federated_model": 3,
"data": "fake/path/model_updates/8",
"status": 0,
"created_on": "2022-12-08T13:22:24.557Z"
}
}
]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/TaskQueue_client.json | [
{
"model": "fma_django.client",
"pk": "531580e6-ce6c-4f01-a5aa-9ed7af5ee768",
"fields": {}
},
{
"model": "fma_django.client",
"pk": "ab359e5d-6991-4088-8815-a85d3e413c02",
"fields": {}
},
{
"model": "fma_django.client",
"pk": "cbb6025f-c15c-4e90-b3fb-85626f7a79f1",
"fields": {}
}
]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/sam-local-event.json | {
"id": "cdc73f9d-aea9-11e3-9d5a-835b769c0d9c",
"detail-type": "Scheduled Event",
"source": "aws.events",
"account": "123456789012",
"time": "2023-01-01T00:00:00Z",
"region": "us-east-1",
"resources": [
"arn:aws:events:us-east-1:123456789012:rule/ExampleRule"
],
"detail": {
"model_id": 3
}
}
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/DjangoQ_Schedule.json | [
{
"model": "django_q.schedule",
"pk": 1,
"fields": {
"name": "1 - test - Scheduled Aggregator",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "(1,)",
"kwargs": "{}",
"schedule_type": "I",
"minutes": 1,
"repeats": -792,
"next_run": "2023-01-22T02:53:45Z",
"cron": null,
"task": "1da0e26c81b74b62a24d297483623668",
"cluster": null
}
},
{
"model": "django_q.schedule",
"pk": 2,
"fields": {
"name": "2 - test-non-admin - Scheduled Aggregator",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "(1,)",
"kwargs": "{}",
"schedule_type": "I",
"minutes": 1,
"repeats": 0,
"next_run": "2022-12-10T05:15:00Z",
"cron": null,
"task": "1da0e26c81b74b62a24d297483623668",
"cluster": null
}
},
{
"model": "django_q.schedule",
"pk": 3,
"fields": {
"name": "3 - test-non-aggregate - Scheduled Aggregator",
"func": "fma_django_api.v1.aggregator_components.tasks.agg_service",
"hook": "fma_django_api.v1.aggregator_components.tasks.post_agg_service_hook",
"args": "(1,)",
"kwargs": "{}",
"schedule_type": "I",
"minutes": 1,
"repeats": -792,
"next_run": "2022-01-09T07:18:23Z",
"cron": null,
"task": "1da0e26c81b74b62a24d297483623668",
"cluster": null
}
}
]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/TaskQueue_ModelAggregate.json | [
{
"model": "fma_django.modelaggregate",
"pk": 1,
"fields": {
"federated_model": 1,
"result": "fake/path/model_aggregate/1",
"validation_score": 1.0,
"created_on": "2023-01-13T23:08:28.712Z",
"parent": 2,
"level": 0,
"lft": 0,
"rght": 0,
"tree_id": 0
}
},
{
"model": "fma_django.modelaggregate",
"pk": 2,
"fields": {
"federated_model": 2,
"result": "fake/path/model_aggregate/2",
"validation_score": null,
"created_on": "2023-01-20T23:08:28.712Z",
"parent": 1,
"level": 0,
"lft": 0,
"rght": 0,
"tree_id": 0
}
}
]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/mediafiles/fake/path | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/mediafiles/fake/path/model_updates/7 | [2.0, 2.0, 2.0]
|
0 | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/mediafiles/fake/path | capitalone_repos/federated-model-aggregation/aggregator/tests/fixtures/mediafiles/fake/path/model_updates/8 | [1.0, 1.0, 1.0]
|
0 | capitalone_repos | capitalone_repos/modtracker/.whitesource | {
"scanSettings": {
"baseBranches": []
},
"checkRunSettings": {
"vulnerableCheckRunConclusionLevel": "failure",
"displayMode": "diff"
},
"issueSettings": {
"minSeverityLevel": "LOW"
}
} |
0 | capitalone_repos | capitalone_repos/modtracker/modtracker.go | //Copyright 2016 Capital One Services, LLC
//
// SPDX-License-Identifier: Apache-2.0
// SPDX-Copyright: Copyright (c) Capital One Services, LLC
//
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and limitations under the License.
package modtracker
import (
"bytes"
"encoding/json"
"fmt"
"github.com/buger/jsonparser"
"github.com/pkg/errors"
"io"
"reflect"
"strings"
)
// Modifiable is implemented by struct types that contain a list of their fields that were populated from JSON.
// If a value for a field, even null, was provided in the JSON, the name of the field appears in the slice of strings.
type Modifiable interface {
GetModified() []string
}
// An Unmarshaler takes in JSON in the first parameter, a pointer to a struct in the second parameter, populates the
// struct with the JSON and returns the modified fields as a slice of strings. In case of error, the struct might be
// partially populated. If there is an error, the modified field slice will be nil.
type Unmarshaler func([]byte, interface{}) ([]string, error)
// UnmarshalJSON provides the default implementation of the Unmarshaler type. It will rediscover the fields in the structure
// each time it is called; to improve performance, use BuildJSONUnmarshaler to create an Unmarshaler instance with the
// struct fields pre-calculated.
func UnmarshalJSON(data []byte, s interface{}) ([]string, error) {
fm, err := buildJSONFieldMap(s)
if err != nil {
return nil, errors.Wrap(err, "Failure during UnmarshalJSON")
}
return unmarshalJSONInner(fm, data, s)
}
// BuildJSONUnmarshaler generates a custom implementation of the Unmarshaler type for the type of the provided struct.
// The preferred way to use BuildJSONUnmarshaler is to create a package-level variable and assign it in init with a
// nil instance of the type:
//
// type Sample struct {
// FirstName *string
// LastName *string
// Age *int
// Inner *struct {
// Address string
// }
// Pet string
// Company string `json:"company"`
// modified []string
// }
//
// var sampleUnmarshaler modtracker.Unmarshaler
//
// func init() {
// var err error
// sampleUnmarshaler, err = modtracker.BuildJSONUnmarshaler((*Sample)(nil))
// if err != nil {
// panic(err)
// }
// }
//
// func (s *Sample) UnmarshalJSON(data []byte) error {
// modified, err := sampleUnmarshaler(data, s)
// if err != nil {
// return err
// }
// s.modified = modified
// return nil
// }
//
func BuildJSONUnmarshaler(s interface{}) (func([]byte, interface{}) ([]string, error), error) {
fm, err := buildJSONFieldMap(s)
if err != nil {
return nil, errors.Wrap(err, "Failure during UnmarshalJSON")
}
return func(data []byte, s interface{}) ([]string, error) {
return unmarshalJSONInner(fm, data, s)
}, nil
}
type errorList []error
func (el errorList) innerErr(verb rune, plusFlag bool) string {
var b bytes.Buffer
b.WriteString(fmt.Sprintf("%d Errors found:\n", len(el)))
for _, v := range el {
switch verb {
case 'v':
if plusFlag {
b.WriteString(fmt.Sprintf("%+v\n", v))
} else {
b.WriteString(fmt.Sprintf("%v\n", v))
}
case 's':
b.WriteString(fmt.Sprintf("%s\n", v))
}
}
return b.String()
}
func (el errorList) Error() string {
return el.innerErr('s', false)
}
func (el errorList) Format(s fmt.State, verb rune) {
msg := el.innerErr(verb, s.Flag('+'))
io.WriteString(s, msg)
}
func validateType(nt reflect.Type, typeKind reflect.Kind, n string, validKind reflect.Kind, jsonType string) error {
if typeKind != validKind {
return errors.Errorf("Invalid type in JSON, expected %s for field %s, got %s", nt, n, jsonType)
}
return nil
}
var (
unmarshalerType = reflect.TypeOf((*json.Unmarshaler)(nil)).Elem()
)
func unmarshalJSONInner(fm fieldMap, data []byte, s interface{}) ([]string, error) {
modified := make([]string, 0, len(fm.names))
var el errorList
se := reflect.ValueOf(s).Elem()
jsonparser.EachKey(data, func(idx int, value []byte, vt jsonparser.ValueType, err error) {
var fv reflect.Value
fValue := fm.values[idx]
t := fValue.t
n := fValue.name
fv = reflect.New(fValue.internalType)
switch vt {
case jsonparser.String:
if fValue.unmarshaler {
b := make([]byte, len(value)+2)
b[0] = 34
b[len(b)-1] = 34
copy(b[1:], value)
err = json.Unmarshal(b, fv.Interface())
if err != nil {
el = append(el, errors.Wrap(err, "JSON unmarshaling"))
return
}
} else {
err := validateType(fValue.internalType, fValue.internalKind, n, reflect.String, "String")
if err != nil {
el = append(el, err)
return
}
s, _ := jsonparser.ParseString(value)
fv.Elem().SetString(s)
}
case jsonparser.Number:
switch {
case fValue.intType:
i, _ := jsonparser.ParseInt(value)
fv.Elem().SetInt(i)
case fValue.uintType:
i, _ := jsonparser.ParseInt(value)
fv.Elem().SetUint(uint64(i))
case fValue.floatType:
f, _ := jsonparser.ParseFloat(value)
fv.Elem().SetFloat(f)
default:
el = append(el, errors.Errorf("Invalid type in JSON, expected %s for field %s, got Number", fValue.internalType, n))
return
}
case jsonparser.Object, jsonparser.Array:
err = json.Unmarshal(value, fv.Interface())
if err != nil {
el = append(el, errors.Wrap(err, "JSON unmarshaling"))
return
}
case jsonparser.Boolean:
err := validateType(fValue.internalType, fValue.internalKind, n, reflect.Bool, "Boolean")
if err != nil {
el = append(el, err)
return
}
b, _ := jsonparser.ParseBoolean(value)
fv.Elem().SetBool(b)
case jsonparser.Null:
if fValue.pointerType {
fv = reflect.Zero(t)
} else {
el = append(el, errors.Errorf("Invalid type in JSON, cannot assign null to field %s", n))
return
}
default:
el = append(el, (errors.Errorf("Unexpected jsonparser value type %d", vt)))
return
}
target := se.FieldByName(n)
switch fValue.kind {
case reflect.Ptr:
target.Set(fv)
case reflect.Slice, reflect.Map:
if vt == jsonparser.Null {
target.Set(fv)
} else {
target.Set(fv.Elem())
}
default:
target.Set(fv.Elem())
}
modified = append(modified, n)
}, fm.names...)
if el == nil {
return modified, nil
}
return nil, el
}
type fieldMap struct {
names [][]string
values []fieldValue
}
type fieldValue struct {
kind reflect.Kind
internalType reflect.Type
internalKind reflect.Kind
t reflect.Type //type in struct
name string //name in struct
pointerType bool
unmarshaler bool
intType bool
uintType bool
floatType bool
}
func buildJSONFieldMap(s interface{}) (fieldMap, error) {
st := reflect.TypeOf(s)
if st.Kind() != reflect.Ptr {
return fieldMap{}, errors.New("Only works on pointers to structs")
}
stInner := st.Elem()
if stInner.Kind() != reflect.Struct {
return fieldMap{}, errors.New("Only works on pointers to structs")
}
out := fieldMap{}
out.names = make([][]string, stInner.NumField())
out.values = make([]fieldValue, stInner.NumField())
for i := 0; i < stInner.NumField(); i++ {
sf := stInner.Field(i)
//skip over any chan fields or func fields
if sf.Type.Kind() == reflect.Func || sf.Type.Kind() == reflect.Chan {
continue
}
var fieldName string
if name := sf.Tag.Get("json"); len(name) > 0 {
fieldName = strings.Split(name, ",")[0]
}
if fieldName == "-" {
continue
}
if fieldName == "" {
fieldName = sf.Name
}
t := sf.Type
k := t.Kind()
it := t
if k == reflect.Ptr {
it = t.Elem()
}
itk := it.Kind()
um := (t.Implements(unmarshalerType) || reflect.PtrTo(t).Implements(unmarshalerType))
pt := t.Kind() == reflect.Slice || t.Kind() == reflect.Map || t.Kind() == reflect.Ptr
intType := false
uintType := false
floatType := false
switch itk {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
intType = true
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
uintType = true
case reflect.Float32, reflect.Float64:
floatType = true
}
out.names[i] = []string{fieldName}
out.values[i] = fieldValue{
t: t,
name: sf.Name,
kind: k,
internalType: it,
unmarshaler: um,
internalKind: itk,
pointerType: pt,
intType: intType,
uintType: uintType,
floatType: floatType,
}
}
return out, nil
}
|
0 | capitalone_repos | capitalone_repos/modtracker/LICENSE |
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: HOW TO APPLY THE APACHE LICENSE TO YOUR WORK
To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "[]" replaced with your own
identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also
recommend that a file or class name and description of purpose be included
on the same "printed page" as the copyright notice for easier identification
within third-party archives.
Copyright [YYYY] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
|
0 | capitalone_repos | capitalone_repos/modtracker/CODEOWNERS | * @jonbodner
|
0 | capitalone_repos | capitalone_repos/modtracker/README.md | # Due to changes in the priorities, this project is currently not being supported. The project is archived as of 11/3/21 and will be available in a read-only state. Please note, since archival, the project is not maintained or reviewed. #
# modtracker
JSON unmarshaling in Go that includes detection of the fields that were modified during unmarshaling
If you are doing a CRUD update via a REST API using JSON, you probably only want to update the database
fields that were actually sent by the client. The standard Go JSON Unmarshaler doesn't provide this information.
The modtracker package provides a way to discover this information. You can use it in a few ways. First,
you can call modtracker.UnmarshalJSON directly:
```go
type Sample struct {
FirstName *string
LastName *string
Age *int
}
func main() {
var s Sample
data := `
{
"FirstName": "Homer",
"LastName": "Simpson",
"Age": 37
}
`
fmt.Println("converting", data)
modified, err := modtracker.Unmarshal([]byte(data), &s)
if err != nil {
fmt.Printf("%+v\n", err)
} else {
fmt.Println(s,modified)
}
}
```
You can wrap the call to modtracker.Unmarshal inside of an UnmarshalJSON method:
```go
type Sample struct {
FirstName *string
LastName *string
Age *int
modified []string
}
func (s *Sample) UnmarshalJSON(data []byte) error {
var err error
s.modified, err = modtracker.Unmarshal(data, s)
return err
}
func (s *Sample) GetModified() []string {
return s.modified
}
func main() {
var s Sample
data := `
{
"FirstName": "Homer",
"LastName": "Simpson",
"Age": 37
}
`
fmt.Println("converting", data)
err := json.Unmarshal([]byte(data), &s)
if err != nil {
fmt.Printf("%+v\n", err)
} else {
fmt.Println(s)
}
}
```
You can avoid some of the cost of reflection by pre-caclulating the fields, tags, and types using the
BuildJSONUnmarshaler function:
```go
var sampleUnmarshaler modtracker.Unmarshaler
func init() {
var err error
sampleUnmarshaler, err = modtracker.BuildJSONUnmarshaler((*Sample)(nil))
if err != nil {
panic(err)
}
}
type Sample struct {
FirstName *string
LastName *string
Age *int
modified []string
}
func (s *Sample) UnmarshalJSON(data []byte) error {
var err error
s.modified, err = sampleUnmarshaler(data, s)
return err
}
func (s *Sample) GetModified() []string {
return s.modified
}
func main() {
var s Sample
data := `
{
"FirstName": "Homer",
"LastName": "Simpson",
"Age": 37
}
`
fmt.Println("converting", data)
err := json.Unmarshal([]byte(data), &s)
if err != nil {
fmt.Printf("%+v\n", err)
} else {
fmt.Println(s)
}
}
```
The modtracker unmarshalers respect json struct tags and work with both pointer and value fields. Fields of function type
and channel type are ignored.
Contributors:
We welcome your interest in Capital One’s Open Source Projects (the “Project”). Any Contributor to the project must accept and sign a CLA indicating agreement to the license terms. Except for the license granted in this CLA to Capital One and to recipients of software distributed by Capital One, you reserve all right, title, and interest in and to your contributions; this CLA does not impact your rights to use your own contributions for any other purpose.
[Link to CLA](https://docs.google.com/forms/d/e/1FAIpQLSfwtl1s6KmpLhCY6CjiY8nFZshDwf_wrmNYx1ahpsNFXXmHKw/viewform)
This project adheres to the [Open Source Code of Conduct](https://developer.capitalone.com/single/code-of-conduct/). By participating, you are expected to honor this code.
|
0 | capitalone_repos | capitalone_repos/modtracker/modtracker_test.go | //Copyright 2016 Capital One Services, LLC
//
// SPDX-License-Identifier: Apache-2.0
// SPDX-Copyright: Copyright (c) Capital One Services, LLC
//
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and limitations under the License.
package modtracker
import (
"encoding/json"
"fmt"
"github.com/stretchr/testify/assert"
"testing"
"time"
)
type Sample struct {
FirstName *string
LastName *string
Age *int
Inner *struct {
Address string
}
Pet string
Company string `json:"company"`
modified []string
}
var sampleUnmarshaler Unmarshaler
func (s *Sample) UnmarshalJSON(data []byte) error {
var err error
s.modified, err = sampleUnmarshaler(data, s)
return err
}
func (s *Sample) GetModified() []string {
return s.modified
}
var tests = []string{
`
{
"FirstName": "Homer",
"LastName": "Simpson",
"Age": 37
}`,
`
{
"FirstName": "Homer",
"Age": 37
}`,
`
{
"FirstName": null,
"Age": 37
}`, `
{
"Age": 37
}`,
`
{
"Age": 37,
"Inner": {
"Address": "742 Evergreen Terr."
}
}`,
`
{
"Age": 37,
"Pet": "Spider-Pig"
}`,
`
{
"Age": 37,
"Pet": "Spider-Pig",
"company": "Springfield Nuclear Power Plant"
}`,
}
func BenchmarkUnmarshalJSON(b *testing.B) {
sampleUnmarshaler = UnmarshalJSON
results := make([]Sample, len(tests))
b.ResetTimer()
for i := 0; i < b.N; i++ {
for k, v := range tests {
var s Sample
json.Unmarshal([]byte(v), &s)
results[k] = s
}
}
}
func BenchmarkBuildJSONUnmarshaler(b *testing.B) {
sampleUnmarshaler, _ = BuildJSONUnmarshaler((*Sample)(nil))
results := make([]Sample, len(tests))
b.ResetTimer()
for i := 0; i < b.N; i++ {
for k, v := range tests {
var s Sample
json.Unmarshal([]byte(v), &s)
results[k] = s
}
}
}
type Sample2 struct {
FirstName *string
LastName *string
Age *int
Inner *struct {
Address string
}
Pet string
Company string `json:"company"`
}
func BenchmarkStandardJSONUnmarshal(b *testing.B) {
results := make([]Sample2, len(tests))
b.ResetTimer()
for i := 0; i < b.N; i++ {
for k, v := range tests {
var s Sample2
json.Unmarshal([]byte(v), &s)
results[k] = s
}
}
}
func TestUnmarshalJSON(t *testing.T) {
type TSample struct {
FirstName *string `json:"firstName"`
MiddleName *string `json:"middleName"`
LastName *string `json:"lastName"`
Age *int `json:"age"`
}
data := `
{
"firstName": "John",
"middleName": null,
"lastName": "Doe",
"age": null
}
`
var ts TSample
modified, err := UnmarshalJSON([]byte(data), &ts)
assert.Nil(t, err, "Err")
assert.Nil(t, ts.MiddleName, "Middle name")
assert.Nil(t, ts.Age, "Age")
assert.Equal(t, 4, len(modified))
assert.Equal(t, *ts.FirstName, "John")
assert.Equal(t, *ts.LastName, "Doe")
}
func TestUnmarshalJSONAllTypes(t *testing.T) {
type Inner struct {
F1 string
F2 int
F3 *int
}
type TSample struct {
FirstName string `json:"firstName"`
MiddleName *string `json:"middleName"`
LastName *string `json:"lastName"`
Age int `json:"age"`
Age2 *int `json:"age2"`
Age3 *int `json:"age3"`
F1 float64 `json:"f1"`
F2 *float64 `json:"f2"`
F3 *float64 `json:"f3"`
B1 bool `json:"b1"`
B2 *bool `json:"b2"`
B3 *bool `json:"b3"`
U1 uint `json:"u1"`
U2 *uint `json:"u2"`
U3 *uint `json:"u3"`
S1 []string `json:"s1"`
S2 []string `json:"s2"`
M1 map[string]interface{} `json:"m1"`
M2 map[string]interface{} `json:"m2"`
O1 Inner `json:"o1"`
O2 *Inner `json:"o2"`
O3 *Inner `json:"o3"`
}
data := `
{
"firstName": "John",
"middleName": null,
"lastName": "Doe",
"age": 10,
"age2": null,
"age3": 20,
"f1": 3.5,
"f2": null,
"f3": 6.323,
"b1": true,
"b2": null,
"b3": false,
"u1": 32400,
"u2": null,
"u3": 124325,
"s1": ["a","b","c"],
"s2": null,
"m1": {
"a": 1,
"b": "asdf"
},
"m2": null,
"o1": {
"F1": "asdf",
"F2": 234,
"F3": 123
},
"o2": null,
"o3": {
"F1": "cvcd",
"F2": 61,
"F3": 897
}
}
`
var ts TSample
modified, err := UnmarshalJSON([]byte(data), &ts)
assert.Nil(t, err, "Err")
assert.Nil(t, ts.MiddleName, "Middle name")
assert.Nil(t, ts.Age2, "Age")
assert.Nil(t, ts.F2)
assert.Nil(t, ts.B2)
assert.Nil(t, ts.U2)
assert.Nil(t, ts.S2)
assert.Nil(t, ts.M2)
assert.Nil(t, ts.O2)
assert.Equal(t, 22, len(modified))
assert.Equal(t, ts.FirstName, "John")
assert.Equal(t, *ts.LastName, "Doe")
assert.Equal(t, ts.Age, 10)
assert.Equal(t, *ts.Age3, 20)
assert.Equal(t, ts.F1, 3.5)
assert.Equal(t, *ts.F3, 6.323)
assert.Equal(t, ts.B1, true)
assert.Equal(t, *ts.B3, false)
assert.Equal(t, ts.U1, uint(32400))
assert.Equal(t, *ts.U3, uint(124325))
assert.Equal(t, 3, len(ts.S1))
assert.Equal(t, "a", ts.S1[0])
assert.Equal(t, "b", ts.S1[1])
assert.Equal(t, "c", ts.S1[2])
assert.Equal(t, 2, len(ts.M1))
assert.Equal(t, float64(1), ts.M1["a"])
assert.Equal(t, "asdf", ts.M1["b"])
assert.Equal(t, "asdf", ts.O1.F1)
assert.Equal(t, 234, ts.O1.F2)
assert.Equal(t, 123, *ts.O1.F3)
assert.Equal(t, "cvcd", ts.O3.F1)
assert.Equal(t, 61, ts.O3.F2)
assert.Equal(t, 897, *ts.O3.F3)
}
func TestUnmarshalJSONInvalid(t *testing.T) {
type TSample struct {
FirstName *string `json:"firstName"`
MiddleName *string `json:"middleName"`
LastName *string `json:"lastName"`
Age *int `json:"age"`
FavoriteNum int `json:"fave"`
}
data := `
{
"firstName": true,
"middleName": 10,
"lastName": "Doe",
"age": 24.3,
"fave": null
}
`
var ts TSample
modified, err := UnmarshalJSON([]byte(data), &ts)
assert.NotNil(t, err)
assert.Equal(t, 0, len(modified))
assert.Equal(t, "Doe", *ts.LastName)
assert.Equal(t, 0, *ts.Age)
assert.Equal(t, 0, ts.FavoriteNum)
assert.Nil(t, ts.FirstName)
assert.Nil(t, ts.MiddleName)
fmt.Printf("%v\n", err)
fmt.Printf("%+v\n", err)
}
func TestCustomJSONSerialilzerString(t *testing.T) {
type TimeWrapper struct {
T *time.Time
T2 time.Time
T3 *time.Time
}
data := `
{
"T": "2009-11-10T23:00:00Z",
"T2": "2009-11-10T23:00:00Z",
"T3": null
}
`
var ts TimeWrapper
modified, err := UnmarshalJSON([]byte(data), &ts)
assert.Nil(t, err)
assert.Equal(t, 3, len(modified))
assert.Nil(t, ts.T3)
var st time.Time
json.Unmarshal([]byte(`"2009-11-10T23:00:00Z"`), &st)
assert.Equal(t, st, *ts.T)
assert.Equal(t, st, ts.T2)
}
|
0 | capitalone_repos/modtracker | capitalone_repos/modtracker/cmd/main.go | //Copyright 2016 Capital One Services, LLC
//
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and limitations under the License.
package main
import (
"encoding/json"
"fmt"
"github.com/capitalone/modtracker"
)
type Sample struct {
FirstName *string
LastName *string
Age *int
Inner *struct {
Address string
}
Pet string
Company string `json:"company"`
modified []string
}
var sampleUnmarshaler modtracker.Unmarshaler
func init() {
var err error
sampleUnmarshaler, err = modtracker.BuildJSONUnmarshaler((*Sample)(nil))
if err != nil {
panic(err)
}
}
func (s *Sample) UnmarshalJSON(data []byte) error {
var err error
s.modified, err = sampleUnmarshaler(data, s)
return err
}
func (s *Sample) GetModified() []string {
return s.modified
}
func (s Sample) String() string {
fn := ""
if s.FirstName != nil {
fn = *s.FirstName
}
ln := ""
if s.LastName != nil {
ln = *s.LastName
}
a := 0
if s.Age != nil {
a = *s.Age
}
return fmt.Sprintf("%s %s %d %v %s %s modified:%v", fn, ln, a, s.Inner, s.Pet, s.Company, s.modified)
}
func printIt(data string) {
var s Sample
fmt.Println("converting", data)
err := json.Unmarshal([]byte(data), &s)
if err != nil {
fmt.Printf("%+v\n", err)
} else {
fmt.Println(s)
}
}
func main() {
tests := []string{
`
{
"FirstName": "Homer",
"LastName": "Simpson",
"Age": 37
}`,
`
{
"FirstName": "Homer",
"Age": 37
}`,
`
{
"FirstName": null,
"Age": 37
}`, `
{
"Age": 37
}`,
`
{
"Age": 37,
"Inner": {
"Address": "742 Evergreen Terr."
}
}`,
`
{
"Age": 37,
"Pet": "Spider-Pig"
}`,
`
{
"Age": 37,
"Pet": "Spider-Pig",
"company": "Springfield Nuclear Power Plant"
}`,
}
for _, v := range tests {
printIt(v)
}
}
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/.watchmanconfig | {} |
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/.babelrc | {
"presets": ["react-native"]
}
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/.npmignore | # OSX
#
.DS_Store
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
# node.js
#
node_modules/
npm-debug.log
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/.eslintrc | {
"parser": "babel-eslint",
"globals": {
"requestAnimationFrame": true
},
"rules": {
"indent": [
"error",
2,
{"SwitchCase": 1}
],
"quotes": [
"error",
"single",
"avoid-escape"
],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"never"
],
"comma-dangle": 0,
"no-var": 1,
"react/jsx-boolean-value": [1,"always"],
"react/jsx-no-undef": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1,
"react/no-danger": 1,
"react/no-deprecated": 1,
"react/no-did-mount-set-state": 1,
"react/no-did-update-set-state": 1,
"react/no-unknown-property": 1,
"react/react-in-jsx-scope": 1,
"react/require-extension": 1,
"react/sort-comp": 1,
"react/prefer-es6-class": 1,
"react-native/no-unused-styles": 2,
"react-native/split-platform-components": 2,
},
"env": {
"es6": true,
"node": true,
"jasmine": true,
"jest": true
},
"extends": "eslint:recommended",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
},
"plugins": [
"react",
"react-native",
"babel"
]
}
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/.npmrc | tag-version-prefix="" |
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/.buckconfig |
[android]
target = Google Inc.:Google APIs:23
[maven_repositories]
central = https://repo1.maven.org/maven2
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/package.json | {
"name": "react-native-pathjs-charts",
"version": "0.0.34",
"description": "Cross platform React Native charting library based on path-js and react-native-svg",
"repository": {
"type": "git",
"url": "https://github.com/capitalone/react-native-pathjs-charts"
},
"main": "src/index.js",
"scripts": {
"start": "node_modules/react-native/packager/packager.sh",
"lint": "eslint --ext .js,.jsx src",
"test": "jest"
},
"keywords": [
"react-native",
"react-native-svg",
"paths-js",
"react-pathjs-chart",
"ios",
"android"
],
"author": {
"name": "Cale Hoopes",
"email": "caledh@gmail.com",
"url": "https://github.com/capitalone"
},
"license": "Apache-2.0",
"maintainers": [
{
"name": "marzolfb",
"email": "marzolfb@gmail.com"
},
{
"name": "katscott",
"email": "reineskat@gmail.com"
}
],
"dependencies": {
"lodash": "^4.12.0",
"paths-js": "^0.4.5",
"react-native-svg": "~5.5.1"
},
"devDependencies": {
"babel-jest": "*",
"babel-preset-react-native": "^1.9.0",
"diff": "^3.1.0",
"jest": "*",
"jest-react-native": "*",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-native": "0.50.3",
"react-test-renderer": "16.0.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example"
]
}
}
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/License.md | Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/.editorconfig | # http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/README.md | ** Capital One built this project to help our engineers as well as users in the react native community. We have decided to focus on alternatives to react native, and, unfortunately, we are no longer able to fully support the project. We have archived the project oas of Mar 1 2018 where it will be available in a read-only state. Feel free to fork the project and maintain your own version. **
react-native-pathjs-charts
=======================
[![npm version](https://badge.fury.io/js/react-native-pathjs-charts.svg)](https://badge.fury.io/js/react-native-pathjs-charts)
This library is a cross-platform (iOS/Android) library of charts/graphs using [react-native-svg](https://github.com/magicismight/react-native-svg) and [paths-js](https://github.com/andreaferretti/paths-js) based on the excellent work done by Roman Samec in the [react-pathjs-chart](https://github.com/rsamec/react-pathjs-chart) library. The project is an early attempt at providing a ubiquitous solution for charts & graphs for React Native that offer a unified view across devices.
Components include Pie charts, Bar charts, Smoothline charts, Stockline charts, Scatterplots, Tree graphs and Radar graphs. Since Paths-Js makes no assumptions about rendering, this library is perfect for using SVG path objects to render custom charts easily.
This library is in its early stages, but I welcome contributors who would like to help make this the charting solution for React Native. Many of our mobile experiences need to create dashboards. Up to now, we've only been seeing libraries that are native bridges. Wouldn't it be great to have a cross platform solution that just worked?
![](https://github.com/capitalone/react-native-pathjs-charts/wiki/images/chart-screenshots.png)
## Installation
To add the library to your React Native project:
```
npm install react-native-pathjs-charts --save
react-native link react-native-svg
```
For further information on usage, see the [docs](https://capitalone.github.io/react-native-pathjs-charts/)
## Current Features
+ Pie, Bar, Smoothline, Stockline, Scatterplot, Tree and Radar graphs
+ Configuration of format, labels, colors, axis, ticks, lines
+ No touch support (yet)
+ No animations (yet)
+ Chart information configurable based on data parameters which specify which variables are accessors
+ Rendering works on iOS/Android
+ No native dependencies for linking (except linking required by [react-native-svg](https://github.com/magicismight/react-native-svg))
## Example Application
To run the example application (from a cloned repo):
```
cd example
npm install
react-native link react-native-svg
react-native run-ios
# or
react-native run-android
```
### Developing and Testing With The Example App
As you are working on changing src files in this library and testing those changes against the example app, it is necessary to copy files to example/node_modules/react-native-pathjs-charts each time a change is made. To automate this, a `sync-rnpc` script has been added that will create a background process to watch for src file changes and automatically copy them. To enable this:
```
cd example
npm run sync-rnpc
```
## Todo
For this library to really shine, there are a lot of improvements to be made. Here are some of my top ideas:
+ Add basic animations to draw the charts
+ Add touch functionality (as the react-native-svg library adds touch features)
+ Add the ability to absolutely position regular React-Native views in relation to SVG chart elements
+ More chart types
+ More axis controls (to control scale)
+ Add View component support to allow custom components instead of message when no data appears
+ Events
+ More documentation, information on configuration
+ Extended examples
+ Bug fixing, unit testing, cleanup
+ CICD pipeline with confirmed build success
## Contributing
Contributors:
We welcome your interest in Capital One’s Open Source Projects (the “Project”). Any Contributor to the project must accept and sign a CLA indicating agreement to the license terms. Except for the license granted in this CLA to Capital One and to recipients of software distributed by Capital One, you reserve all right, title, and interest in and to your contributions; this CLA does not impact your rights to use your own contributions for any other purpose.
[Link to CLA](https://docs.google.com/forms/d/19LpBBjykHPox18vrZvBbZUcK6gQTj7qv1O5hCduAZFU/viewform)
This project adheres to the [Open Source Code of Conduct](http://www.capitalone.io/codeofconduct/). By participating, you are expected to honor this code.
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/CHANGELOG.md | # Change Log
## [0.0.34](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.34) (2018-02-18)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.33...0.0.34)
**Closed issues:**
- How i make a PR? [\#226](https://github.com/capitalone/react-native-pathjs-charts/issues/226)
**Merged pull requests:**
- added pie animation [\#227](https://github.com/capitalone/react-native-pathjs-charts/pull/227) ([melkayam92](https://github.com/melkayam92))
- Update test snapshots to match current state [\#222](https://github.com/capitalone/react-native-pathjs-charts/pull/222) ([marzolfb](https://github.com/marzolfb))
- feature: add interaction on line chart. [\#221](https://github.com/capitalone/react-native-pathjs-charts/pull/221) ([soloviola](https://github.com/soloviola))
- Upgrade to.33 [\#212](https://github.com/capitalone/react-native-pathjs-charts/pull/212) ([marzolfb](https://github.com/marzolfb))
## [0.0.33](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.33) (2017-11-29)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.32...0.0.33)
**Closed issues:**
- more Invariant Violation: Element type is invalid: expected a string \(for built-in components\) or a class/function \(for composite components\) but got: object. [\#209](https://github.com/capitalone/react-native-pathjs-charts/issues/209)
- Unhandled Promise rejection due to babel-polyfill [\#195](https://github.com/capitalone/react-native-pathjs-charts/issues/195)
- After Installing Error : \_reactNative.AsyncStorage.getItem\(..\).then\(..\).done is not a function [\#173](https://github.com/capitalone/react-native-pathjs-charts/issues/173)
**Merged pull requests:**
- Removed babel-polyfill and substituted with narrower imports [\#211](https://github.com/capitalone/react-native-pathjs-charts/pull/211) ([marzolfb](https://github.com/marzolfb))
- Upgrade to latest rn and rnsvg dependencies and general cleanup [\#210](https://github.com/capitalone/react-native-pathjs-charts/pull/210) ([marzolfb](https://github.com/marzolfb))
## [0.0.32](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.32) (2017-11-13)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.31...0.0.32)
**Closed issues:**
- Library causes app to crash when using await AsyncStorage.getItem\(STORAGE\_KEY\); [\#202](https://github.com/capitalone/react-native-pathjs-charts/issues/202)
- How do I change the color of the grid? [\#191](https://github.com/capitalone/react-native-pathjs-charts/issues/191)
- Changing default gray background to transparent [\#185](https://github.com/capitalone/react-native-pathjs-charts/issues/185)
- gridColor applied to wrong axis [\#179](https://github.com/capitalone/react-native-pathjs-charts/issues/179)
**Merged pull requests:**
- Fix grid axis appearing on top of the lines [\#197](https://github.com/capitalone/react-native-pathjs-charts/pull/197) ([Minishlink](https://github.com/Minishlink))
- Fix default pointRadius and add parameters to renderPoint [\#196](https://github.com/capitalone/react-native-pathjs-charts/pull/196) ([Minishlink](https://github.com/Minishlink))
- Feature/improve smoothline chart [\#183](https://github.com/capitalone/react-native-pathjs-charts/pull/183) ([AmauryLiet](https://github.com/AmauryLiet))
## [0.0.31](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.31) (2017-09-02)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.30...0.0.31)
**Closed issues:**
- The sort method cannot be invoked on an Immutable data structure. [\#178](https://github.com/capitalone/react-native-pathjs-charts/issues/178)
- Build failed in RN 0.45.1 \(iOS\) [\#169](https://github.com/capitalone/react-native-pathjs-charts/issues/169)
**Merged pull requests:**
- New release for .31 [\#187](https://github.com/capitalone/react-native-pathjs-charts/pull/187) ([marzolfb](https://github.com/marzolfb))
- Upgrade to RN 0.47.2 [\#184](https://github.com/capitalone/react-native-pathjs-charts/pull/184) ([Minishlink](https://github.com/Minishlink))
- Upgrade to .30 [\#171](https://github.com/capitalone/react-native-pathjs-charts/pull/171) ([marzolfb](https://github.com/marzolfb))
## [0.0.30](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.30) (2017-07-12)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.29...0.0.30)
**Closed issues:**
- No component found for view with name "RNSVGGroup" React-native 0.45.1 [\#166](https://github.com/capitalone/react-native-pathjs-charts/issues/166)
- Add press event to labels of radar chart [\#161](https://github.com/capitalone/react-native-pathjs-charts/issues/161)
**Merged pull requests:**
- Fix the RN 0.46 and above incompatibility issues caused by React Native SVG 5.2 [\#170](https://github.com/capitalone/react-native-pathjs-charts/pull/170) ([kensongoo](https://github.com/kensongoo))
- Add on press radar chart [\#164](https://github.com/capitalone/react-native-pathjs-charts/pull/164) ([Shagamii](https://github.com/Shagamii))
## [0.0.29](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.29) (2017-06-16)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.28...0.0.29)
**Implemented enhancements:**
- Add options to style axis ticks. [\#136](https://github.com/capitalone/react-native-pathjs-charts/issues/136)
**Closed issues:**
- No component found for view with name "RNSVGGroup" [\#162](https://github.com/capitalone/react-native-pathjs-charts/issues/162)
- \[Bar\] show inaccurate when some data [\#158](https://github.com/capitalone/react-native-pathjs-charts/issues/158)
- Got No view Manager defined for class RNSVGGroup [\#154](https://github.com/capitalone/react-native-pathjs-charts/issues/154)
- Compilation error with RN 0.44 \(incorrect arguments to TouchEvent.obtain\) [\#147](https://github.com/capitalone/react-native-pathjs-charts/issues/147)
- Can not used in RN 0.38? [\#143](https://github.com/capitalone/react-native-pathjs-charts/issues/143)
**Merged pull requests:**
- Upgrade to RN 0.45.1 [\#163](https://github.com/capitalone/react-native-pathjs-charts/pull/163) ([Minishlink](https://github.com/Minishlink))
- Added options for axis tick size and color [\#159](https://github.com/capitalone/react-native-pathjs-charts/pull/159) ([kurtsergey](https://github.com/kurtsergey))
- importing docs [\#150](https://github.com/capitalone/react-native-pathjs-charts/pull/150) ([katscott](https://github.com/katscott))
## [0.0.28](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.28) (2017-05-05)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.27...0.0.28)
**Merged pull requests:**
- Update to latest react, react-native, and react-native-svg versions [\#149](https://github.com/capitalone/react-native-pathjs-charts/pull/149) ([marzolfb](https://github.com/marzolfb))
- Add rotation bar chart label [\#144](https://github.com/capitalone/react-native-pathjs-charts/pull/144) ([superandrew213](https://github.com/superandrew213))
## [0.0.27](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.27) (2017-04-19)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.26...0.0.27)
**Fixed bugs:**
- Bar Chart Color Pattern [\#134](https://github.com/capitalone/react-native-pathjs-charts/issues/134)
- Margin left move axis X too [\#103](https://github.com/capitalone/react-native-pathjs-charts/issues/103)
- Question: how to limit the number of lines on an axis? [\#97](https://github.com/capitalone/react-native-pathjs-charts/issues/97)
- High performance impact when dataset only contains small floats [\#94](https://github.com/capitalone/react-native-pathjs-charts/issues/94)
**Closed issues:**
- Unable to set the number of rings to be displayed in radar chart [\#130](https://github.com/capitalone/react-native-pathjs-charts/issues/130)
- Lines in Barchart too wide [\#128](https://github.com/capitalone/react-native-pathjs-charts/issues/128)
- how to resize the pie charts\(Radius of center and size all chart\) [\#126](https://github.com/capitalone/react-native-pathjs-charts/issues/126)
- Pie chart with 1 item in the midle not Transparent [\#124](https://github.com/capitalone/react-native-pathjs-charts/issues/124)
- Resize Pie Chart [\#114](https://github.com/capitalone/react-native-pathjs-charts/issues/114)
- Using dates on X axes [\#107](https://github.com/capitalone/react-native-pathjs-charts/issues/107)
- How do you set the min for axisY for stockline chart? [\#104](https://github.com/capitalone/react-native-pathjs-charts/issues/104)
- No component found for view with name "RNSVGGroup" [\#102](https://github.com/capitalone/react-native-pathjs-charts/issues/102)
- react native pathjs charts crashes in iPone simulator [\#101](https://github.com/capitalone/react-native-pathjs-charts/issues/101)
- Colors for multiple lines [\#100](https://github.com/capitalone/react-native-pathjs-charts/issues/100)
- Text in the middle of the Pie Chart [\#98](https://github.com/capitalone/react-native-pathjs-charts/issues/98)
- Single Item Bar Chart with Spacing [\#96](https://github.com/capitalone/react-native-pathjs-charts/issues/96)
- Running example fails to build DependencyGraph: @providesModule naming collision [\#95](https://github.com/capitalone/react-native-pathjs-charts/issues/95)
- undefined is not a function [\#90](https://github.com/capitalone/react-native-pathjs-charts/issues/90)
**Merged pull requests:**
- Increment version to 0.0.27 [\#140](https://github.com/capitalone/react-native-pathjs-charts/pull/140) ([marzolfb](https://github.com/marzolfb))
- Fix pie chart centering [\#138](https://github.com/capitalone/react-native-pathjs-charts/pull/138) ([dgladkov](https://github.com/dgladkov))
- Fixes \#134 - allowing bar coloring to respect grouped data [\#137](https://github.com/capitalone/react-native-pathjs-charts/pull/137) ([marzolfb](https://github.com/marzolfb))
- Added rings option to radar chart. fixes issue \#130 [\#131](https://github.com/capitalone/react-native-pathjs-charts/pull/131) ([HineshMandalia](https://github.com/HineshMandalia))
- Added color, gridColor, strokeWidth and opacity to axis options [\#121](https://github.com/capitalone/react-native-pathjs-charts/pull/121) ([microwavesafe](https://github.com/microwavesafe))
- Fix \#103 - cleanup x axis label offsets to avoid tie to chart offsets [\#111](https://github.com/capitalone/react-native-pathjs-charts/pull/111) ([marzolfb](https://github.com/marzolfb))
- Fix \#97 - handle possibility of null value for axis tick label [\#109](https://github.com/capitalone/react-native-pathjs-charts/pull/109) ([marzolfb](https://github.com/marzolfb))
- Fix label.fill props [\#108](https://github.com/capitalone/react-native-pathjs-charts/pull/108) ([DupK](https://github.com/DupK))
- fix \#94 - constrain tick value range to upper bound determined via… [\#99](https://github.com/capitalone/react-native-pathjs-charts/pull/99) ([marzolfb](https://github.com/marzolfb))
## [0.0.26](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.26) (2017-02-22)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.25...0.0.26)
**Fixed bugs:**
- Axis.js Line 91 will return NaN [\#89](https://github.com/capitalone/react-native-pathjs-charts/issues/89)
- Issues with Y Axis Values & Decimal Values Using Bar Chart [\#28](https://github.com/capitalone/react-native-pathjs-charts/issues/28)
**Closed issues:**
- Passed an invalid numeric value \(NaN, or not-a-number\) to CoreGraphics API [\#87](https://github.com/capitalone/react-native-pathjs-charts/issues/87)
- "undefined is not a function" when I run the example [\#86](https://github.com/capitalone/react-native-pathjs-charts/issues/86)
- SmoothLine graph plot doesn't actually go through data points [\#83](https://github.com/capitalone/react-native-pathjs-charts/issues/83)
- react-native-svg库不能正常使用 [\#81](https://github.com/capitalone/react-native-pathjs-charts/issues/81)
- Visually indicate threshold for graph [\#80](https://github.com/capitalone/react-native-pathjs-charts/issues/80)
- Always start y-axis from a minimum value \(say: 0\) irrespective of minimum value of the data? [\#76](https://github.com/capitalone/react-native-pathjs-charts/issues/76)
- Update react-native-svg to fix error [\#74](https://github.com/capitalone/react-native-pathjs-charts/issues/74)
- Error while updating property 'd' in shadow node of type RNSVGPath [\#70](https://github.com/capitalone/react-native-pathjs-charts/issues/70)
- undefined is not a function error from upgraded paths-js in many example app charts [\#62](https://github.com/capitalone/react-native-pathjs-charts/issues/62)
**Merged pull requests:**
- Increment version to 0.0.26 [\#93](https://github.com/capitalone/react-native-pathjs-charts/pull/93) ([marzolfb](https://github.com/marzolfb))
- Fix \#89 - fix gridline rendering when using non-numeric static labels [\#92](https://github.com/capitalone/react-native-pathjs-charts/pull/92) ([marzolfb](https://github.com/marzolfb))
- Fix \#28 - rounding floats to fix abnormal axis display issues [\#91](https://github.com/capitalone/react-native-pathjs-charts/pull/91) ([marzolfb](https://github.com/marzolfb))
- Adding babel-polyfill import to many charts to fix \#62 for Android [\#85](https://github.com/capitalone/react-native-pathjs-charts/pull/85) ([marzolfb](https://github.com/marzolfb))
## [0.0.25](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.25) (2017-02-10)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.24...0.0.25)
**Fixed bugs:**
- Re-render charts when data changed [\#49](https://github.com/capitalone/react-native-pathjs-charts/issues/49)
**Closed issues:**
- Pie chart not rendering the labels and numbers [\#77](https://github.com/capitalone/react-native-pathjs-charts/issues/77)
- Errors when using RN 0.40 [\#66](https://github.com/capitalone/react-native-pathjs-charts/issues/66)
- Example app error - Couldn't find preset "react-native" relative to directory [\#63](https://github.com/capitalone/react-native-pathjs-charts/issues/63)
- Example cannot run [\#60](https://github.com/capitalone/react-native-pathjs-charts/issues/60)
- Missing onload property [\#59](https://github.com/capitalone/react-native-pathjs-charts/issues/59)
- Please add SPDX lines in license headers. [\#57](https://github.com/capitalone/react-native-pathjs-charts/issues/57)
- I want that column and column between each other in my BarChart has scattered points or gaps. [\#56](https://github.com/capitalone/react-native-pathjs-charts/issues/56)
**Merged pull requests:**
- Upgrade version to 0.0.25 [\#79](https://github.com/capitalone/react-native-pathjs-charts/pull/79) ([marzolfb](https://github.com/marzolfb))
- Upgrade to react-native 0.41.2 and react-native-svg 4.5.0 [\#78](https://github.com/capitalone/react-native-pathjs-charts/pull/78) ([marzolfb](https://github.com/marzolfb))
- Add min/max scale support to the y axis on the bar chart [\#72](https://github.com/capitalone/react-native-pathjs-charts/pull/72) ([mlabrum](https://github.com/mlabrum))
- Fix \#57 - Added SPDX lines to license headers and added missing license headers [\#68](https://github.com/capitalone/react-native-pathjs-charts/pull/68) ([marzolfb](https://github.com/marzolfb))
- Add color management to Radar chart [\#67](https://github.com/capitalone/react-native-pathjs-charts/pull/67) ([MeisterTea](https://github.com/MeisterTea))
- Fix \#63 - adding babelrc config file to example [\#65](https://github.com/capitalone/react-native-pathjs-charts/pull/65) ([marzolfb](https://github.com/marzolfb))
- Fix \#62 - adding Babel polyfill to fix undefined not a function error [\#64](https://github.com/capitalone/react-native-pathjs-charts/pull/64) ([marzolfb](https://github.com/marzolfb))
## [0.0.24](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.24) (2017-01-27)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/v0.0.24...0.0.24)
## [v0.0.24](https://github.com/capitalone/react-native-pathjs-charts/tree/v0.0.24) (2017-01-27)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.23...v0.0.24)
**Implemented enhancements:**
- Line Chart - Line Thickness/Width [\#44](https://github.com/capitalone/react-native-pathjs-charts/issues/44)
- Way to extend y axis line within scale? [\#31](https://github.com/capitalone/react-native-pathjs-charts/issues/31)
- Use non-Number values for data on StockLine chart type [\#4](https://github.com/capitalone/react-native-pathjs-charts/issues/4)
**Fixed bugs:**
- Running Example app fails - updated versions of react-native and react-native-svg needed [\#55](https://github.com/capitalone/react-native-pathjs-charts/issues/55)
- Extra vertical gridline on the StockLine chart with a specific data set [\#23](https://github.com/capitalone/react-native-pathjs-charts/issues/23)
- Pie graph doesn't render with only 1 data item [\#20](https://github.com/capitalone/react-native-pathjs-charts/issues/20)
**Closed issues:**
- How to use flex width on charts? [\#47](https://github.com/capitalone/react-native-pathjs-charts/issues/47)
- Unknown name module:'react-native-pathjs-charts' [\#38](https://github.com/capitalone/react-native-pathjs-charts/issues/38)
**Merged pull requests:**
- Pinning to patch-updates only for react-native and react-native-svg [\#58](https://github.com/capitalone/react-native-pathjs-charts/pull/58) ([marzolfb](https://github.com/marzolfb))
- Fix \#31 and add regions [\#53](https://github.com/capitalone/react-native-pathjs-charts/pull/53) ([marzolfb](https://github.com/marzolfb))
- Added java code to import rn-svg package - rn link doesn't work [\#52](https://github.com/capitalone/react-native-pathjs-charts/pull/52) ([marzolfb](https://github.com/marzolfb))
- Fix \#4 - Added support for static and dynamic tick labels on chart axes [\#48](https://github.com/capitalone/react-native-pathjs-charts/pull/48) ([marzolfb](https://github.com/marzolfb))
- Enhancement \#44 - Line Chart StrokeWidth [\#46](https://github.com/capitalone/react-native-pathjs-charts/pull/46) ([edencakir](https://github.com/edencakir))
- Fixed \#20 - renders single-item pie chart correctly now [\#45](https://github.com/capitalone/react-native-pathjs-charts/pull/45) ([marzolfb](https://github.com/marzolfb))
- Fix jest tests from changes in \#42 [\#43](https://github.com/capitalone/react-native-pathjs-charts/pull/43) ([marzolfb](https://github.com/marzolfb))
- Feature/pie colors [\#42](https://github.com/capitalone/react-native-pathjs-charts/pull/42) ([tonyneel923](https://github.com/tonyneel923))
## [0.0.23](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.23) (2017-01-06)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.22...0.0.23)
**Closed issues:**
- Way to do a basic line chart, no fill color under line, no smoothing of line. [\#39](https://github.com/capitalone/react-native-pathjs-charts/issues/39)
- How i can scroll chart horizontally? [\#35](https://github.com/capitalone/react-native-pathjs-charts/issues/35)
**Merged pull requests:**
- Added new demo image to README [\#37](https://github.com/capitalone/react-native-pathjs-charts/pull/37) ([marzolfb](https://github.com/marzolfb))
- Enhanced pie chart multicolor support, jest tests, & updated example sync util [\#36](https://github.com/capitalone/react-native-pathjs-charts/pull/36) ([marzolfb](https://github.com/marzolfb))
- Cleaning up example project [\#34](https://github.com/capitalone/react-native-pathjs-charts/pull/34) ([katscott](https://github.com/katscott))
- Updating NPM badge to one that auto-versions [\#33](https://github.com/capitalone/react-native-pathjs-charts/pull/33) ([katscott](https://github.com/katscott))
## [0.0.22](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.22) (2016-12-15)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.21...0.0.22)
**Fixed bugs:**
- There are no numbers for axis on android [\#17](https://github.com/capitalone/react-native-pathjs-charts/issues/17)
- Chart is not getting drawn at the center of the view [\#8](https://github.com/capitalone/react-native-pathjs-charts/issues/8)
**Closed issues:**
- Stock graph with a combined horizontal line at a specific price? [\#30](https://github.com/capitalone/react-native-pathjs-charts/issues/30)
- Charts not showing properly on Android [\#26](https://github.com/capitalone/react-native-pathjs-charts/issues/26)
- In Bars chart first line hide yAxis numbers [\#25](https://github.com/capitalone/react-native-pathjs-charts/issues/25)
- NPM Update [\#16](https://github.com/capitalone/react-native-pathjs-charts/issues/16)
- xcode'error unknow class method in the running App [\#15](https://github.com/capitalone/react-native-pathjs-charts/issues/15)
**Merged pull requests:**
- Update react and react-native versions [\#32](https://github.com/capitalone/react-native-pathjs-charts/pull/32) ([ctscoville](https://github.com/ctscoville))
- Fixed \#26 - axes now respect offsets properly and cleanup of other offset [\#27](https://github.com/capitalone/react-native-pathjs-charts/pull/27) ([marzolfb](https://github.com/marzolfb))
- Added watchman-update-example-src script to ease manual testing [\#21](https://github.com/capitalone/react-native-pathjs-charts/pull/21) ([marzolfb](https://github.com/marzolfb))
- Fix documentation for \#8 [\#19](https://github.com/capitalone/react-native-pathjs-charts/pull/19) ([SimchaShats](https://github.com/SimchaShats))
## [0.0.21](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.21) (2016-11-08)
[Full Changelog](https://github.com/capitalone/react-native-pathjs-charts/compare/0.0.20...0.0.21)
**Fixed bugs:**
- Android build errors with latest move to react-native 0.35 [\#12](https://github.com/capitalone/react-native-pathjs-charts/issues/12)
**Closed issues:**
- No chart visible [\#10](https://github.com/capitalone/react-native-pathjs-charts/issues/10)
- build failed with example app [\#6](https://github.com/capitalone/react-native-pathjs-charts/issues/6)
- undefined is not an object \(evaluating '\_reactNative.UIManager.RNSVGRenderable.NativeProps'\) [\#2](https://github.com/capitalone/react-native-pathjs-charts/issues/2)
- use react-native-pathjs-charts was wrong [\#1](https://github.com/capitalone/react-native-pathjs-charts/issues/1)
**Merged pull requests:**
- Initial circleci config for autopublishing to npm registry [\#18](https://github.com/capitalone/react-native-pathjs-charts/pull/18) ([marzolfb](https://github.com/marzolfb))
- GitHub templates [\#14](https://github.com/capitalone/react-native-pathjs-charts/pull/14) ([katscott](https://github.com/katscott))
- Fix android build problem after .35 upgrade [\#13](https://github.com/capitalone/react-native-pathjs-charts/pull/13) ([marzolfb](https://github.com/marzolfb))
- Fix broken example app by upgrading to React Native 0.35 and adding c++ linker flag [\#11](https://github.com/capitalone/react-native-pathjs-charts/pull/11) ([marzolfb](https://github.com/marzolfb))
- Fix version of react-native-svg [\#9](https://github.com/capitalone/react-native-pathjs-charts/pull/9) ([maarekj](https://github.com/maarekj))
- adds showAreas prop - allows user to define if areas are shown [\#7](https://github.com/capitalone/react-native-pathjs-charts/pull/7) ([Mindaugas-Jacionis](https://github.com/Mindaugas-Jacionis))
## [0.0.20](https://github.com/capitalone/react-native-pathjs-charts/tree/0.0.20) (2016-08-04)
**Merged pull requests:**
- Fixing to work with RN 0.30 and RNSVG 3.1.1 [\#3](https://github.com/capitalone/react-native-pathjs-charts/pull/3) ([caledhwa](https://github.com/caledhwa))
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* |
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/.flowconfig | [ignore]
# We fork some components by platform.
.*/*.web.js
.*/*.android.js
# Some modules have their own node_modules with overlap
.*/node_modules/node-haste/.*
# Ugh
.*/node_modules/babel.*
.*/node_modules/babylon.*
.*/node_modules/invariant.*
# Ignore react and fbjs where there are overlaps, but don't ignore
# anything that react-native relies on
.*/node_modules/fbjs/lib/Map.js
.*/node_modules/fbjs/lib/fetch.js
.*/node_modules/fbjs/lib/ExecutionEnvironment.js
.*/node_modules/fbjs/lib/ErrorUtils.js
# Flow has a built-in definition for the 'react' module which we prefer to use
# over the currently-untyped source
.*/node_modules/react/react.js
.*/node_modules/react/lib/React.js
.*/node_modules/react/lib/ReactDOM.js
.*/__mocks__/.*
.*/__tests__/.*
.*/commoner/test/source/widget/share.js
# Ignore commoner tests
.*/node_modules/commoner/test/.*
# See https://github.com/facebook/flow/issues/442
.*/react-tools/node_modules/commoner/lib/reader.js
# Ignore jest
.*/node_modules/jest-cli/.*
# Ignore Website
.*/website/.*
# Ignore generators
.*/local-cli/generator.*
# Ignore BUCK generated folders
.*\.buckd/
.*/node_modules/is-my-json-valid/test/.*\.json
.*/node_modules/iconv-lite/encodings/tables/.*\.json
.*/node_modules/y18n/test/.*\.json
.*/node_modules/spdx-license-ids/spdx-license-ids.json
.*/node_modules/spdx-exceptions/index.json
.*/node_modules/resolve/test/subdirs/node_modules/a/b/c/x.json
.*/node_modules/resolve/lib/core.json
.*/node_modules/jsonparse/samplejson/.*\.json
.*/node_modules/json5/test/.*\.json
.*/node_modules/ua-parser-js/test/.*\.json
.*/node_modules/builtin-modules/builtin-modules.json
.*/node_modules/binary-extensions/binary-extensions.json
.*/node_modules/url-regex/tlds.json
.*/node_modules/joi/.*\.json
.*/node_modules/isemail/.*\.json
.*/node_modules/tr46/.*\.json
[include]
[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
node_modules/react-native/flow
flow/
[options]
module.system=haste
esproposal.class_static_fields=enable
esproposal.class_instance_fields=enable
munge_underscores=true
module.name_mapper='^image![a-zA-Z0-9$_-]+$' -> 'GlobalImageStub'
module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\)$' -> 'RelativeImageStub'
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(2[0-2]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(2[0-2]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
[version]
^0.22.0
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/package-lock.json | {
"name": "react-native-pathjs-charts",
"version": "0.0.33",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.0.0-beta.39",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0-beta.39.tgz",
"integrity": "sha512-PConL+YIK9BgNUWWC2q4fbltj1g475TofpNVNivSypcAAKElfpSS1cv7MrpLYRG8TzZvwcVu9M30hLA/WAp1HQ==",
"dev": true,
"requires": {
"chalk": "2.3.0",
"esutils": "2.0.2",
"js-tokens": "3.0.2"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"abab": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz",
"integrity": "sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4=",
"dev": true
},
"absolute-path": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/absolute-path/-/absolute-path-0.0.0.tgz",
"integrity": "sha1-p4di+9rftSl76ZsV01p4Wy8JW/c=",
"dev": true
},
"accepts": {
"version": "1.2.13",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz",
"integrity": "sha1-5fHzkoxtlf2WVYw27D2dDeSm7Oo=",
"dev": true,
"requires": {
"mime-types": "2.1.17",
"negotiator": "0.5.3"
}
},
"acorn": {
"version": "5.4.1",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-5.4.1.tgz",
"integrity": "sha512-XLmq3H/BVvW6/GbxKryGxWORz1ebilSsUDlyC27bXhWGWAZWkGwS6FLHjOlwFXNFoWFQEO/Df4u0YYd0K3BQgQ==",
"dev": true
},
"acorn-globals": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.1.0.tgz",
"integrity": "sha512-KjZwU26uG3u6eZcfGbTULzFcsoz6pegNKtHPksZPOUsiKo5bUmiBPa38FuHZ/Eun+XYh/JCCkS9AS3Lu4McQOQ==",
"dev": true,
"requires": {
"acorn": "5.4.1"
}
},
"ajv": {
"version": "5.5.2",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
"integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
"dev": true,
"requires": {
"co": "4.6.0",
"fast-deep-equal": "1.0.0",
"fast-json-stable-stringify": "2.0.0",
"json-schema-traverse": "0.3.1"
}
},
"align-text": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"dev": true,
"requires": {
"kind-of": "3.2.2",
"longest": "1.0.1",
"repeat-string": "1.6.1"
}
},
"amdefine": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
"dev": true
},
"ansi": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz",
"integrity": "sha1-DELU+xcWDVqa8eSEus4cZpIsGyE=",
"dev": true
},
"ansi-escapes": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz",
"integrity": "sha512-O/klc27mWNUigtv0F8NJWbLF00OcegQalkqKURWdosW08YZKi4m6CnSUSvIZG1otNJbTWhN01Hhz389DW7mvDQ==",
"dev": true
},
"ansi-gray": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz",
"integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=",
"dev": true,
"requires": {
"ansi-wrap": "0.1.0"
}
},
"ansi-regex": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
"dev": true
},
"ansi-styles": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
"dev": true
},
"ansi-wrap": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz",
"integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=",
"dev": true
},
"anymatch": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz",
"integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==",
"dev": true,
"requires": {
"micromatch": "2.3.11",
"normalize-path": "2.1.1"
}
},
"append-transform": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/append-transform/-/append-transform-0.4.0.tgz",
"integrity": "sha1-126/jKlNJ24keja61EpLdKthGZE=",
"dev": true,
"requires": {
"default-require-extensions": "1.0.0"
}
},
"arch": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/arch/-/arch-2.1.0.tgz",
"integrity": "sha1-NhOqRhSQZLPB8GB5Gb8dR4boKIk=",
"dev": true
},
"are-we-there-yet": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz",
"integrity": "sha1-u13KOCu5TwXhUZQ3PRb9O6HKEQ0=",
"dev": true,
"requires": {
"delegates": "1.0.0",
"readable-stream": "2.3.3"
}
},
"argparse": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz",
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
"dev": true,
"requires": {
"sprintf-js": "1.0.3"
}
},
"arr-diff": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
"integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
"dev": true,
"requires": {
"arr-flatten": "1.1.0"
}
},
"arr-flatten": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
"integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
"dev": true
},
"array-differ": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz",
"integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=",
"dev": true
},
"array-equal": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
"integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
"dev": true
},
"array-filter": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz",
"integrity": "sha1-fajPLiZijtcygDWB/SH2fKzS7uw=",
"dev": true
},
"array-map": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz",
"integrity": "sha1-iKK6tz0c97zVwbEYoAP2b2ZfpmI=",
"dev": true
},
"array-reduce": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz",
"integrity": "sha1-FziZ0//Rx9k4PkR5Ul2+J4yrXys=",
"dev": true
},
"array-uniq": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
"dev": true
},
"array-unique": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
"integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=",
"dev": true
},
"arrify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
"art": {
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/art/-/art-0.10.1.tgz",
"integrity": "sha1-OFQYg+OZIlxeGT/yRujxV897IUY=",
"dev": true
},
"asap": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=",
"dev": true
},
"asn1": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=",
"dev": true
},
"assert-plus": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
"dev": true
},
"astral-regex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
"integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==",
"dev": true
},
"async": {
"version": "2.6.0",
"resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz",
"integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==",
"dev": true,
"requires": {
"lodash": "4.17.5"
}
},
"async-limiter": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz",
"integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==",
"dev": true
},
"asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
"dev": true
},
"aws-sign2": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
"dev": true
},
"aws4": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
"integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=",
"dev": true
},
"babel-code-frame": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
"integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
"dev": true,
"requires": {
"chalk": "1.1.3",
"esutils": "2.0.2",
"js-tokens": "3.0.2"
}
},
"babel-core": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz",
"integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=",
"dev": true,
"requires": {
"babel-code-frame": "6.26.0",
"babel-generator": "6.26.1",
"babel-helpers": "6.24.1",
"babel-messages": "6.23.0",
"babel-register": "6.26.0",
"babel-runtime": "6.26.0",
"babel-template": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0",
"babylon": "6.18.0",
"convert-source-map": "1.5.1",
"debug": "2.6.9",
"json5": "0.5.1",
"lodash": "4.17.5",
"minimatch": "3.0.4",
"path-is-absolute": "1.0.1",
"private": "0.1.8",
"slash": "1.0.0",
"source-map": "0.5.7"
}
},
"babel-generator": {
"version": "6.26.1",
"resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
"integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
"dev": true,
"requires": {
"babel-messages": "6.23.0",
"babel-runtime": "6.26.0",
"babel-types": "6.26.0",
"detect-indent": "4.0.0",
"jsesc": "1.3.0",
"lodash": "4.17.5",
"source-map": "0.5.7",
"trim-right": "1.0.1"
}
},
"babel-helper-builder-react-jsx": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz",
"integrity": "sha1-Of+DE7dci2Xc7/HzHTg+D/KkCKA=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-types": "6.26.0",
"esutils": "2.0.2"
}
},
"babel-helper-call-delegate": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz",
"integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
"dev": true,
"requires": {
"babel-helper-hoist-variables": "6.24.1",
"babel-runtime": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-helper-define-map": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz",
"integrity": "sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8=",
"dev": true,
"requires": {
"babel-helper-function-name": "6.24.1",
"babel-runtime": "6.26.0",
"babel-types": "6.26.0",
"lodash": "4.17.5"
}
},
"babel-helper-function-name": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz",
"integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
"dev": true,
"requires": {
"babel-helper-get-function-arity": "6.24.1",
"babel-runtime": "6.26.0",
"babel-template": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-helper-get-function-arity": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz",
"integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-helper-hoist-variables": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz",
"integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-helper-optimise-call-expression": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz",
"integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-helper-regex": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz",
"integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-types": "6.26.0",
"lodash": "4.17.5"
}
},
"babel-helper-remap-async-to-generator": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz",
"integrity": "sha1-XsWBgnrXI/7N04HxySg5BnbkVRs=",
"dev": true,
"requires": {
"babel-helper-function-name": "6.24.1",
"babel-runtime": "6.26.0",
"babel-template": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-helper-replace-supers": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz",
"integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
"dev": true,
"requires": {
"babel-helper-optimise-call-expression": "6.24.1",
"babel-messages": "6.23.0",
"babel-runtime": "6.26.0",
"babel-template": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-helpers": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz",
"integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-template": "6.26.0"
}
},
"babel-jest": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-22.1.0.tgz",
"integrity": "sha512-5pKRFTlDr+x1JESNRd5leqvxEJk3dRwVvIXikB6Lr4BWZbBppk1Wp+BLUzxWL8tM+EYGLCWgfqkD35Sft8r8Lw==",
"dev": true,
"requires": {
"babel-plugin-istanbul": "4.1.5",
"babel-preset-jest": "22.1.0"
}
},
"babel-messages": {
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-check-es2015-constants": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz",
"integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-external-helpers": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz",
"integrity": "sha1-IoX0iwK9Xe3oUXXK+MYuhq3M76E=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-istanbul": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz",
"integrity": "sha1-Z2DN2Xf0EdPhdbsGTyvDJ9mbK24=",
"dev": true,
"requires": {
"find-up": "2.1.0",
"istanbul-lib-instrument": "1.9.1",
"test-exclude": "4.1.1"
}
},
"babel-plugin-jest-hoist": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.1.0.tgz",
"integrity": "sha512-Og5sjbOZc4XUI3njqwYhS6WLTlHQUJ/y5+dOqmst8eHrozYZgT4OMzAaYaxhk75c2fBVYwn7+mNEN97XDO7cOw==",
"dev": true
},
"babel-plugin-react-transform": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/babel-plugin-react-transform/-/babel-plugin-react-transform-2.0.2.tgz",
"integrity": "sha1-UVu/qZaJOYEULZCx+bFjXeKZUQk=",
"dev": true,
"requires": {
"lodash": "4.17.5"
}
},
"babel-plugin-syntax-async-functions": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz",
"integrity": "sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU=",
"dev": true
},
"babel-plugin-syntax-class-properties": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-class-properties/-/babel-plugin-syntax-class-properties-6.13.0.tgz",
"integrity": "sha1-1+sjt5oxf4VDlixQW4J8fWysJ94=",
"dev": true
},
"babel-plugin-syntax-dynamic-import": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-dynamic-import/-/babel-plugin-syntax-dynamic-import-6.18.0.tgz",
"integrity": "sha1-jWomIpyDdFqZgqRBBRVyyqF5sdo=",
"dev": true
},
"babel-plugin-syntax-flow": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.18.0.tgz",
"integrity": "sha1-TDqyCiryaqIM0lmVw5jE63AxDI0=",
"dev": true
},
"babel-plugin-syntax-jsx": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz",
"integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=",
"dev": true
},
"babel-plugin-syntax-object-rest-spread": {
"version": "6.13.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
"integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=",
"dev": true
},
"babel-plugin-syntax-trailing-function-commas": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
"integrity": "sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM=",
"dev": true
},
"babel-plugin-transform-async-to-generator": {
"version": "6.16.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.16.0.tgz",
"integrity": "sha1-Gew2yxSGtZ+fRorfpCzhOQjKKZk=",
"dev": true,
"requires": {
"babel-helper-remap-async-to-generator": "6.24.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-class-properties": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-class-properties/-/babel-plugin-transform-class-properties-6.24.1.tgz",
"integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=",
"dev": true,
"requires": {
"babel-helper-function-name": "6.24.1",
"babel-plugin-syntax-class-properties": "6.13.0",
"babel-runtime": "6.26.0",
"babel-template": "6.26.0"
}
},
"babel-plugin-transform-es2015-arrow-functions": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
"integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es2015-block-scoped-functions": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz",
"integrity": "sha1-u8UbSflk1wy42OC5ToICRs46YUE=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es2015-block-scoping": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz",
"integrity": "sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-template": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0",
"lodash": "4.17.5"
}
},
"babel-plugin-transform-es2015-classes": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz",
"integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
"dev": true,
"requires": {
"babel-helper-define-map": "6.26.0",
"babel-helper-function-name": "6.24.1",
"babel-helper-optimise-call-expression": "6.24.1",
"babel-helper-replace-supers": "6.24.1",
"babel-messages": "6.23.0",
"babel-runtime": "6.26.0",
"babel-template": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-plugin-transform-es2015-computed-properties": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
"integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-template": "6.26.0"
}
},
"babel-plugin-transform-es2015-destructuring": {
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
"integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es2015-for-of": {
"version": "6.23.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
"integrity": "sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es2015-function-name": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
"integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
"dev": true,
"requires": {
"babel-helper-function-name": "6.24.1",
"babel-runtime": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-plugin-transform-es2015-literals": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz",
"integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.0.tgz",
"integrity": "sha1-DYOUApt9xqvhqX7xgeAHWN0uXYo=",
"dev": true,
"requires": {
"babel-plugin-transform-strict-mode": "6.24.1",
"babel-runtime": "6.26.0",
"babel-template": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-plugin-transform-es2015-object-super": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz",
"integrity": "sha1-JM72muIcuDp/hgPa0CH1cusnj40=",
"dev": true,
"requires": {
"babel-helper-replace-supers": "6.24.1",
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es2015-parameters": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
"integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
"dev": true,
"requires": {
"babel-helper-call-delegate": "6.24.1",
"babel-helper-get-function-arity": "6.24.1",
"babel-runtime": "6.26.0",
"babel-template": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-plugin-transform-es2015-shorthand-properties": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
"integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-plugin-transform-es2015-spread": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz",
"integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es2015-sticky-regex": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
"integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
"dev": true,
"requires": {
"babel-helper-regex": "6.26.0",
"babel-runtime": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-plugin-transform-es2015-template-literals": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
"integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es2015-unicode-regex": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
"integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
"dev": true,
"requires": {
"babel-helper-regex": "6.26.0",
"babel-runtime": "6.26.0",
"regexpu-core": "2.0.0"
}
},
"babel-plugin-transform-es3-member-expression-literals": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es3-member-expression-literals/-/babel-plugin-transform-es3-member-expression-literals-6.22.0.tgz",
"integrity": "sha1-cz00RPPsxBvvjtGmpOCWV7iWnrs=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-es3-property-literals": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz",
"integrity": "sha1-sgeNWELiKr9A9z6M3pzTcRq9V1g=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-flow-strip-types": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-flow-strip-types/-/babel-plugin-transform-flow-strip-types-6.22.0.tgz",
"integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=",
"dev": true,
"requires": {
"babel-plugin-syntax-flow": "6.18.0",
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-object-assign": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz",
"integrity": "sha1-+Z0vZvGgsNSY40bFNZaEdAyqILo=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-object-rest-spread": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz",
"integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=",
"dev": true,
"requires": {
"babel-plugin-syntax-object-rest-spread": "6.13.0",
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-react-display-name": {
"version": "6.25.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.25.0.tgz",
"integrity": "sha1-Z+K/Hx6ck6sI25Z5LgU5K/LMKNE=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-react-jsx": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz",
"integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=",
"dev": true,
"requires": {
"babel-helper-builder-react-jsx": "6.26.0",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-react-jsx-source": {
"version": "6.22.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz",
"integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=",
"dev": true,
"requires": {
"babel-plugin-syntax-jsx": "6.18.0",
"babel-runtime": "6.26.0"
}
},
"babel-plugin-transform-regenerator": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz",
"integrity": "sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8=",
"dev": true,
"requires": {
"regenerator-transform": "0.10.1"
}
},
"babel-plugin-transform-strict-mode": {
"version": "6.24.1",
"resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
"integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-types": "6.26.0"
}
},
"babel-preset-es2015-node": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz",
"integrity": "sha1-YLIxVwJLDP6/OmNVTLBe4DW05V8=",
"dev": true,
"requires": {
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-function-name": "6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-sticky-regex": "6.24.1",
"babel-plugin-transform-es2015-unicode-regex": "6.24.1",
"semver": "5.5.0"
}
},
"babel-preset-fbjs": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-2.1.4.tgz",
"integrity": "sha512-6XVQwlO26V5/0P9s2Eje8Epqkv/ihaMJ798+W98ktOA8fCn2IFM6wEi7CDW3fTbKFZ/8fDGvGZH01B6GSuNiWA==",
"dev": true,
"requires": {
"babel-plugin-check-es2015-constants": "6.22.0",
"babel-plugin-syntax-class-properties": "6.13.0",
"babel-plugin-syntax-flow": "6.18.0",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-plugin-syntax-object-rest-spread": "6.13.0",
"babel-plugin-syntax-trailing-function-commas": "6.22.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.26.0",
"babel-plugin-transform-es2015-classes": "6.24.1",
"babel-plugin-transform-es2015-computed-properties": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-for-of": "6.23.0",
"babel-plugin-transform-es2015-function-name": "6.24.1",
"babel-plugin-transform-es2015-literals": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-es2015-object-super": "6.24.1",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-template-literals": "6.22.0",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-display-name": "6.25.0",
"babel-plugin-transform-react-jsx": "6.24.1"
}
},
"babel-preset-jest": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-22.1.0.tgz",
"integrity": "sha512-ps2UYz7IQpP2IgZ41tJjUuUDTxJioprHXD8fi9DoycKDGNqB3nAX/ggy1S3plaQd43ktBvMS1FkkyGNoBujFpg==",
"dev": true,
"requires": {
"babel-plugin-jest-hoist": "22.1.0",
"babel-plugin-syntax-object-rest-spread": "6.13.0"
}
},
"babel-preset-react-native": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/babel-preset-react-native/-/babel-preset-react-native-1.9.2.tgz",
"integrity": "sha1-sird0uNV/zs5Zxt5voB+Ut+hRfI=",
"dev": true,
"requires": {
"babel-plugin-check-es2015-constants": "6.22.0",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-syntax-class-properties": "6.13.0",
"babel-plugin-syntax-flow": "6.18.0",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-plugin-syntax-trailing-function-commas": "6.22.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.26.0",
"babel-plugin-transform-es2015-classes": "6.24.1",
"babel-plugin-transform-es2015-computed-properties": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-for-of": "6.23.0",
"babel-plugin-transform-es2015-function-name": "6.24.1",
"babel-plugin-transform-es2015-literals": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-template-literals": "6.22.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-display-name": "6.25.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-react-jsx-source": "6.22.0",
"babel-plugin-transform-regenerator": "6.26.0",
"react-transform-hmr": "1.0.4"
}
},
"babel-register": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz",
"integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
"dev": true,
"requires": {
"babel-core": "6.26.0",
"babel-runtime": "6.26.0",
"core-js": "2.5.3",
"home-or-tmp": "2.0.0",
"lodash": "4.17.5",
"mkdirp": "0.5.1",
"source-map-support": "0.4.18"
},
"dependencies": {
"source-map-support": {
"version": "0.4.18",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz",
"integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==",
"dev": true,
"requires": {
"source-map": "0.5.7"
}
}
}
},
"babel-runtime": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"dev": true,
"requires": {
"core-js": "2.5.3",
"regenerator-runtime": "0.11.1"
}
},
"babel-template": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
"integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0",
"babylon": "6.18.0",
"lodash": "4.17.5"
}
},
"babel-traverse": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz",
"integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
"dev": true,
"requires": {
"babel-code-frame": "6.26.0",
"babel-messages": "6.23.0",
"babel-runtime": "6.26.0",
"babel-types": "6.26.0",
"babylon": "6.18.0",
"debug": "2.6.9",
"globals": "9.18.0",
"invariant": "2.2.2",
"lodash": "4.17.5"
}
},
"babel-types": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"esutils": "2.0.2",
"lodash": "4.17.5",
"to-fast-properties": "1.0.3"
}
},
"babylon": {
"version": "6.18.0",
"resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
"integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
"dev": true
},
"balanced-match": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
"dev": true
},
"base64-js": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz",
"integrity": "sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw==",
"dev": true
},
"base64-url": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/base64-url/-/base64-url-1.2.1.tgz",
"integrity": "sha1-GZ/WYXAqDnt9yubgaYuwicUvbXg=",
"dev": true
},
"basic-auth": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz",
"integrity": "sha1-Awk1sB3nyblKgksp8/zLdQ06UpA=",
"dev": true
},
"basic-auth-connect": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz",
"integrity": "sha1-/bC0OWLKe0BFanwrtI/hc9otISI=",
"dev": true
},
"batch": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz",
"integrity": "sha1-PzQU84AyF0O/wQQvmoP/HVgk1GQ=",
"dev": true
},
"bcrypt-pbkdf": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
"integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
"dev": true,
"optional": true,
"requires": {
"tweetnacl": "0.14.5"
}
},
"beeper": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz",
"integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak=",
"dev": true
},
"big-integer": {
"version": "1.6.26",
"resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.26.tgz",
"integrity": "sha1-OvFnL6Ytry1eyvrPblqg0l4Cwcg=",
"dev": true
},
"body-parser": {
"version": "1.13.3",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.13.3.tgz",
"integrity": "sha1-wIzzMMM1jhUQFqBXRvE/ApyX+pc=",
"dev": true,
"requires": {
"bytes": "2.1.0",
"content-type": "1.0.4",
"debug": "2.2.0",
"depd": "1.0.1",
"http-errors": "1.3.1",
"iconv-lite": "0.4.11",
"on-finished": "2.3.0",
"qs": "4.0.0",
"raw-body": "2.1.7",
"type-is": "1.6.15"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"iconv-lite": {
"version": "0.4.11",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz",
"integrity": "sha1-LstC/SlHRJIiCaLnxATayHk9it4=",
"dev": true
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
},
"qs": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz",
"integrity": "sha1-wx2bdOwn33XlQ6hseHKO2NRiNgc=",
"dev": true
}
}
},
"boom": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz",
"integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=",
"dev": true,
"requires": {
"hoek": "4.2.0"
}
},
"bplist-creator": {
"version": "0.0.7",
"resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz",
"integrity": "sha1-N98VNgkoJLh8QvlXsBNEEXNyrkU=",
"dev": true,
"requires": {
"stream-buffers": "2.2.0"
}
},
"bplist-parser": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz",
"integrity": "sha1-1g1dzCDLptx+HymbNdPh+V2vuuY=",
"dev": true,
"requires": {
"big-integer": "1.6.26"
}
},
"brace-expansion": {
"version": "1.1.8",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz",
"integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=",
"dev": true,
"requires": {
"balanced-match": "1.0.0",
"concat-map": "0.0.1"
}
},
"braces": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz",
"integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
"dev": true,
"requires": {
"expand-range": "1.8.2",
"preserve": "0.2.0",
"repeat-element": "1.1.2"
}
},
"browser-process-hrtime": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.2.tgz",
"integrity": "sha1-Ql1opY00R/AqBKqJQYf86K+Le44=",
"dev": true
},
"browser-resolve": {
"version": "1.11.2",
"resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz",
"integrity": "sha1-j/CbCixCFxihBRwmCzLkj0QpOM4=",
"dev": true,
"requires": {
"resolve": "1.1.7"
}
},
"bser": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz",
"integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=",
"dev": true,
"requires": {
"node-int64": "0.4.0"
}
},
"builtin-modules": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
"integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
"dev": true
},
"bytes": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz",
"integrity": "sha1-rJPEEOL/ycx89LRks4KJBn9eR7Q=",
"dev": true
},
"callsites": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
"integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=",
"dev": true
},
"camelcase": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=",
"dev": true,
"optional": true
},
"caseless": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
"dev": true
},
"center-align": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
"dev": true,
"optional": true,
"requires": {
"align-text": "0.1.4",
"lazy-cache": "1.0.4"
}
},
"chalk": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"dev": true,
"requires": {
"ansi-styles": "2.2.1",
"escape-string-regexp": "1.0.5",
"has-ansi": "2.0.0",
"strip-ansi": "3.0.1",
"supports-color": "2.0.0"
}
},
"chardet": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz",
"integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=",
"dev": true
},
"ci-info": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.1.2.tgz",
"integrity": "sha512-uTGIPNx/nSpBdsF6xnseRXLLtfr9VLqkz8ZqHXr3Y7b6SftyRxBGjwMtJj1OhNbmlc1wZzLNAlAcvyIiE8a6ZA==",
"dev": true
},
"cli-cursor": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
"integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
"dev": true,
"requires": {
"restore-cursor": "2.0.0"
}
},
"cli-width": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
"integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
"dev": true
},
"clipboardy": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-1.2.2.tgz",
"integrity": "sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==",
"dev": true,
"requires": {
"arch": "2.1.0",
"execa": "0.8.0"
},
"dependencies": {
"execa": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz",
"integrity": "sha1-2NdrvBtVIX7RkP1t1J08d07PyNo=",
"dev": true,
"requires": {
"cross-spawn": "5.1.0",
"get-stream": "3.0.0",
"is-stream": "1.1.0",
"npm-run-path": "2.0.2",
"p-finally": "1.0.0",
"signal-exit": "3.0.2",
"strip-eof": "1.0.0"
}
}
}
},
"cliui": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
"integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
"dev": true,
"optional": true,
"requires": {
"center-align": "0.1.3",
"right-align": "0.1.3",
"wordwrap": "0.0.2"
},
"dependencies": {
"wordwrap": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
"integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=",
"dev": true,
"optional": true
}
}
},
"clone": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz",
"integrity": "sha1-KY1+IjFmD0DAA8LtMUDezz9TCF8="
},
"clone-stats": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz",
"integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=",
"dev": true
},
"co": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
"dev": true
},
"code-point-at": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
"dev": true
},
"color": {
"version": "0.11.4",
"resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz",
"integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=",
"requires": {
"clone": "1.0.3",
"color-convert": "1.9.1",
"color-string": "0.3.0"
}
},
"color-convert": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
"integrity": "sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==",
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
"color-string": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz",
"integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=",
"requires": {
"color-name": "1.1.3"
}
},
"color-support": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz",
"integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==",
"dev": true
},
"combined-stream": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz",
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
"dev": true,
"requires": {
"delayed-stream": "1.0.0"
}
},
"commander": {
"version": "2.13.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz",
"integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==",
"dev": true
},
"compressible": {
"version": "2.0.12",
"resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.12.tgz",
"integrity": "sha1-xZpcmdt2dn6YdlAOJx72OzSTvWY=",
"dev": true,
"requires": {
"mime-db": "1.30.0"
}
},
"compression": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz",
"integrity": "sha1-sDuNhub4rSloPLqN+R3cb/x3s5U=",
"dev": true,
"requires": {
"accepts": "1.2.13",
"bytes": "2.1.0",
"compressible": "2.0.12",
"debug": "2.2.0",
"on-headers": "1.0.1",
"vary": "1.0.1"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
}
}
},
"concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"dev": true
},
"concat-stream": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz",
"integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=",
"dev": true,
"requires": {
"inherits": "2.0.3",
"readable-stream": "2.3.3",
"typedarray": "0.0.6"
}
},
"connect": {
"version": "2.30.2",
"resolved": "https://registry.npmjs.org/connect/-/connect-2.30.2.tgz",
"integrity": "sha1-jam8vooFTT0xjXTf7JA7XDmhtgk=",
"dev": true,
"requires": {
"basic-auth-connect": "1.0.0",
"body-parser": "1.13.3",
"bytes": "2.1.0",
"compression": "1.5.2",
"connect-timeout": "1.6.2",
"content-type": "1.0.4",
"cookie": "0.1.3",
"cookie-parser": "1.3.5",
"cookie-signature": "1.0.6",
"csurf": "1.8.3",
"debug": "2.2.0",
"depd": "1.0.1",
"errorhandler": "1.4.3",
"express-session": "1.11.3",
"finalhandler": "0.4.0",
"fresh": "0.3.0",
"http-errors": "1.3.1",
"method-override": "2.3.10",
"morgan": "1.6.1",
"multiparty": "3.3.2",
"on-headers": "1.0.1",
"parseurl": "1.3.2",
"pause": "0.1.0",
"qs": "4.0.0",
"response-time": "2.3.2",
"serve-favicon": "2.3.2",
"serve-index": "1.7.3",
"serve-static": "1.10.3",
"type-is": "1.6.15",
"utils-merge": "1.0.0",
"vhost": "3.0.2"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
},
"qs": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz",
"integrity": "sha1-wx2bdOwn33XlQ6hseHKO2NRiNgc=",
"dev": true
}
}
},
"connect-timeout": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.2.tgz",
"integrity": "sha1-3ppexh4zoStu2qt7XwYumMWZuI4=",
"dev": true,
"requires": {
"debug": "2.2.0",
"http-errors": "1.3.1",
"ms": "0.7.1",
"on-headers": "1.0.1"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
}
}
},
"content-type": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
"integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
"dev": true
},
"content-type-parser": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.2.tgz",
"integrity": "sha512-lM4l4CnMEwOLHAHr/P6MEZwZFPJFtAAKgL6pogbXmVZggIqXhdB6RbBtPOTsw2FcXwYhehRGERJmRrjOiIB8pQ==",
"dev": true
},
"convert-source-map": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz",
"integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=",
"dev": true
},
"cookie": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.1.3.tgz",
"integrity": "sha1-5zSlwUF/zkctWu+Cw4HKu2TRpDU=",
"dev": true
},
"cookie-parser": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.3.5.tgz",
"integrity": "sha1-nXVVcPtdF4kHcSJ6AjFNm+fPg1Y=",
"dev": true,
"requires": {
"cookie": "0.1.3",
"cookie-signature": "1.0.6"
}
},
"cookie-signature": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
"dev": true
},
"core-js": {
"version": "2.5.3",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz",
"integrity": "sha1-isw4NFgk8W2DZbfJtCWRaOjtYD4=",
"dev": true
},
"core-util-is": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
"dev": true
},
"crc": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/crc/-/crc-3.3.0.tgz",
"integrity": "sha1-+mIuG8OIvyVzCQgta2UgDOZwkLo=",
"dev": true
},
"create-react-class": {
"version": "15.6.3",
"resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.3.tgz",
"integrity": "sha512-M+/3Q6E6DLO6Yx3OwrWjwHBnvfXXYA7W+dFjt/ZDBemHO1DDZhsalX/NUtnTYclN6GfnBDRh4qRHjcDHmlJBJg==",
"dev": true,
"requires": {
"fbjs": "0.8.16",
"loose-envify": "1.3.1",
"object-assign": "4.1.1"
}
},
"cross-spawn": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
"integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
"dev": true,
"requires": {
"lru-cache": "4.1.1",
"shebang-command": "1.2.0",
"which": "1.3.0"
}
},
"cryptiles": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz",
"integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=",
"dev": true,
"requires": {
"boom": "5.2.0"
},
"dependencies": {
"boom": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz",
"integrity": "sha512-Z5BTk6ZRe4tXXQlkqftmsAUANpXmuwlsF5Oov8ThoMbQRzdGTA1ngYRW160GexgOgjsFOKJz0LYhoNi+2AMBUw==",
"dev": true,
"requires": {
"hoek": "4.2.0"
}
}
}
},
"csrf": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/csrf/-/csrf-3.0.6.tgz",
"integrity": "sha1-thEg3c7q/JHnbtUxO7XAsmZ7cQo=",
"dev": true,
"requires": {
"rndm": "1.2.0",
"tsscmp": "1.0.5",
"uid-safe": "2.1.4"
}
},
"cssom": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz",
"integrity": "sha1-uANhcMefB6kP8vFuIihAJ6JDhIs=",
"dev": true
},
"cssstyle": {
"version": "0.2.37",
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz",
"integrity": "sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ=",
"dev": true,
"requires": {
"cssom": "0.3.2"
}
},
"csurf": {
"version": "1.8.3",
"resolved": "https://registry.npmjs.org/csurf/-/csurf-1.8.3.tgz",
"integrity": "sha1-I/KhO/HY/OHQyZZYg5RELLqGpWo=",
"dev": true,
"requires": {
"cookie": "0.1.3",
"cookie-signature": "1.0.6",
"csrf": "3.0.6",
"http-errors": "1.3.1"
}
},
"dashdash": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
"dev": true,
"requires": {
"assert-plus": "1.0.0"
}
},
"dateformat": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz",
"integrity": "sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI=",
"dev": true
},
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
"requires": {
"ms": "2.0.0"
}
},
"decamelize": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
"dev": true
},
"deep-is": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
"dev": true
},
"default-require-extensions": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-1.0.0.tgz",
"integrity": "sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=",
"dev": true,
"requires": {
"strip-bom": "2.0.0"
}
},
"define-properties": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz",
"integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=",
"dev": true,
"requires": {
"foreach": "2.0.5",
"object-keys": "1.0.11"
}
},
"delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=",
"dev": true
},
"delegates": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
"integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=",
"dev": true
},
"denodeify": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/denodeify/-/denodeify-1.2.1.tgz",
"integrity": "sha1-OjYof1A05pnnV3kBBSwubJQlFjE=",
"dev": true
},
"depd": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.0.1.tgz",
"integrity": "sha1-gK7GTJ1tl+ZcwqnKqTwKpqv3Oqo=",
"dev": true
},
"destroy": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
"dev": true
},
"detect-indent": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz",
"integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
"dev": true,
"requires": {
"repeating": "2.0.1"
}
},
"detect-newline": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz",
"integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=",
"dev": true
},
"diff": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/diff/-/diff-3.4.0.tgz",
"integrity": "sha512-QpVuMTEoJMF7cKzi6bvWhRulU1fZqZnvyVQgNhPaxxuTYwyjn/j1v9falseQ/uXWwPnO56RBfwtg4h/EQXmucA==",
"dev": true
},
"dom-walk": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz",
"integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=",
"dev": true
},
"domexception": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz",
"integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==",
"dev": true,
"requires": {
"webidl-conversions": "4.0.2"
}
},
"duplexer2": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz",
"integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=",
"dev": true,
"requires": {
"readable-stream": "1.1.14"
},
"dependencies": {
"isarray": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
"dev": true
},
"readable-stream": {
"version": "1.1.14",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
"dev": true,
"requires": {
"core-util-is": "1.0.2",
"inherits": "2.0.3",
"isarray": "0.0.1",
"string_decoder": "0.10.31"
}
},
"string_decoder": {
"version": "0.10.31",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
"integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
"dev": true
}
}
},
"ecc-jsbn": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
"integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
"dev": true,
"optional": true,
"requires": {
"jsbn": "0.1.1"
}
},
"ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
"dev": true
},
"encoding": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
"integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
"dev": true,
"requires": {
"iconv-lite": "0.4.19"
}
},
"envinfo": {
"version": "3.11.1",
"resolved": "https://registry.npmjs.org/envinfo/-/envinfo-3.11.1.tgz",
"integrity": "sha512-hKkh7aKtont6Zuv4RmE4VkOc96TkBj9NXj7Ghsd/qCA9LuJI0Dh+ImwA1N5iORB9Vg+sz5bq9CHJzs51BILNCQ==",
"dev": true,
"requires": {
"clipboardy": "1.2.2",
"glob": "7.1.2",
"minimist": "1.2.0",
"os-name": "2.0.1",
"which": "1.3.0"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
"dev": true
}
}
},
"errno": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz",
"integrity": "sha512-IsORQDpaaSwcDP4ZZnHxgE85werpo34VYn1Ud3mq+eUsF593faR8oCZNXrROVkpFu2TsbrNhHin0aUrTsQ9vNw==",
"dev": true,
"requires": {
"prr": "1.0.1"
}
},
"error-ex": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz",
"integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=",
"dev": true,
"requires": {
"is-arrayish": "0.2.1"
}
},
"errorhandler": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.4.3.tgz",
"integrity": "sha1-t7cO2PNZ6duICS8tIMD4MUIK2D8=",
"dev": true,
"requires": {
"accepts": "1.3.4",
"escape-html": "1.0.3"
},
"dependencies": {
"accepts": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz",
"integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=",
"dev": true,
"requires": {
"mime-types": "2.1.17",
"negotiator": "0.6.1"
}
},
"negotiator": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz",
"integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=",
"dev": true
}
}
},
"es-abstract": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz",
"integrity": "sha512-/uh/DhdqIOSkAWifU+8nG78vlQxdLckUdI/sPgy0VhuXi2qJ7T8czBmqIYtLQVpCIFYafChnsRsB5pyb1JdmCQ==",
"dev": true,
"requires": {
"es-to-primitive": "1.1.1",
"function-bind": "1.1.1",
"has": "1.0.1",
"is-callable": "1.1.3",
"is-regex": "1.0.4"
}
},
"es-to-primitive": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz",
"integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=",
"dev": true,
"requires": {
"is-callable": "1.1.3",
"is-date-object": "1.0.1",
"is-symbol": "1.0.1"
}
},
"escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
"integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
"dev": true
},
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
"dev": true
},
"escodegen": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.9.0.tgz",
"integrity": "sha512-v0MYvNQ32bzwoG2OSFzWAkuahDQHK92JBN0pTAALJ4RIxEZe766QJPDR8Hqy7XNUy5K3fnVL76OqYAdc4TZEIw==",
"dev": true,
"requires": {
"esprima": "3.1.3",
"estraverse": "4.2.0",
"esutils": "2.0.2",
"optionator": "0.8.2",
"source-map": "0.5.7"
},
"dependencies": {
"esprima": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz",
"integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=",
"dev": true
}
}
},
"esprima": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz",
"integrity": "sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw==",
"dev": true
},
"estraverse": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
"integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
"dev": true
},
"esutils": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
"dev": true
},
"etag": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz",
"integrity": "sha1-A9MLX2fdbmMtKUXTDWZScxo01dg=",
"dev": true
},
"event-target-shim": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-1.1.1.tgz",
"integrity": "sha1-qG5e5r2qFgVEddp5fM3fDFVphJE=",
"dev": true
},
"exec-sh": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.1.tgz",
"integrity": "sha512-aLt95pexaugVtQerpmE51+4QfWrNc304uez7jvj6fWnN8GeEHpttB8F36n8N7uVhUMbH/1enbxQ9HImZ4w/9qg==",
"dev": true,
"requires": {
"merge": "1.2.0"
}
},
"execa": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
"integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
"dev": true,
"requires": {
"cross-spawn": "5.1.0",
"get-stream": "3.0.0",
"is-stream": "1.1.0",
"npm-run-path": "2.0.2",
"p-finally": "1.0.0",
"signal-exit": "3.0.2",
"strip-eof": "1.0.0"
}
},
"exit": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
"integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
"dev": true
},
"expand-brackets": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz",
"integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=",
"dev": true,
"requires": {
"is-posix-bracket": "0.1.1"
}
},
"expand-range": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
"integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=",
"dev": true,
"requires": {
"fill-range": "2.2.3"
}
},
"expect": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/expect/-/expect-22.1.0.tgz",
"integrity": "sha512-8K+8TjNnZq73KYtqNWKWTbYbN8z4loeL+Pn2bqpmtTdBtLNXJtpz9vkUcQlFsgKMDRA3VM8GXRA6qbV/oBF7Bw==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"jest-diff": "22.1.0",
"jest-get-type": "22.1.0",
"jest-matcher-utils": "22.1.0",
"jest-message-util": "22.1.0",
"jest-regex-util": "22.1.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
}
}
},
"express-session": {
"version": "1.11.3",
"resolved": "https://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz",
"integrity": "sha1-XMmPP1/4Ttg1+Ry/CqvQxxB0AK8=",
"dev": true,
"requires": {
"cookie": "0.1.3",
"cookie-signature": "1.0.6",
"crc": "3.3.0",
"debug": "2.2.0",
"depd": "1.0.1",
"on-headers": "1.0.1",
"parseurl": "1.3.2",
"uid-safe": "2.0.0",
"utils-merge": "1.0.0"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
},
"uid-safe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.0.0.tgz",
"integrity": "sha1-p/PGymSh9qXQTsDvPkw9U2cxcTc=",
"dev": true,
"requires": {
"base64-url": "1.2.1"
}
}
}
},
"extend": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz",
"integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ=",
"dev": true
},
"external-editor": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz",
"integrity": "sha512-E44iT5QVOUJBKij4IIV3uvxuNlbKS38Tw1HiupxEIHPv9qtC2PrDYohbXV5U+1jnfIXttny8gUhj+oZvflFlzA==",
"dev": true,
"requires": {
"chardet": "0.4.2",
"iconv-lite": "0.4.19",
"tmp": "0.0.33"
}
},
"extglob": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz",
"integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=",
"dev": true,
"requires": {
"is-extglob": "1.0.0"
}
},
"extsprintf": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
"integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=",
"dev": true
},
"fancy-log": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz",
"integrity": "sha1-9BEl49hPLn2JpD0G2VjI94vha+E=",
"dev": true,
"requires": {
"ansi-gray": "0.1.1",
"color-support": "1.1.3",
"time-stamp": "1.1.0"
}
},
"fast-deep-equal": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz",
"integrity": "sha1-liVqO8l1WV6zbYLpkp0GDYk0Of8=",
"dev": true
},
"fast-json-stable-stringify": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
"integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=",
"dev": true
},
"fast-levenshtein": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
"dev": true
},
"fb-watchman": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz",
"integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=",
"dev": true,
"requires": {
"bser": "2.0.0"
}
},
"fbjs": {
"version": "0.8.16",
"resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz",
"integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=",
"dev": true,
"requires": {
"core-js": "1.2.7",
"isomorphic-fetch": "2.2.1",
"loose-envify": "1.3.1",
"object-assign": "4.1.1",
"promise": "7.3.1",
"setimmediate": "1.0.5",
"ua-parser-js": "0.7.17"
},
"dependencies": {
"core-js": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
"integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=",
"dev": true
}
}
},
"fbjs-scripts": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/fbjs-scripts/-/fbjs-scripts-0.8.1.tgz",
"integrity": "sha512-hTjqlua9YJupF8shbVRTq20xKPITnDmqBLBQyR9BttZYT+gxGeKboIzPC19T3Erp29Q0+jdMwjUiyTHR61q1Bw==",
"dev": true,
"requires": {
"babel-core": "6.26.0",
"babel-preset-fbjs": "2.1.4",
"core-js": "2.5.3",
"cross-spawn": "5.1.0",
"gulp-util": "3.0.8",
"object-assign": "4.1.1",
"semver": "5.5.0",
"through2": "2.0.3"
}
},
"figures": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz",
"integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=",
"dev": true,
"requires": {
"escape-string-regexp": "1.0.5"
}
},
"filename-regex": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz",
"integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=",
"dev": true
},
"fileset": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/fileset/-/fileset-2.0.3.tgz",
"integrity": "sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=",
"dev": true,
"requires": {
"glob": "7.1.2",
"minimatch": "3.0.4"
}
},
"fill-range": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz",
"integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=",
"dev": true,
"requires": {
"is-number": "2.1.0",
"isobject": "2.1.0",
"randomatic": "1.1.7",
"repeat-element": "1.1.2",
"repeat-string": "1.6.1"
}
},
"finalhandler": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz",
"integrity": "sha1-llpS2ejQXSuFdUhUH7ibU6JJfZs=",
"dev": true,
"requires": {
"debug": "2.2.0",
"escape-html": "1.0.2",
"on-finished": "2.3.0",
"unpipe": "1.0.0"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"escape-html": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.2.tgz",
"integrity": "sha1-130y+pjjjC9BroXpJ44ODmuhAiw=",
"dev": true
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
}
}
},
"find-up": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
"integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
"dev": true,
"requires": {
"locate-path": "2.0.0"
}
},
"for-in": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz",
"integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=",
"dev": true
},
"for-own": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz",
"integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=",
"dev": true,
"requires": {
"for-in": "1.0.2"
}
},
"foreach": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz",
"integrity": "sha1-C+4AUBiusmDQo6865ljdATbsG5k=",
"dev": true
},
"forever-agent": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=",
"dev": true
},
"form-data": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz",
"integrity": "sha1-b7lPvXGIUwbXPRXMSX/kzE7NRL8=",
"dev": true,
"requires": {
"asynckit": "0.4.0",
"combined-stream": "1.0.5",
"mime-types": "2.1.17"
}
},
"fresh": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz",
"integrity": "sha1-ZR+DjiJCTnVm3hYdg1jKoZn4PU8=",
"dev": true
},
"fs-extra": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz",
"integrity": "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=",
"dev": true,
"requires": {
"graceful-fs": "4.1.11",
"jsonfile": "2.4.0",
"klaw": "1.3.1"
}
},
"fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
"dev": true
},
"fsevents": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.1.3.tgz",
"integrity": "sha512-WIr7iDkdmdbxu/Gh6eKEZJL6KPE74/5MEsf2whTOFNxbIoIixogroLdKYqB6FDav4Wavh/lZdzzd3b2KxIXC5Q==",
"dev": true,
"optional": true,
"requires": {
"nan": "2.8.0",
"node-pre-gyp": "0.6.39"
},
"dependencies": {
"abbrev": {
"version": "1.1.0",
"bundled": true,
"dev": true,
"optional": true
},
"ajv": {
"version": "4.11.8",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"co": "4.6.0",
"json-stable-stringify": "1.0.1"
}
},
"ansi-regex": {
"version": "2.1.1",
"bundled": true,
"dev": true
},
"aproba": {
"version": "1.1.1",
"bundled": true,
"dev": true,
"optional": true
},
"are-we-there-yet": {
"version": "1.1.4",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"delegates": "1.0.0",
"readable-stream": "2.2.9"
}
},
"asn1": {
"version": "0.2.3",
"bundled": true,
"dev": true,
"optional": true
},
"assert-plus": {
"version": "0.2.0",
"bundled": true,
"dev": true,
"optional": true
},
"asynckit": {
"version": "0.4.0",
"bundled": true,
"dev": true,
"optional": true
},
"aws-sign2": {
"version": "0.6.0",
"bundled": true,
"dev": true,
"optional": true
},
"aws4": {
"version": "1.6.0",
"bundled": true,
"dev": true,
"optional": true
},
"balanced-match": {
"version": "0.4.2",
"bundled": true,
"dev": true
},
"bcrypt-pbkdf": {
"version": "1.0.1",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"tweetnacl": "0.14.5"
}
},
"block-stream": {
"version": "0.0.9",
"bundled": true,
"dev": true,
"requires": {
"inherits": "2.0.3"
}
},
"boom": {
"version": "2.10.1",
"bundled": true,
"dev": true,
"requires": {
"hoek": "2.16.3"
}
},
"brace-expansion": {
"version": "1.1.7",
"bundled": true,
"dev": true,
"requires": {
"balanced-match": "0.4.2",
"concat-map": "0.0.1"
}
},
"buffer-shims": {
"version": "1.0.0",
"bundled": true,
"dev": true
},
"caseless": {
"version": "0.12.0",
"bundled": true,
"dev": true,
"optional": true
},
"co": {
"version": "4.6.0",
"bundled": true,
"dev": true,
"optional": true
},
"code-point-at": {
"version": "1.1.0",
"bundled": true,
"dev": true
},
"combined-stream": {
"version": "1.0.5",
"bundled": true,
"dev": true,
"requires": {
"delayed-stream": "1.0.0"
}
},
"concat-map": {
"version": "0.0.1",
"bundled": true,
"dev": true
},
"console-control-strings": {
"version": "1.1.0",
"bundled": true,
"dev": true
},
"core-util-is": {
"version": "1.0.2",
"bundled": true,
"dev": true
},
"cryptiles": {
"version": "2.0.5",
"bundled": true,
"dev": true,
"requires": {
"boom": "2.10.1"
}
},
"dashdash": {
"version": "1.14.1",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"assert-plus": "1.0.0"
},
"dependencies": {
"assert-plus": {
"version": "1.0.0",
"bundled": true,
"dev": true,
"optional": true
}
}
},
"debug": {
"version": "2.6.8",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"ms": "2.0.0"
}
},
"deep-extend": {
"version": "0.4.2",
"bundled": true,
"dev": true,
"optional": true
},
"delayed-stream": {
"version": "1.0.0",
"bundled": true,
"dev": true
},
"delegates": {
"version": "1.0.0",
"bundled": true,
"dev": true,
"optional": true
},
"detect-libc": {
"version": "1.0.2",
"bundled": true,
"dev": true,
"optional": true
},
"ecc-jsbn": {
"version": "0.1.1",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"jsbn": "0.1.1"
}
},
"extend": {
"version": "3.0.1",
"bundled": true,
"dev": true,
"optional": true
},
"extsprintf": {
"version": "1.0.2",
"bundled": true,
"dev": true
},
"forever-agent": {
"version": "0.6.1",
"bundled": true,
"dev": true,
"optional": true
},
"form-data": {
"version": "2.1.4",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"asynckit": "0.4.0",
"combined-stream": "1.0.5",
"mime-types": "2.1.15"
}
},
"fs.realpath": {
"version": "1.0.0",
"bundled": true,
"dev": true
},
"fstream": {
"version": "1.0.11",
"bundled": true,
"dev": true,
"requires": {
"graceful-fs": "4.1.11",
"inherits": "2.0.3",
"mkdirp": "0.5.1",
"rimraf": "2.6.1"
}
},
"fstream-ignore": {
"version": "1.0.5",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"fstream": "1.0.11",
"inherits": "2.0.3",
"minimatch": "3.0.4"
}
},
"gauge": {
"version": "2.7.4",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"aproba": "1.1.1",
"console-control-strings": "1.1.0",
"has-unicode": "2.0.1",
"object-assign": "4.1.1",
"signal-exit": "3.0.2",
"string-width": "1.0.2",
"strip-ansi": "3.0.1",
"wide-align": "1.1.2"
}
},
"getpass": {
"version": "0.1.7",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"assert-plus": "1.0.0"
},
"dependencies": {
"assert-plus": {
"version": "1.0.0",
"bundled": true,
"dev": true,
"optional": true
}
}
},
"glob": {
"version": "7.1.2",
"bundled": true,
"dev": true,
"requires": {
"fs.realpath": "1.0.0",
"inflight": "1.0.6",
"inherits": "2.0.3",
"minimatch": "3.0.4",
"once": "1.4.0",
"path-is-absolute": "1.0.1"
}
},
"graceful-fs": {
"version": "4.1.11",
"bundled": true,
"dev": true
},
"har-schema": {
"version": "1.0.5",
"bundled": true,
"dev": true,
"optional": true
},
"har-validator": {
"version": "4.2.1",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"ajv": "4.11.8",
"har-schema": "1.0.5"
}
},
"has-unicode": {
"version": "2.0.1",
"bundled": true,
"dev": true,
"optional": true
},
"hawk": {
"version": "3.1.3",
"bundled": true,
"dev": true,
"requires": {
"boom": "2.10.1",
"cryptiles": "2.0.5",
"hoek": "2.16.3",
"sntp": "1.0.9"
}
},
"hoek": {
"version": "2.16.3",
"bundled": true,
"dev": true
},
"http-signature": {
"version": "1.1.1",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"assert-plus": "0.2.0",
"jsprim": "1.4.0",
"sshpk": "1.13.0"
}
},
"inflight": {
"version": "1.0.6",
"bundled": true,
"dev": true,
"requires": {
"once": "1.4.0",
"wrappy": "1.0.2"
}
},
"inherits": {
"version": "2.0.3",
"bundled": true,
"dev": true
},
"ini": {
"version": "1.3.4",
"bundled": true,
"dev": true,
"optional": true
},
"is-fullwidth-code-point": {
"version": "1.0.0",
"bundled": true,
"dev": true,
"requires": {
"number-is-nan": "1.0.1"
}
},
"is-typedarray": {
"version": "1.0.0",
"bundled": true,
"dev": true,
"optional": true
},
"isarray": {
"version": "1.0.0",
"bundled": true,
"dev": true
},
"isstream": {
"version": "0.1.2",
"bundled": true,
"dev": true,
"optional": true
},
"jodid25519": {
"version": "1.0.2",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"jsbn": "0.1.1"
}
},
"jsbn": {
"version": "0.1.1",
"bundled": true,
"dev": true,
"optional": true
},
"json-schema": {
"version": "0.2.3",
"bundled": true,
"dev": true,
"optional": true
},
"json-stable-stringify": {
"version": "1.0.1",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"jsonify": "0.0.0"
}
},
"json-stringify-safe": {
"version": "5.0.1",
"bundled": true,
"dev": true,
"optional": true
},
"jsonify": {
"version": "0.0.0",
"bundled": true,
"dev": true,
"optional": true
},
"jsprim": {
"version": "1.4.0",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"assert-plus": "1.0.0",
"extsprintf": "1.0.2",
"json-schema": "0.2.3",
"verror": "1.3.6"
},
"dependencies": {
"assert-plus": {
"version": "1.0.0",
"bundled": true,
"dev": true,
"optional": true
}
}
},
"mime-db": {
"version": "1.27.0",
"bundled": true,
"dev": true
},
"mime-types": {
"version": "2.1.15",
"bundled": true,
"dev": true,
"requires": {
"mime-db": "1.27.0"
}
},
"minimatch": {
"version": "3.0.4",
"bundled": true,
"dev": true,
"requires": {
"brace-expansion": "1.1.7"
}
},
"minimist": {
"version": "0.0.8",
"bundled": true,
"dev": true
},
"mkdirp": {
"version": "0.5.1",
"bundled": true,
"dev": true,
"requires": {
"minimist": "0.0.8"
}
},
"ms": {
"version": "2.0.0",
"bundled": true,
"dev": true,
"optional": true
},
"node-pre-gyp": {
"version": "0.6.39",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"detect-libc": "1.0.2",
"hawk": "3.1.3",
"mkdirp": "0.5.1",
"nopt": "4.0.1",
"npmlog": "4.1.0",
"rc": "1.2.1",
"request": "2.81.0",
"rimraf": "2.6.1",
"semver": "5.3.0",
"tar": "2.2.1",
"tar-pack": "3.4.0"
}
},
"nopt": {
"version": "4.0.1",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"abbrev": "1.1.0",
"osenv": "0.1.4"
}
},
"npmlog": {
"version": "4.1.0",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"are-we-there-yet": "1.1.4",
"console-control-strings": "1.1.0",
"gauge": "2.7.4",
"set-blocking": "2.0.0"
}
},
"number-is-nan": {
"version": "1.0.1",
"bundled": true,
"dev": true
},
"oauth-sign": {
"version": "0.8.2",
"bundled": true,
"dev": true,
"optional": true
},
"object-assign": {
"version": "4.1.1",
"bundled": true,
"dev": true,
"optional": true
},
"once": {
"version": "1.4.0",
"bundled": true,
"dev": true,
"requires": {
"wrappy": "1.0.2"
}
},
"os-homedir": {
"version": "1.0.2",
"bundled": true,
"dev": true,
"optional": true
},
"os-tmpdir": {
"version": "1.0.2",
"bundled": true,
"dev": true,
"optional": true
},
"osenv": {
"version": "0.1.4",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"os-homedir": "1.0.2",
"os-tmpdir": "1.0.2"
}
},
"path-is-absolute": {
"version": "1.0.1",
"bundled": true,
"dev": true
},
"performance-now": {
"version": "0.2.0",
"bundled": true,
"dev": true,
"optional": true
},
"process-nextick-args": {
"version": "1.0.7",
"bundled": true,
"dev": true
},
"punycode": {
"version": "1.4.1",
"bundled": true,
"dev": true,
"optional": true
},
"qs": {
"version": "6.4.0",
"bundled": true,
"dev": true,
"optional": true
},
"rc": {
"version": "1.2.1",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"deep-extend": "0.4.2",
"ini": "1.3.4",
"minimist": "1.2.0",
"strip-json-comments": "2.0.1"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"bundled": true,
"dev": true,
"optional": true
}
}
},
"readable-stream": {
"version": "2.2.9",
"bundled": true,
"dev": true,
"requires": {
"buffer-shims": "1.0.0",
"core-util-is": "1.0.2",
"inherits": "2.0.3",
"isarray": "1.0.0",
"process-nextick-args": "1.0.7",
"string_decoder": "1.0.1",
"util-deprecate": "1.0.2"
}
},
"request": {
"version": "2.81.0",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"aws-sign2": "0.6.0",
"aws4": "1.6.0",
"caseless": "0.12.0",
"combined-stream": "1.0.5",
"extend": "3.0.1",
"forever-agent": "0.6.1",
"form-data": "2.1.4",
"har-validator": "4.2.1",
"hawk": "3.1.3",
"http-signature": "1.1.1",
"is-typedarray": "1.0.0",
"isstream": "0.1.2",
"json-stringify-safe": "5.0.1",
"mime-types": "2.1.15",
"oauth-sign": "0.8.2",
"performance-now": "0.2.0",
"qs": "6.4.0",
"safe-buffer": "5.0.1",
"stringstream": "0.0.5",
"tough-cookie": "2.3.2",
"tunnel-agent": "0.6.0",
"uuid": "3.0.1"
}
},
"rimraf": {
"version": "2.6.1",
"bundled": true,
"dev": true,
"requires": {
"glob": "7.1.2"
}
},
"safe-buffer": {
"version": "5.0.1",
"bundled": true,
"dev": true
},
"semver": {
"version": "5.3.0",
"bundled": true,
"dev": true,
"optional": true
},
"set-blocking": {
"version": "2.0.0",
"bundled": true,
"dev": true,
"optional": true
},
"signal-exit": {
"version": "3.0.2",
"bundled": true,
"dev": true,
"optional": true
},
"sntp": {
"version": "1.0.9",
"bundled": true,
"dev": true,
"requires": {
"hoek": "2.16.3"
}
},
"sshpk": {
"version": "1.13.0",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"asn1": "0.2.3",
"assert-plus": "1.0.0",
"bcrypt-pbkdf": "1.0.1",
"dashdash": "1.14.1",
"ecc-jsbn": "0.1.1",
"getpass": "0.1.7",
"jodid25519": "1.0.2",
"jsbn": "0.1.1",
"tweetnacl": "0.14.5"
},
"dependencies": {
"assert-plus": {
"version": "1.0.0",
"bundled": true,
"dev": true,
"optional": true
}
}
},
"string-width": {
"version": "1.0.2",
"bundled": true,
"dev": true,
"requires": {
"code-point-at": "1.1.0",
"is-fullwidth-code-point": "1.0.0",
"strip-ansi": "3.0.1"
}
},
"string_decoder": {
"version": "1.0.1",
"bundled": true,
"dev": true,
"requires": {
"safe-buffer": "5.0.1"
}
},
"stringstream": {
"version": "0.0.5",
"bundled": true,
"dev": true,
"optional": true
},
"strip-ansi": {
"version": "3.0.1",
"bundled": true,
"dev": true,
"requires": {
"ansi-regex": "2.1.1"
}
},
"strip-json-comments": {
"version": "2.0.1",
"bundled": true,
"dev": true,
"optional": true
},
"tar": {
"version": "2.2.1",
"bundled": true,
"dev": true,
"requires": {
"block-stream": "0.0.9",
"fstream": "1.0.11",
"inherits": "2.0.3"
}
},
"tar-pack": {
"version": "3.4.0",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"debug": "2.6.8",
"fstream": "1.0.11",
"fstream-ignore": "1.0.5",
"once": "1.4.0",
"readable-stream": "2.2.9",
"rimraf": "2.6.1",
"tar": "2.2.1",
"uid-number": "0.0.6"
}
},
"tough-cookie": {
"version": "2.3.2",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"punycode": "1.4.1"
}
},
"tunnel-agent": {
"version": "0.6.0",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"safe-buffer": "5.0.1"
}
},
"tweetnacl": {
"version": "0.14.5",
"bundled": true,
"dev": true,
"optional": true
},
"uid-number": {
"version": "0.0.6",
"bundled": true,
"dev": true,
"optional": true
},
"util-deprecate": {
"version": "1.0.2",
"bundled": true,
"dev": true
},
"uuid": {
"version": "3.0.1",
"bundled": true,
"dev": true,
"optional": true
},
"verror": {
"version": "1.3.6",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"extsprintf": "1.0.2"
}
},
"wide-align": {
"version": "1.1.2",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
"string-width": "1.0.2"
}
},
"wrappy": {
"version": "1.0.2",
"bundled": true,
"dev": true
}
}
},
"function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
"dev": true
},
"gauge": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/gauge/-/gauge-1.2.7.tgz",
"integrity": "sha1-6c7FSD09TuDvRLYKfZnkk14TbZM=",
"dev": true,
"requires": {
"ansi": "0.3.1",
"has-unicode": "2.0.1",
"lodash.pad": "4.5.1",
"lodash.padend": "4.6.1",
"lodash.padstart": "4.6.1"
}
},
"get-caller-file": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz",
"integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=",
"dev": true
},
"get-stream": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
"integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
"dev": true
},
"getpass": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
"integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
"dev": true,
"requires": {
"assert-plus": "1.0.0"
}
},
"glob": {
"version": "7.1.2",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
"integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
"dev": true,
"requires": {
"fs.realpath": "1.0.0",
"inflight": "1.0.6",
"inherits": "2.0.3",
"minimatch": "3.0.4",
"once": "1.4.0",
"path-is-absolute": "1.0.1"
}
},
"glob-base": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz",
"integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=",
"dev": true,
"requires": {
"glob-parent": "2.0.0",
"is-glob": "2.0.1"
}
},
"glob-parent": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz",
"integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=",
"dev": true,
"requires": {
"is-glob": "2.0.1"
}
},
"global": {
"version": "4.3.2",
"resolved": "https://registry.npmjs.org/global/-/global-4.3.2.tgz",
"integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=",
"dev": true,
"requires": {
"min-document": "2.19.0",
"process": "0.5.2"
}
},
"globals": {
"version": "9.18.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
"integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
"dev": true
},
"glogg": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz",
"integrity": "sha512-ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw==",
"dev": true,
"requires": {
"sparkles": "1.0.0"
}
},
"graceful-fs": {
"version": "4.1.11",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
"integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=",
"dev": true
},
"growly": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz",
"integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=",
"dev": true
},
"gulp-util": {
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz",
"integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=",
"dev": true,
"requires": {
"array-differ": "1.0.0",
"array-uniq": "1.0.3",
"beeper": "1.1.1",
"chalk": "1.1.3",
"dateformat": "2.2.0",
"fancy-log": "1.3.2",
"gulplog": "1.0.0",
"has-gulplog": "0.1.0",
"lodash._reescape": "3.0.0",
"lodash._reevaluate": "3.0.0",
"lodash._reinterpolate": "3.0.0",
"lodash.template": "3.6.2",
"minimist": "1.2.0",
"multipipe": "0.1.2",
"object-assign": "3.0.0",
"replace-ext": "0.0.1",
"through2": "2.0.3",
"vinyl": "0.5.3"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
"dev": true
},
"object-assign": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz",
"integrity": "sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I=",
"dev": true
}
}
},
"gulplog": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
"integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=",
"dev": true,
"requires": {
"glogg": "1.0.1"
}
},
"handlebars": {
"version": "4.0.11",
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz",
"integrity": "sha1-Ywo13+ApS8KB7a5v/F0yn8eYLcw=",
"dev": true,
"requires": {
"async": "1.5.2",
"optimist": "0.6.1",
"source-map": "0.4.4",
"uglify-js": "2.8.29"
},
"dependencies": {
"async": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=",
"dev": true
},
"source-map": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
"integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=",
"dev": true,
"requires": {
"amdefine": "1.0.1"
}
}
}
},
"har-schema": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
"integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=",
"dev": true
},
"har-validator": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz",
"integrity": "sha1-ukAsJmGU8VlW7xXg/PJCmT9qff0=",
"dev": true,
"requires": {
"ajv": "5.5.2",
"har-schema": "2.0.0"
}
},
"has": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/has/-/has-1.0.1.tgz",
"integrity": "sha1-hGFzP1OLCDfJNh45qauelwTcLyg=",
"dev": true,
"requires": {
"function-bind": "1.1.1"
}
},
"has-ansi": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
"integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
"dev": true,
"requires": {
"ansi-regex": "2.1.1"
}
},
"has-flag": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz",
"integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=",
"dev": true
},
"has-gulplog": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz",
"integrity": "sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4=",
"dev": true,
"requires": {
"sparkles": "1.0.0"
}
},
"has-unicode": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz",
"integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=",
"dev": true
},
"hawk": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz",
"integrity": "sha512-miowhl2+U7Qle4vdLqDdPt9m09K6yZhkLDTWGoUiUzrQCn+mHHSmfJgAyGaLRZbPmTqfFFjRV1QWCW0VWUJBbQ==",
"dev": true,
"requires": {
"boom": "4.3.1",
"cryptiles": "3.1.2",
"hoek": "4.2.0",
"sntp": "2.1.0"
}
},
"hoek": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz",
"integrity": "sha512-v0XCLxICi9nPfYrS9RL8HbYnXi9obYAeLbSP00BmnZwCK9+Ih9WOjoZ8YoHCoav2csqn4FOz4Orldsy2dmDwmQ==",
"dev": true
},
"home-or-tmp": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
"integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=",
"dev": true,
"requires": {
"os-homedir": "1.0.2",
"os-tmpdir": "1.0.2"
}
},
"hosted-git-info": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz",
"integrity": "sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==",
"dev": true
},
"html-encoding-sniffer": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz",
"integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==",
"dev": true,
"requires": {
"whatwg-encoding": "1.0.3"
}
},
"http-errors": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz",
"integrity": "sha1-GX4izevUGYWF6GlO9nhhl7ke2UI=",
"dev": true,
"requires": {
"inherits": "2.0.3",
"statuses": "1.4.0"
}
},
"http-signature": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
"integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
"dev": true,
"requires": {
"assert-plus": "1.0.0",
"jsprim": "1.4.1",
"sshpk": "1.13.1"
}
},
"iconv-lite": {
"version": "0.4.19",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz",
"integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==",
"dev": true
},
"image-size": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/image-size/-/image-size-0.6.2.tgz",
"integrity": "sha512-pH3vDzpczdsKHdZ9xxR3O46unSjisgVx0IImay7Zz2EdhRVbCkj+nthx9OuuWEhakx9FAO+fNVGrF0rZ2oMOvw==",
"dev": true
},
"import-local": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz",
"integrity": "sha512-vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ==",
"dev": true,
"requires": {
"pkg-dir": "2.0.0",
"resolve-cwd": "2.0.0"
}
},
"imurmurhash": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
"integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=",
"dev": true
},
"inflight": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
"dev": true,
"requires": {
"once": "1.4.0",
"wrappy": "1.0.2"
}
},
"inherits": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
"dev": true
},
"inquirer": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz",
"integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==",
"dev": true,
"requires": {
"ansi-escapes": "3.0.0",
"chalk": "2.3.0",
"cli-cursor": "2.1.0",
"cli-width": "2.2.0",
"external-editor": "2.1.0",
"figures": "2.0.0",
"lodash": "4.17.5",
"mute-stream": "0.0.7",
"run-async": "2.3.0",
"rx-lite": "4.0.8",
"rx-lite-aggregates": "4.0.8",
"string-width": "2.1.1",
"strip-ansi": "4.0.0",
"through": "2.3.8"
},
"dependencies": {
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
"ansi-regex": "3.0.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"invariant": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz",
"integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=",
"dev": true,
"requires": {
"loose-envify": "1.3.1"
}
},
"invert-kv": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz",
"integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=",
"dev": true
},
"is-arrayish": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
"integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=",
"dev": true
},
"is-buffer": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
"dev": true
},
"is-builtin-module": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz",
"integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=",
"dev": true,
"requires": {
"builtin-modules": "1.1.1"
}
},
"is-callable": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz",
"integrity": "sha1-hut1OSgF3cM69xySoO7fdO52BLI=",
"dev": true
},
"is-ci": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz",
"integrity": "sha512-c7TnwxLePuqIlxHgr7xtxzycJPegNHFuIrBkwbf8hc58//+Op1CqFkyS+xnIMkwn9UsJIwc174BIjkyBmSpjKg==",
"dev": true,
"requires": {
"ci-info": "1.1.2"
}
},
"is-date-object": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz",
"integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=",
"dev": true
},
"is-dotfile": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz",
"integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=",
"dev": true
},
"is-equal-shallow": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz",
"integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=",
"dev": true,
"requires": {
"is-primitive": "2.0.0"
}
},
"is-extendable": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
"integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=",
"dev": true
},
"is-extglob": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
"integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=",
"dev": true
},
"is-finite": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz",
"integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
"dev": true,
"requires": {
"number-is-nan": "1.0.1"
}
},
"is-fullwidth-code-point": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
"integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
"dev": true
},
"is-generator-fn": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-1.0.0.tgz",
"integrity": "sha1-lp1J4bszKfa7fwkIm+JleLLd1Go=",
"dev": true
},
"is-glob": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
"integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
"dev": true,
"requires": {
"is-extglob": "1.0.0"
}
},
"is-number": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz",
"integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=",
"dev": true,
"requires": {
"kind-of": "3.2.2"
}
},
"is-posix-bracket": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz",
"integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=",
"dev": true
},
"is-primitive": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz",
"integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=",
"dev": true
},
"is-promise": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
"integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=",
"dev": true
},
"is-regex": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz",
"integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=",
"dev": true,
"requires": {
"has": "1.0.1"
}
},
"is-stream": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz",
"integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
"dev": true
},
"is-symbol": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz",
"integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=",
"dev": true
},
"is-typedarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
"integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=",
"dev": true
},
"is-utf8": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz",
"integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=",
"dev": true
},
"isarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
"dev": true
},
"isexe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
"integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
"dev": true
},
"isobject": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
"dev": true,
"requires": {
"isarray": "1.0.0"
}
},
"isomorphic-fetch": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
"integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=",
"dev": true,
"requires": {
"node-fetch": "1.7.3",
"whatwg-fetch": "2.0.3"
}
},
"isstream": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=",
"dev": true
},
"istanbul-api": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.2.1.tgz",
"integrity": "sha512-oFCwXvd65amgaPCzqrR+a2XjanS1MvpXN6l/MlMUTv6uiA1NOgGX+I0uyq8Lg3GDxsxPsaP1049krz3hIJ5+KA==",
"dev": true,
"requires": {
"async": "2.6.0",
"fileset": "2.0.3",
"istanbul-lib-coverage": "1.1.1",
"istanbul-lib-hook": "1.1.0",
"istanbul-lib-instrument": "1.9.1",
"istanbul-lib-report": "1.1.2",
"istanbul-lib-source-maps": "1.2.2",
"istanbul-reports": "1.1.3",
"js-yaml": "3.10.0",
"mkdirp": "0.5.1",
"once": "1.4.0"
}
},
"istanbul-lib-coverage": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.1.1.tgz",
"integrity": "sha512-0+1vDkmzxqJIn5rcoEqapSB4DmPxE31EtI2dF2aCkV5esN9EWHxZ0dwgDClivMXJqE7zaYQxq30hj5L0nlTN5Q==",
"dev": true
},
"istanbul-lib-hook": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.1.0.tgz",
"integrity": "sha512-U3qEgwVDUerZ0bt8cfl3dSP3S6opBoOtk3ROO5f2EfBr/SRiD9FQqzwaZBqFORu8W7O0EXpai+k7kxHK13beRg==",
"dev": true,
"requires": {
"append-transform": "0.4.0"
}
},
"istanbul-lib-instrument": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.9.1.tgz",
"integrity": "sha512-RQmXeQ7sphar7k7O1wTNzVczF9igKpaeGQAG9qR2L+BS4DCJNTI9nytRmIVYevwO0bbq+2CXvJmYDuz0gMrywA==",
"dev": true,
"requires": {
"babel-generator": "6.26.1",
"babel-template": "6.26.0",
"babel-traverse": "6.26.0",
"babel-types": "6.26.0",
"babylon": "6.18.0",
"istanbul-lib-coverage": "1.1.1",
"semver": "5.5.0"
}
},
"istanbul-lib-report": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.2.tgz",
"integrity": "sha512-UTv4VGx+HZivJQwAo1wnRwe1KTvFpfi/NYwN7DcsrdzMXwpRT/Yb6r4SBPoHWj4VuQPakR32g4PUUeyKkdDkBA==",
"dev": true,
"requires": {
"istanbul-lib-coverage": "1.1.1",
"mkdirp": "0.5.1",
"path-parse": "1.0.5",
"supports-color": "3.2.3"
},
"dependencies": {
"has-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz",
"integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=",
"dev": true
},
"supports-color": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz",
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
"dev": true,
"requires": {
"has-flag": "1.0.0"
}
}
}
},
"istanbul-lib-source-maps": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.2.tgz",
"integrity": "sha512-8BfdqSfEdtip7/wo1RnrvLpHVEd8zMZEDmOFEnpC6dg0vXflHt9nvoAyQUzig2uMSXfF2OBEYBV3CVjIL9JvaQ==",
"dev": true,
"requires": {
"debug": "3.1.0",
"istanbul-lib-coverage": "1.1.1",
"mkdirp": "0.5.1",
"rimraf": "2.6.2",
"source-map": "0.5.7"
},
"dependencies": {
"debug": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
"dev": true,
"requires": {
"ms": "2.0.0"
}
}
}
},
"istanbul-reports": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.1.3.tgz",
"integrity": "sha512-ZEelkHh8hrZNI5xDaKwPMFwDsUf5wIEI2bXAFGp1e6deR2mnEKBPhLJEgr4ZBt8Gi6Mj38E/C8kcy9XLggVO2Q==",
"dev": true,
"requires": {
"handlebars": "4.0.11"
}
},
"jest": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest/-/jest-22.1.4.tgz",
"integrity": "sha512-cIPkn+OFGabazPesbhnYkadPftoO2Fo3w84QjeIP+A8eZ5qj7Zs4PuTemAW8StNMxySJr0KPk/LhYG2GUHLexQ==",
"dev": true,
"requires": {
"jest-cli": "22.1.4"
},
"dependencies": {
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"jest-cli": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-22.1.4.tgz",
"integrity": "sha512-p7yOu0Q5uuXb3Q93qEg3LE6eNGgAGueakifxXNEqQx4b0lOl2YlC9t6BLQWNOJ+z42VWK/BIdFjf6lxKcTkjFA==",
"dev": true,
"requires": {
"ansi-escapes": "3.0.0",
"chalk": "2.3.0",
"exit": "0.1.2",
"glob": "7.1.2",
"graceful-fs": "4.1.11",
"import-local": "1.0.0",
"is-ci": "1.1.0",
"istanbul-api": "1.2.1",
"istanbul-lib-coverage": "1.1.1",
"istanbul-lib-instrument": "1.9.1",
"istanbul-lib-source-maps": "1.2.2",
"jest-changed-files": "22.1.4",
"jest-config": "22.1.4",
"jest-environment-jsdom": "22.1.4",
"jest-get-type": "22.1.0",
"jest-haste-map": "22.1.0",
"jest-message-util": "22.1.0",
"jest-regex-util": "22.1.0",
"jest-resolve-dependencies": "22.1.0",
"jest-runner": "22.1.4",
"jest-runtime": "22.1.4",
"jest-snapshot": "22.1.2",
"jest-util": "22.1.4",
"jest-worker": "22.1.0",
"micromatch": "2.3.11",
"node-notifier": "5.2.1",
"realpath-native": "1.0.0",
"rimraf": "2.6.2",
"slash": "1.0.0",
"string-length": "2.0.0",
"strip-ansi": "4.0.0",
"which": "1.3.0",
"yargs": "10.1.2"
}
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
"ansi-regex": "3.0.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-changed-files": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-22.1.4.tgz",
"integrity": "sha512-EpqJhwt+N/wEHRT+5KrjagVrunduOfMgAb7fjjHkXHFCPRZoVZwl896S7krx7txf5hrMNUkpECnOnO2wBgzJCw==",
"dev": true,
"requires": {
"throat": "4.1.0"
}
},
"jest-config": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-config/-/jest-config-22.1.4.tgz",
"integrity": "sha512-ZImFp7STrUDOgQLW5I5UloCiCRMh6HmMIYIoWqaQkxnR5ws7MuZFG/Ns9sZFyfrnyWCvcW91e+XcEfNeoa4Jew==",
"dev": true,
"requires": {
"chalk": "2.3.0",
"glob": "7.1.2",
"jest-environment-jsdom": "22.1.4",
"jest-environment-node": "22.1.4",
"jest-get-type": "22.1.0",
"jest-jasmine2": "22.1.4",
"jest-regex-util": "22.1.0",
"jest-resolve": "22.1.4",
"jest-util": "22.1.4",
"jest-validate": "22.1.2",
"pretty-format": "22.1.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-diff": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-22.1.0.tgz",
"integrity": "sha512-lowdbU/dzXh+2/MR5QcvU5KPNkO4JdAEYw0PkQCbIQIuy5+g3QZBuVhWh8179Fmpg4CQrz1WgoK/yQHDCHbqqw==",
"dev": true,
"requires": {
"chalk": "2.3.0",
"diff": "3.4.0",
"jest-get-type": "22.1.0",
"pretty-format": "22.1.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-docblock": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-22.1.0.tgz",
"integrity": "sha512-/+OGgBVRJb5wCbXrB1LQvibQBz2SdrvDdKRNzY1gL+OISQJZCR9MOewbygdT5rVzbbkfhC4AR2x+qWmNUdJfjw==",
"dev": true,
"requires": {
"detect-newline": "2.1.0"
}
},
"jest-environment-jsdom": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-22.1.4.tgz",
"integrity": "sha512-YGqFJzei/kq5BgQ8su7igLoCl34ytUffr5ZoqwLrDzCmXUKyIiuwBFbWe3xFMG/crlDb1emhBXdzWM1yDEDw5Q==",
"dev": true,
"requires": {
"jest-mock": "22.1.0",
"jest-util": "22.1.4",
"jsdom": "11.6.2"
}
},
"jest-environment-node": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-22.1.4.tgz",
"integrity": "sha512-rQmtzgZVdyCzeXsE8i7Alw2483KSd2PYjssZWZYeNzonN/lBeUjjaOCgLWp6FspBzSTnYF7x6cN4umGZxYAhow==",
"dev": true,
"requires": {
"jest-mock": "22.1.0",
"jest-util": "22.1.4"
}
},
"jest-get-type": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-22.1.0.tgz",
"integrity": "sha512-nD97IVOlNP6fjIN5i7j5XRH+hFsHL7VlauBbzRvueaaUe70uohrkz7pL/N8lx/IAwZRTJ//wOdVgh85OgM7g3w==",
"dev": true
},
"jest-haste-map": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-22.1.0.tgz",
"integrity": "sha512-vETdC6GboGlZX6+9SMZkXtYRQSKBbQ47sFF7NGglbMN4eyIZBODply8rlcO01KwBiAeiNCKdjUyfonZzJ93JEg==",
"dev": true,
"requires": {
"fb-watchman": "2.0.0",
"graceful-fs": "4.1.11",
"jest-docblock": "22.1.0",
"jest-worker": "22.1.0",
"micromatch": "2.3.11",
"sane": "2.3.0"
}
},
"jest-jasmine2": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-22.1.4.tgz",
"integrity": "sha512-+KoRiG4PUwURB7UXei2jzxvbCebhXgTYS+xWl3FsSYUn3flcxdcOgAsFolx31Dkk/B1bVf1HIKt/B6Ubucp9aQ==",
"dev": true,
"requires": {
"callsites": "2.0.0",
"chalk": "2.3.0",
"co": "4.6.0",
"expect": "22.1.0",
"graceful-fs": "4.1.11",
"is-generator-fn": "1.0.0",
"jest-diff": "22.1.0",
"jest-matcher-utils": "22.1.0",
"jest-message-util": "22.1.0",
"jest-snapshot": "22.1.2",
"source-map-support": "0.5.3"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-leak-detector": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-22.1.0.tgz",
"integrity": "sha512-8QsCWkncWAqdvrXN4yXQp9vgWF6CT3RkRey+d06SIHX913uXzAJhJdZyo6eE+uHVYMxUbxqW93npbUFhAR0YxA==",
"dev": true,
"requires": {
"pretty-format": "22.1.0"
}
},
"jest-matcher-utils": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-22.1.0.tgz",
"integrity": "sha512-Zn1OD9wVjILOdvRxgAnqiCN36OX6KJx+P2FHN+3lzQ0omG2N2OAguxE1QXuJJneG2yndlkXjekXFP254c0cSpw==",
"dev": true,
"requires": {
"chalk": "2.3.0",
"jest-get-type": "22.1.0",
"pretty-format": "22.1.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-message-util": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-22.1.0.tgz",
"integrity": "sha512-kftcoawOeOVUGuGWmMupJt7FGLK1pqOrh02FlJwtImmPGZ2yTWCTx2D+N/g95qD2jCbQ/ntH1goBixhAIIxL+g==",
"dev": true,
"requires": {
"@babel/code-frame": "7.0.0-beta.39",
"chalk": "2.3.0",
"micromatch": "2.3.11",
"slash": "1.0.0",
"stack-utils": "1.0.1"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-mock": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-22.1.0.tgz",
"integrity": "sha512-gL3/C8ds6e1PWiOTsV7sIejPP/ECYQgDbwMzbNCc+ZFPuPH3EpwsVLGmQqPK6okgnDagimbbQnss3kPJ8HCMtA==",
"dev": true
},
"jest-react-native": {
"version": "18.0.0",
"resolved": "https://registry.npmjs.org/jest-react-native/-/jest-react-native-18.0.0.tgz",
"integrity": "sha1-d92QnwaTJFmfInxYxhwuYhaHJro=",
"dev": true
},
"jest-regex-util": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-22.1.0.tgz",
"integrity": "sha512-on0LqVS6Xeh69sw3d1RukVnur+lVOl3zkmb0Q54FHj9wHoq6dbtWqb3TSlnVUyx36hqjJhjgs/QLqs07Bzu72Q==",
"dev": true
},
"jest-resolve": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-22.1.4.tgz",
"integrity": "sha512-/HuCMeiTD6YJ+NF15bU1mal1r7Gov0GJozA7232XiYve7cOOnU2JwXBx3EQmcIuG38uNrRPjtgpiXkBqfnk4Og==",
"dev": true,
"requires": {
"browser-resolve": "1.11.2",
"chalk": "2.3.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-resolve-dependencies": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-22.1.0.tgz",
"integrity": "sha512-76Ll61bD/Sus8wK8d+lw891EtiBJGJkWG8OuVDTEX0z3z2+jPujvQqSB2eQ+kCHyCsRwJ2PSjhn3UHqae/oEtA==",
"dev": true,
"requires": {
"jest-regex-util": "22.1.0"
}
},
"jest-runner": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-22.1.4.tgz",
"integrity": "sha512-HAyZ0Q2Fyk7mlbtbSKP75hNs9IP0Md7kzPUN1uNKbvQfZkXA/e7P0ttzAIGQtEbRx656tYwkfWNW+hXvs1i4/g==",
"dev": true,
"requires": {
"exit": "0.1.2",
"jest-config": "22.1.4",
"jest-docblock": "22.1.0",
"jest-haste-map": "22.1.0",
"jest-jasmine2": "22.1.4",
"jest-leak-detector": "22.1.0",
"jest-message-util": "22.1.0",
"jest-runtime": "22.1.4",
"jest-util": "22.1.4",
"jest-worker": "22.1.0",
"throat": "4.1.0"
}
},
"jest-runtime": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-22.1.4.tgz",
"integrity": "sha512-r/UjVuQppDRwbUprDlLYdd8MTYY+H8H6BCqRujGjo5/QyIt3b0hppNoOQHF+0bHNtuz/sR9chJ9HJ3A1fiv9Pw==",
"dev": true,
"requires": {
"babel-core": "6.26.0",
"babel-jest": "22.1.0",
"babel-plugin-istanbul": "4.1.5",
"chalk": "2.3.0",
"convert-source-map": "1.5.1",
"exit": "0.1.2",
"graceful-fs": "4.1.11",
"jest-config": "22.1.4",
"jest-haste-map": "22.1.0",
"jest-regex-util": "22.1.0",
"jest-resolve": "22.1.4",
"jest-util": "22.1.4",
"json-stable-stringify": "1.0.1",
"micromatch": "2.3.11",
"realpath-native": "1.0.0",
"slash": "1.0.0",
"strip-bom": "3.0.0",
"write-file-atomic": "2.3.0",
"yargs": "10.1.2"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"strip-bom": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
"integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
"dev": true
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-snapshot": {
"version": "22.1.2",
"resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-22.1.2.tgz",
"integrity": "sha512-45co/M0gTe6Y6yHaJLydEZKHOFpFHESLah40jW35DWd3pd7q188bsi0oUY4Kls7PDXUamvTWuTKTZXCtzwSvCw==",
"dev": true,
"requires": {
"chalk": "2.3.0",
"jest-diff": "22.1.0",
"jest-matcher-utils": "22.1.0",
"mkdirp": "0.5.1",
"natural-compare": "1.4.0",
"pretty-format": "22.1.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-util": {
"version": "22.1.4",
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-22.1.4.tgz",
"integrity": "sha512-zM29idoVBPvmpsGubS7YmywVyPe4/m1wE2YhmKp0vVmrQmuby7ObuMqabp82EYlM0Rdp4GNEtaDamW9jg8lgTg==",
"dev": true,
"requires": {
"callsites": "2.0.0",
"chalk": "2.3.0",
"graceful-fs": "4.1.11",
"is-ci": "1.1.0",
"jest-message-util": "22.1.0",
"jest-validate": "22.1.2",
"mkdirp": "0.5.1"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-validate": {
"version": "22.1.2",
"resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-22.1.2.tgz",
"integrity": "sha512-IjvMsV7GW5ghg5PTQvU23zJqTBmnq10eY+4n47awUeXYEGH27N+JajFPOg6tsN+OYvEPsohPquKoqQ5XBVs/ow==",
"dev": true,
"requires": {
"chalk": "2.3.0",
"jest-get-type": "22.1.0",
"leven": "2.1.0",
"pretty-format": "22.1.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
},
"chalk": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
"ansi-styles": "3.2.0",
"escape-string-regexp": "1.0.5",
"supports-color": "4.5.0"
}
},
"supports-color": {
"version": "4.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "2.0.0"
}
}
}
},
"jest-worker": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-22.1.0.tgz",
"integrity": "sha512-ezLueYAQowk5N6g2J7bNZfq4NWZvMNB5Qd24EmOZLcM5SXTdiFvxykZIoNiMj9C98cCbPaojX8tfR7b1LJwNig==",
"dev": true,
"requires": {
"merge-stream": "1.0.1"
}
},
"js-tokens": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
"integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=",
"dev": true
},
"js-yaml": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz",
"integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
"dev": true,
"requires": {
"argparse": "1.0.9",
"esprima": "4.0.0"
}
},
"jsbn": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
"integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
"dev": true,
"optional": true
},
"jsdom": {
"version": "11.6.2",
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.6.2.tgz",
"integrity": "sha512-pAeZhpbSlUp5yQcS6cBQJwkbzmv4tWFaYxHbFVSxzXefqjvtRA851Z5N2P+TguVG9YeUDcgb8pdeVQRJh0XR3Q==",
"dev": true,
"requires": {
"abab": "1.0.4",
"acorn": "5.4.1",
"acorn-globals": "4.1.0",
"array-equal": "1.0.0",
"browser-process-hrtime": "0.1.2",
"content-type-parser": "1.0.2",
"cssom": "0.3.2",
"cssstyle": "0.2.37",
"domexception": "1.0.1",
"escodegen": "1.9.0",
"html-encoding-sniffer": "1.0.2",
"left-pad": "1.2.0",
"nwmatcher": "1.4.3",
"parse5": "4.0.0",
"pn": "1.1.0",
"request": "2.83.0",
"request-promise-native": "1.0.5",
"sax": "1.2.4",
"symbol-tree": "3.2.2",
"tough-cookie": "2.3.3",
"w3c-hr-time": "1.0.1",
"webidl-conversions": "4.0.2",
"whatwg-encoding": "1.0.3",
"whatwg-url": "6.4.0",
"ws": "4.0.0",
"xml-name-validator": "3.0.0"
}
},
"jsesc": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz",
"integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=",
"dev": true
},
"json-schema": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
"integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=",
"dev": true
},
"json-schema-traverse": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz",
"integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=",
"dev": true
},
"json-stable-stringify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
"integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
"dev": true,
"requires": {
"jsonify": "0.0.0"
}
},
"json-stringify-safe": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=",
"dev": true
},
"json5": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz",
"integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=",
"dev": true
},
"jsonfile": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
"integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=",
"dev": true,
"requires": {
"graceful-fs": "4.1.11"
}
},
"jsonify": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
"integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=",
"dev": true
},
"jsprim": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
"integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
"dev": true,
"requires": {
"assert-plus": "1.0.0",
"extsprintf": "1.3.0",
"json-schema": "0.2.3",
"verror": "1.10.0"
}
},
"kind-of": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
"dev": true,
"requires": {
"is-buffer": "1.1.6"
}
},
"klaw": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
"integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
"dev": true,
"requires": {
"graceful-fs": "4.1.11"
}
},
"lazy-cache": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
"integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=",
"dev": true,
"optional": true
},
"lcid": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
"integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
"dev": true,
"requires": {
"invert-kv": "1.0.0"
}
},
"left-pad": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.2.0.tgz",
"integrity": "sha1-0wpzxrggHY99jnlWupYWCHpo4O4=",
"dev": true
},
"leven": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz",
"integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=",
"dev": true
},
"levn": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
"integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
"dev": true,
"requires": {
"prelude-ls": "1.1.2",
"type-check": "0.3.2"
}
},
"load-json-file": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
"integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
"dev": true,
"requires": {
"graceful-fs": "4.1.11",
"parse-json": "2.2.0",
"pify": "2.3.0",
"pinkie-promise": "2.0.1",
"strip-bom": "2.0.0"
}
},
"locate-path": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz",
"integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
"dev": true,
"requires": {
"p-locate": "2.0.0",
"path-exists": "3.0.0"
}
},
"lodash": {
"version": "4.17.5",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz",
"integrity": "sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw=="
},
"lodash._basecopy": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz",
"integrity": "sha1-jaDmqHbPNEwK2KVIghEd08XHyjY=",
"dev": true
},
"lodash._basetostring": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz",
"integrity": "sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U=",
"dev": true
},
"lodash._basevalues": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz",
"integrity": "sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc=",
"dev": true
},
"lodash._getnative": {
"version": "3.9.1",
"resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz",
"integrity": "sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=",
"dev": true
},
"lodash._isiterateecall": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz",
"integrity": "sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw=",
"dev": true
},
"lodash._reescape": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz",
"integrity": "sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo=",
"dev": true
},
"lodash._reevaluate": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz",
"integrity": "sha1-WLx0xAZklTrgsSTYBpltrKQx4u0=",
"dev": true
},
"lodash._reinterpolate": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
"integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
"dev": true
},
"lodash._root": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz",
"integrity": "sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI=",
"dev": true
},
"lodash.escape": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz",
"integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=",
"dev": true,
"requires": {
"lodash._root": "3.0.1"
}
},
"lodash.isarguments": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
"integrity": "sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo=",
"dev": true
},
"lodash.isarray": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz",
"integrity": "sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=",
"dev": true
},
"lodash.keys": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz",
"integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=",
"dev": true,
"requires": {
"lodash._getnative": "3.9.1",
"lodash.isarguments": "3.1.0",
"lodash.isarray": "3.0.4"
}
},
"lodash.pad": {
"version": "4.5.1",
"resolved": "https://registry.npmjs.org/lodash.pad/-/lodash.pad-4.5.1.tgz",
"integrity": "sha1-QzCUmoM6fI2iLMIPaibE1Z3runA=",
"dev": true
},
"lodash.padend": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.6.1.tgz",
"integrity": "sha1-U8y6BH0G4VjTEfRdpiX05J5vFm4=",
"dev": true
},
"lodash.padstart": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz",
"integrity": "sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=",
"dev": true
},
"lodash.restparam": {
"version": "3.6.1",
"resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz",
"integrity": "sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=",
"dev": true
},
"lodash.sortby": {
"version": "4.7.0",
"resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
"integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=",
"dev": true
},
"lodash.template": {
"version": "3.6.2",
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz",
"integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=",
"dev": true,
"requires": {
"lodash._basecopy": "3.0.1",
"lodash._basetostring": "3.0.1",
"lodash._basevalues": "3.0.0",
"lodash._isiterateecall": "3.0.9",
"lodash._reinterpolate": "3.0.0",
"lodash.escape": "3.2.0",
"lodash.keys": "3.1.2",
"lodash.restparam": "3.6.1",
"lodash.templatesettings": "3.1.1"
}
},
"lodash.templatesettings": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz",
"integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=",
"dev": true,
"requires": {
"lodash._reinterpolate": "3.0.0",
"lodash.escape": "3.2.0"
}
},
"longest": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
"integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=",
"dev": true
},
"loose-envify": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz",
"integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=",
"dev": true,
"requires": {
"js-tokens": "3.0.2"
}
},
"lru-cache": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz",
"integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==",
"dev": true,
"requires": {
"pseudomap": "1.0.2",
"yallist": "2.1.2"
}
},
"macos-release": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/macos-release/-/macos-release-1.1.0.tgz",
"integrity": "sha512-mmLbumEYMi5nXReB9js3WGsB8UE6cDBWyIO62Z4DNx6GbRhDxHNjA1MlzSpJ2S2KM1wyiPRA0d19uHWYYvMHjA==",
"dev": true
},
"makeerror": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz",
"integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=",
"dev": true,
"requires": {
"tmpl": "1.0.4"
}
},
"media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
"integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
"dev": true
},
"mem": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz",
"integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=",
"dev": true,
"requires": {
"mimic-fn": "1.2.0"
}
},
"merge": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz",
"integrity": "sha1-dTHjnUlJwoGma4xabgJl6LBYlNo=",
"dev": true
},
"merge-stream": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz",
"integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=",
"dev": true,
"requires": {
"readable-stream": "2.3.3"
}
},
"method-override": {
"version": "2.3.10",
"resolved": "https://registry.npmjs.org/method-override/-/method-override-2.3.10.tgz",
"integrity": "sha1-49r41d7hDdLc59SuiNYrvud0drQ=",
"dev": true,
"requires": {
"debug": "2.6.9",
"methods": "1.1.2",
"parseurl": "1.3.2",
"vary": "1.1.2"
},
"dependencies": {
"vary": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
"integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
"dev": true
}
}
},
"methods": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
"dev": true
},
"metro-bundler": {
"version": "0.20.3",
"resolved": "https://registry.npmjs.org/metro-bundler/-/metro-bundler-0.20.3.tgz",
"integrity": "sha512-rKhIXSUEYbBUB9Ues30GYlcotM/4hPTmriBJGdNW5D+zdlxQUgJuPEo2Woo7khNM7xRG5tN7IRnMkKlzx43/Nw==",
"dev": true,
"requires": {
"absolute-path": "0.0.0",
"async": "2.6.0",
"babel-core": "6.26.0",
"babel-generator": "6.26.1",
"babel-plugin-external-helpers": "6.22.0",
"babel-preset-es2015-node": "6.1.1",
"babel-preset-fbjs": "2.1.4",
"babel-preset-react-native": "4.0.0",
"babel-register": "6.26.0",
"babylon": "6.18.0",
"chalk": "1.1.3",
"concat-stream": "1.6.0",
"core-js": "2.5.3",
"debug": "2.6.9",
"denodeify": "1.2.1",
"fbjs": "0.8.16",
"graceful-fs": "4.1.11",
"image-size": "0.6.2",
"jest-docblock": "21.2.0",
"jest-haste-map": "21.2.0",
"json-stable-stringify": "1.0.1",
"json5": "0.4.0",
"left-pad": "1.2.0",
"lodash": "4.17.5",
"merge-stream": "1.0.1",
"mime-types": "2.1.11",
"mkdirp": "0.5.1",
"request": "2.83.0",
"rimraf": "2.6.2",
"source-map": "0.5.7",
"temp": "0.8.3",
"throat": "4.1.0",
"uglify-es": "3.3.9",
"wordwrap": "1.0.0",
"write-file-atomic": "1.3.4",
"xpipe": "1.0.5"
},
"dependencies": {
"babel-plugin-react-transform": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/babel-plugin-react-transform/-/babel-plugin-react-transform-3.0.0.tgz",
"integrity": "sha512-4vJGddwPiHAOgshzZdGwYy4zRjjIr5SMY7gkOaCyIASjgpcsyLTlZNuB5rHOFoaTvGlhfo8/g4pobXPyHqm/3w==",
"dev": true,
"requires": {
"lodash": "4.17.5"
}
},
"babel-preset-react-native": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/babel-preset-react-native/-/babel-preset-react-native-4.0.0.tgz",
"integrity": "sha512-Wfbo6x244nUbBxjr7hQaNFdjj7FDYU+TVT7cFVPEdVPI68vhN52iLvamm+ErhNdHq6M4j1cMT6AJBYx7Wzdr0g==",
"dev": true,
"requires": {
"babel-plugin-check-es2015-constants": "6.22.0",
"babel-plugin-react-transform": "3.0.0",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-syntax-class-properties": "6.13.0",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-syntax-flow": "6.18.0",
"babel-plugin-syntax-jsx": "6.18.0",
"babel-plugin-syntax-trailing-function-commas": "6.22.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.26.0",
"babel-plugin-transform-es2015-classes": "6.24.1",
"babel-plugin-transform-es2015-computed-properties": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-for-of": "6.23.0",
"babel-plugin-transform-es2015-function-name": "6.24.1",
"babel-plugin-transform-es2015-literals": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-template-literals": "6.22.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-assign": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-display-name": "6.25.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-plugin-transform-react-jsx-source": "6.22.0",
"babel-plugin-transform-regenerator": "6.26.0",
"babel-template": "6.26.0",
"react-transform-hmr": "1.0.4"
}
},
"jest-docblock": {
"version": "21.2.0",
"resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-21.2.0.tgz",
"integrity": "sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==",
"dev": true
},
"jest-haste-map": {
"version": "21.2.0",
"resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-21.2.0.tgz",
"integrity": "sha512-5LhsY/loPH7wwOFRMs+PT4aIAORJ2qwgbpMFlbWbxfN0bk3ZCwxJ530vrbSiTstMkYLao6JwBkLhCJ5XbY7ZHw==",
"dev": true,
"requires": {
"fb-watchman": "2.0.0",
"graceful-fs": "4.1.11",
"jest-docblock": "21.2.0",
"micromatch": "2.3.11",
"sane": "2.3.0",
"worker-farm": "1.5.2"
}
},
"json5": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/json5/-/json5-0.4.0.tgz",
"integrity": "sha1-BUNS5MTIDIbAkjh31EneF2pzLI0=",
"dev": true
},
"mime-db": {
"version": "1.23.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.23.0.tgz",
"integrity": "sha1-oxtAcK2uon1zLqMzdApk0OyaZlk=",
"dev": true
},
"mime-types": {
"version": "2.1.11",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.11.tgz",
"integrity": "sha1-wlnEcb2oCKhdbNGTtDCl+uRHOzw=",
"dev": true,
"requires": {
"mime-db": "1.23.0"
}
},
"uglify-es": {
"version": "3.3.9",
"resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz",
"integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==",
"dev": true,
"requires": {
"commander": "2.13.0",
"source-map": "0.6.1"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"wordwrap": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
"integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
"dev": true
},
"write-file-atomic": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz",
"integrity": "sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=",
"dev": true,
"requires": {
"graceful-fs": "4.1.11",
"imurmurhash": "0.1.4",
"slide": "1.1.6"
}
}
}
},
"micromatch": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
"integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=",
"dev": true,
"requires": {
"arr-diff": "2.0.0",
"array-unique": "0.2.1",
"braces": "1.8.5",
"expand-brackets": "0.1.5",
"extglob": "0.3.2",
"filename-regex": "2.0.1",
"is-extglob": "1.0.0",
"is-glob": "2.0.1",
"kind-of": "3.2.2",
"normalize-path": "2.1.1",
"object.omit": "2.0.1",
"parse-glob": "3.0.4",
"regex-cache": "0.4.4"
}
},
"mime": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
"dev": true
},
"mime-db": {
"version": "1.30.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz",
"integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE=",
"dev": true
},
"mime-types": {
"version": "2.1.17",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz",
"integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=",
"dev": true,
"requires": {
"mime-db": "1.30.0"
}
},
"mimic-fn": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
"integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==",
"dev": true
},
"min-document": {
"version": "2.19.0",
"resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz",
"integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=",
"dev": true,
"requires": {
"dom-walk": "0.1.1"
}
},
"minimatch": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
"dev": true,
"requires": {
"brace-expansion": "1.1.8"
}
},
"minimist": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
"dev": true
},
"mkdirp": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
"dev": true,
"requires": {
"minimist": "0.0.8"
}
},
"morgan": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz",
"integrity": "sha1-X9gYOYxoGcuiinzWZk8pL+HAu/I=",
"dev": true,
"requires": {
"basic-auth": "1.0.4",
"debug": "2.2.0",
"depd": "1.0.1",
"on-finished": "2.3.0",
"on-headers": "1.0.1"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
}
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
"dev": true
},
"multiparty": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/multiparty/-/multiparty-3.3.2.tgz",
"integrity": "sha1-Nd5oBNwZZD5SSfPT473GyM4wHT8=",
"dev": true,
"requires": {
"readable-stream": "1.1.14",
"stream-counter": "0.2.0"
},
"dependencies": {
"isarray": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
"dev": true
},
"readable-stream": {
"version": "1.1.14",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
"dev": true,
"requires": {
"core-util-is": "1.0.2",
"inherits": "2.0.3",
"isarray": "0.0.1",
"string_decoder": "0.10.31"
}
},
"string_decoder": {
"version": "0.10.31",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
"integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
"dev": true
}
}
},
"multipipe": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz",
"integrity": "sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s=",
"dev": true,
"requires": {
"duplexer2": "0.0.2"
}
},
"mute-stream": {
"version": "0.0.7",
"resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz",
"integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=",
"dev": true
},
"nan": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz",
"integrity": "sha1-7XFfP+neArV6XmJS2QqWZ14fCFo=",
"dev": true,
"optional": true
},
"natural-compare": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
"integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=",
"dev": true
},
"negotiator": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.5.3.tgz",
"integrity": "sha1-Jp1cR2gQ7JLtvntsLygxY4T5p+g=",
"dev": true
},
"node-fetch": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
"integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
"dev": true,
"requires": {
"encoding": "0.1.12",
"is-stream": "1.1.0"
}
},
"node-int64": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
"integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=",
"dev": true
},
"node-notifier": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz",
"integrity": "sha512-MIBs+AAd6dJ2SklbbE8RUDRlIVhU8MaNLh1A9SUZDUHPiZkWLFde6UNwG41yQHZEToHgJMXqyVZ9UcS/ReOVTg==",
"dev": true,
"requires": {
"growly": "1.3.0",
"semver": "5.5.0",
"shellwords": "0.1.1",
"which": "1.3.0"
}
},
"normalize-package-data": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
"integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==",
"dev": true,
"requires": {
"hosted-git-info": "2.5.0",
"is-builtin-module": "1.0.0",
"semver": "5.5.0",
"validate-npm-package-license": "3.0.1"
}
},
"normalize-path": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
"dev": true,
"requires": {
"remove-trailing-separator": "1.1.0"
}
},
"npm-run-path": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
"integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
"dev": true,
"requires": {
"path-key": "2.0.1"
}
},
"npmlog": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-2.0.4.tgz",
"integrity": "sha1-mLUlMPJRTKkNCexbIsiEZyI3VpI=",
"dev": true,
"requires": {
"ansi": "0.3.1",
"are-we-there-yet": "1.1.4",
"gauge": "1.2.7"
}
},
"number-is-nan": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",
"integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=",
"dev": true
},
"nwmatcher": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.3.tgz",
"integrity": "sha512-IKdSTiDWCarf2JTS5e9e2+5tPZGdkRJ79XjYV0pzK8Q9BpsFyBq1RGKxzs7Q8UBushGw7m6TzVKz6fcY99iSWw==",
"dev": true
},
"oauth-sign": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz",
"integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM=",
"dev": true
},
"object-assign": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
"dev": true
},
"object-keys": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz",
"integrity": "sha1-xUYBd4rVYPEULODgG8yotW0TQm0=",
"dev": true
},
"object.getownpropertydescriptors": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz",
"integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=",
"dev": true,
"requires": {
"define-properties": "1.1.2",
"es-abstract": "1.10.0"
}
},
"object.omit": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz",
"integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=",
"dev": true,
"requires": {
"for-own": "0.1.5",
"is-extendable": "0.1.1"
}
},
"on-finished": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
"integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
"dev": true,
"requires": {
"ee-first": "1.1.1"
}
},
"on-headers": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz",
"integrity": "sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c=",
"dev": true
},
"once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
"dev": true,
"requires": {
"wrappy": "1.0.2"
}
},
"onetime": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz",
"integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=",
"dev": true,
"requires": {
"mimic-fn": "1.2.0"
}
},
"opn": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/opn/-/opn-3.0.3.tgz",
"integrity": "sha1-ttmec5n3jWXDuq/+8fsojpuFJDo=",
"dev": true,
"requires": {
"object-assign": "4.1.1"
}
},
"optimist": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz",
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
"dev": true,
"requires": {
"minimist": "0.0.8",
"wordwrap": "0.0.3"
}
},
"optionator": {
"version": "0.8.2",
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz",
"integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=",
"dev": true,
"requires": {
"deep-is": "0.1.3",
"fast-levenshtein": "2.0.6",
"levn": "0.3.0",
"prelude-ls": "1.1.2",
"type-check": "0.3.2",
"wordwrap": "1.0.0"
},
"dependencies": {
"wordwrap": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz",
"integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=",
"dev": true
}
}
},
"options": {
"version": "0.0.6",
"resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz",
"integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=",
"dev": true
},
"os-homedir": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
"integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=",
"dev": true
},
"os-locale": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz",
"integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==",
"dev": true,
"requires": {
"execa": "0.7.0",
"lcid": "1.0.0",
"mem": "1.1.0"
}
},
"os-name": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/os-name/-/os-name-2.0.1.tgz",
"integrity": "sha1-uaOGNhwXrjohc27wWZQFyajF3F4=",
"dev": true,
"requires": {
"macos-release": "1.1.0",
"win-release": "1.1.1"
}
},
"os-tmpdir": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
"integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=",
"dev": true
},
"p-finally": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
"integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
"dev": true
},
"p-limit": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz",
"integrity": "sha512-Y/OtIaXtUPr4/YpMv1pCL5L5ed0rumAaAeBSj12F+bSlMdys7i8oQF/GUJmfpTS/QoaRrS/k6pma29haJpsMng==",
"dev": true,
"requires": {
"p-try": "1.0.0"
}
},
"p-locate": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz",
"integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
"dev": true,
"requires": {
"p-limit": "1.2.0"
}
},
"p-try": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz",
"integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=",
"dev": true
},
"parse-glob": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz",
"integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=",
"dev": true,
"requires": {
"glob-base": "0.3.0",
"is-dotfile": "1.0.3",
"is-extglob": "1.0.0",
"is-glob": "2.0.1"
}
},
"parse-json": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz",
"integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
"dev": true,
"requires": {
"error-ex": "1.3.1"
}
},
"parse5": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz",
"integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==",
"dev": true
},
"parseurl": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz",
"integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=",
"dev": true
},
"path-exists": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
"integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
"dev": true
},
"path-is-absolute": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
"dev": true
},
"path-key": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
"integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
"dev": true
},
"path-parse": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz",
"integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=",
"dev": true
},
"path-type": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz",
"integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
"dev": true,
"requires": {
"graceful-fs": "4.1.11",
"pify": "2.3.0",
"pinkie-promise": "2.0.1"
}
},
"paths-js": {
"version": "0.4.5",
"resolved": "https://registry.npmjs.org/paths-js/-/paths-js-0.4.5.tgz",
"integrity": "sha1-oDD4oEBa0eMK3PVg0lUr88KHeSE="
},
"pause": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/pause/-/pause-0.1.0.tgz",
"integrity": "sha1-68ikqGGf8LioGsFRPDQ0/0af23Q=",
"dev": true
},
"pegjs": {
"version": "0.10.0",
"resolved": "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz",
"integrity": "sha1-z4uvrm7d/0tafvsYUmnqr0YQ3b0=",
"dev": true
},
"performance-now": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
"integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=",
"dev": true
},
"pify": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
"integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
"dev": true
},
"pinkie": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
"integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=",
"dev": true
},
"pinkie-promise": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
"integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
"dev": true,
"requires": {
"pinkie": "2.0.4"
}
},
"pkg-dir": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz",
"integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=",
"dev": true,
"requires": {
"find-up": "2.1.0"
}
},
"plist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/plist/-/plist-1.2.0.tgz",
"integrity": "sha1-CEtQk93JJQbiWfh0uNmxr7jHlZM=",
"dev": true,
"requires": {
"base64-js": "0.0.8",
"util-deprecate": "1.0.2",
"xmlbuilder": "4.0.0",
"xmldom": "0.1.27"
},
"dependencies": {
"base64-js": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz",
"integrity": "sha1-EQHpVE9KdrG8OybUUsqW16NeeXg=",
"dev": true
}
}
},
"pn": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz",
"integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==",
"dev": true
},
"prelude-ls": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz",
"integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=",
"dev": true
},
"preserve": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz",
"integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=",
"dev": true
},
"pretty-format": {
"version": "22.1.0",
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-22.1.0.tgz",
"integrity": "sha512-0HHR5hCmjDGU4sez3w5zRDAAwn7V0vT4SgPiYPZ1XDm5sT3Icb+Bh+fsOP3+Y3UwPjMr7TbRj+L7eQyMkPAxAw==",
"dev": true,
"requires": {
"ansi-regex": "3.0.0",
"ansi-styles": "3.2.0"
},
"dependencies": {
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"ansi-styles": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
"color-convert": "1.9.1"
}
}
}
},
"private": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
"integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==",
"dev": true
},
"process": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/process/-/process-0.5.2.tgz",
"integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8=",
"dev": true
},
"process-nextick-args": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
"integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M=",
"dev": true
},
"promise": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
"integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
"dev": true,
"requires": {
"asap": "2.0.6"
}
},
"prop-types": {
"version": "15.6.0",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.0.tgz",
"integrity": "sha1-zq8IMCL8RrSjX2nhPvda7Q1jmFY=",
"dev": true,
"requires": {
"fbjs": "0.8.16",
"loose-envify": "1.3.1",
"object-assign": "4.1.1"
}
},
"prr": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz",
"integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=",
"dev": true
},
"pseudomap": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
"integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=",
"dev": true
},
"punycode": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
"integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
"dev": true
},
"qs": {
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
"integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==",
"dev": true
},
"random-bytes": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz",
"integrity": "sha1-T2ih3Arli9P7lYSMMDJNt11kNgs=",
"dev": true
},
"randomatic": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz",
"integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==",
"dev": true,
"requires": {
"is-number": "3.0.0",
"kind-of": "4.0.0"
},
"dependencies": {
"is-number": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz",
"integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=",
"dev": true,
"requires": {
"kind-of": "3.2.2"
},
"dependencies": {
"kind-of": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
"dev": true,
"requires": {
"is-buffer": "1.1.6"
}
}
}
},
"kind-of": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
"integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
"dev": true,
"requires": {
"is-buffer": "1.1.6"
}
}
}
},
"range-parser": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.0.3.tgz",
"integrity": "sha1-aHKCNTXGkuLCoBA4Jq/YLC4P8XU=",
"dev": true
},
"raw-body": {
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.1.7.tgz",
"integrity": "sha1-rf6s4uT7MJgFgBTQjActzFl1h3Q=",
"dev": true,
"requires": {
"bytes": "2.4.0",
"iconv-lite": "0.4.13",
"unpipe": "1.0.0"
},
"dependencies": {
"bytes": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz",
"integrity": "sha1-fZcZb51br39pNeJZhVSe3SpsIzk=",
"dev": true
},
"iconv-lite": {
"version": "0.4.13",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz",
"integrity": "sha1-H4irpKsLFQjoMSrMOTRfNumS4vI=",
"dev": true
}
}
},
"react": {
"version": "16.0.0",
"resolved": "https://registry.npmjs.org/react/-/react-16.0.0.tgz",
"integrity": "sha1-zn348ZQbA28Cssyp29DLHw6FXi0=",
"dev": true,
"requires": {
"fbjs": "0.8.16",
"loose-envify": "1.3.1",
"object-assign": "4.1.1",
"prop-types": "15.6.0"
}
},
"react-clone-referenced-element": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/react-clone-referenced-element/-/react-clone-referenced-element-1.0.1.tgz",
"integrity": "sha1-K7qMaUBMXkqUQ5hgC8xMlB+GBoI=",
"dev": true
},
"react-deep-force-update": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/react-deep-force-update/-/react-deep-force-update-1.1.1.tgz",
"integrity": "sha1-vNMUeAJ7ZLMznxCJIatSC0MT3Cw=",
"dev": true
},
"react-devtools-core": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-2.5.2.tgz",
"integrity": "sha1-+XvsWvrl2TGNFneAZeDCFMTVcUw=",
"dev": true,
"requires": {
"shell-quote": "1.6.1",
"ws": "2.3.1"
},
"dependencies": {
"safe-buffer": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz",
"integrity": "sha1-0mPKVGls2KMGtcplUekt5XkY++c=",
"dev": true
},
"ws": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/ws/-/ws-2.3.1.tgz",
"integrity": "sha1-a5Sz5EfLajY/eF6vlK9jWejoHIA=",
"dev": true,
"requires": {
"safe-buffer": "5.0.1",
"ultron": "1.1.1"
}
}
}
},
"react-dom": {
"version": "16.0.0",
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.0.0.tgz",
"integrity": "sha1-nMMHnD3NcNTG4BuEqrKn40wwP1g=",
"dev": true,
"requires": {
"fbjs": "0.8.16",
"loose-envify": "1.3.1",
"object-assign": "4.1.1",
"prop-types": "15.6.0"
}
},
"react-native": {
"version": "0.50.3",
"resolved": "https://registry.npmjs.org/react-native/-/react-native-0.50.3.tgz",
"integrity": "sha1-kSgr1TVsx9eUlpzcRDzHZDibmvQ=",
"dev": true,
"requires": {
"absolute-path": "0.0.0",
"art": "0.10.1",
"babel-core": "6.26.0",
"babel-plugin-syntax-trailing-function-commas": "6.22.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-register": "6.26.0",
"babel-runtime": "6.26.0",
"base64-js": "1.2.1",
"chalk": "1.1.3",
"commander": "2.13.0",
"connect": "2.30.2",
"create-react-class": "15.6.3",
"debug": "2.6.9",
"denodeify": "1.2.1",
"envinfo": "3.11.1",
"event-target-shim": "1.1.1",
"fbjs": "0.8.16",
"fbjs-scripts": "0.8.1",
"fs-extra": "1.0.0",
"glob": "7.1.2",
"graceful-fs": "4.1.11",
"inquirer": "3.3.0",
"lodash": "4.17.5",
"metro-bundler": "0.20.3",
"mime": "1.6.0",
"minimist": "1.2.0",
"mkdirp": "0.5.1",
"node-fetch": "1.7.3",
"node-notifier": "5.2.1",
"npmlog": "2.0.4",
"opn": "3.0.3",
"optimist": "0.6.1",
"plist": "1.2.0",
"pretty-format": "4.3.1",
"promise": "7.3.1",
"prop-types": "15.6.0",
"react-clone-referenced-element": "1.0.1",
"react-devtools-core": "2.5.2",
"react-timer-mixin": "0.13.3",
"regenerator-runtime": "0.9.6",
"rimraf": "2.6.2",
"semver": "5.5.0",
"shell-quote": "1.6.1",
"stacktrace-parser": "0.1.4",
"whatwg-fetch": "1.1.1",
"ws": "1.1.5",
"xcode": "0.9.3",
"xmldoc": "0.4.0",
"yargs": "9.0.1"
},
"dependencies": {
"camelcase": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
"integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=",
"dev": true
},
"cliui": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
"integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
"dev": true,
"requires": {
"string-width": "1.0.2",
"strip-ansi": "3.0.1",
"wrap-ansi": "2.1.0"
},
"dependencies": {
"string-width": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
"integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
"dev": true,
"requires": {
"code-point-at": "1.1.0",
"is-fullwidth-code-point": "1.0.0",
"strip-ansi": "3.0.1"
}
}
}
},
"is-fullwidth-code-point": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
"integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
"dev": true,
"requires": {
"number-is-nan": "1.0.1"
}
},
"load-json-file": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
"integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
"dev": true,
"requires": {
"graceful-fs": "4.1.11",
"parse-json": "2.2.0",
"pify": "2.3.0",
"strip-bom": "3.0.0"
}
},
"minimist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
"dev": true
},
"path-type": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
"integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
"dev": true,
"requires": {
"pify": "2.3.0"
}
},
"pretty-format": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-4.3.1.tgz",
"integrity": "sha1-UwvlxCs8BbNkFKeipDN6qArNDo0=",
"dev": true
},
"read-pkg": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
"integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
"dev": true,
"requires": {
"load-json-file": "2.0.0",
"normalize-package-data": "2.4.0",
"path-type": "2.0.0"
}
},
"read-pkg-up": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
"integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
"dev": true,
"requires": {
"find-up": "2.1.0",
"read-pkg": "2.0.0"
}
},
"regenerator-runtime": {
"version": "0.9.6",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz",
"integrity": "sha1-0z65XQ0gAaS+OWWXB8UbDLcc4Ck=",
"dev": true
},
"strip-bom": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
"integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=",
"dev": true
},
"ultron": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz",
"integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=",
"dev": true
},
"whatwg-fetch": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz",
"integrity": "sha1-rDydOfMgxtzlM5lp0FTvQ90zMxk=",
"dev": true
},
"ws": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz",
"integrity": "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==",
"dev": true,
"requires": {
"options": "0.0.6",
"ultron": "1.0.2"
}
},
"yargs": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz",
"integrity": "sha1-UqzCP+7Kw0BCB47njAwAf1CF20w=",
"dev": true,
"requires": {
"camelcase": "4.1.0",
"cliui": "3.2.0",
"decamelize": "1.2.0",
"get-caller-file": "1.0.2",
"os-locale": "2.1.0",
"read-pkg-up": "2.0.0",
"require-directory": "2.1.1",
"require-main-filename": "1.0.1",
"set-blocking": "2.0.0",
"string-width": "2.1.1",
"which-module": "2.0.0",
"y18n": "3.2.1",
"yargs-parser": "7.0.0"
}
},
"yargs-parser": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz",
"integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=",
"dev": true,
"requires": {
"camelcase": "4.1.0"
}
}
}
},
"react-native-svg": {
"version": "5.5.1",
"resolved": "https://registry.npmjs.org/react-native-svg/-/react-native-svg-5.5.1.tgz",
"integrity": "sha1-Yz2IIHfwSPBcch67eTzQc+hGuh8=",
"requires": {
"color": "0.11.4",
"lodash": "4.17.5"
}
},
"react-proxy": {
"version": "1.1.8",
"resolved": "https://registry.npmjs.org/react-proxy/-/react-proxy-1.1.8.tgz",
"integrity": "sha1-nb/Z2SdSjDqp9ETkVYw3gwq4wmo=",
"dev": true,
"requires": {
"lodash": "4.17.5",
"react-deep-force-update": "1.1.1"
}
},
"react-test-renderer": {
"version": "16.0.0",
"resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.0.0.tgz",
"integrity": "sha1-n+e4MI8vcfKfw1bUECCG8THJyxU=",
"dev": true,
"requires": {
"fbjs": "0.8.16",
"object-assign": "4.1.1"
}
},
"react-timer-mixin": {
"version": "0.13.3",
"resolved": "https://registry.npmjs.org/react-timer-mixin/-/react-timer-mixin-0.13.3.tgz",
"integrity": "sha1-Dai5+AfsB9w+hU0ILHN8ZWBbPSI=",
"dev": true
},
"react-transform-hmr": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/react-transform-hmr/-/react-transform-hmr-1.0.4.tgz",
"integrity": "sha1-4aQL0Krvxy6N/Xp82gmvhQZjl7s=",
"dev": true,
"requires": {
"global": "4.3.2",
"react-proxy": "1.1.8"
}
},
"read-pkg": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz",
"integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
"dev": true,
"requires": {
"load-json-file": "1.1.0",
"normalize-package-data": "2.4.0",
"path-type": "1.1.0"
}
},
"read-pkg-up": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
"integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
"dev": true,
"requires": {
"find-up": "1.1.2",
"read-pkg": "1.1.0"
},
"dependencies": {
"find-up": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz",
"integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
"dev": true,
"requires": {
"path-exists": "2.1.0",
"pinkie-promise": "2.0.1"
}
},
"path-exists": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz",
"integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
"dev": true,
"requires": {
"pinkie-promise": "2.0.1"
}
}
}
},
"readable-stream": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz",
"integrity": "sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==",
"dev": true,
"requires": {
"core-util-is": "1.0.2",
"inherits": "2.0.3",
"isarray": "1.0.0",
"process-nextick-args": "1.0.7",
"safe-buffer": "5.1.1",
"string_decoder": "1.0.3",
"util-deprecate": "1.0.2"
}
},
"realpath-native": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.0.0.tgz",
"integrity": "sha512-XJtlRJ9jf0E1H1SLeJyQ9PGzQD7S65h1pRXEcAeK48doKOnKxcgPeNohJvD5u/2sI9J1oke6E8bZHS/fmW1UiQ==",
"dev": true,
"requires": {
"util.promisify": "1.0.0"
}
},
"regenerate": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz",
"integrity": "sha512-jVpo1GadrDAK59t/0jRx5VxYWQEDkkEKi6+HjE3joFVLfDOh9Xrdh0dF1eSq+BI/SwvTQ44gSscJ8N5zYL61sg==",
"dev": true
},
"regenerator-runtime": {
"version": "0.11.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
"dev": true
},
"regenerator-transform": {
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
"integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
"dev": true,
"requires": {
"babel-runtime": "6.26.0",
"babel-types": "6.26.0",
"private": "0.1.8"
}
},
"regex-cache": {
"version": "0.4.4",
"resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz",
"integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==",
"dev": true,
"requires": {
"is-equal-shallow": "0.1.3"
}
},
"regexpu-core": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz",
"integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=",
"dev": true,
"requires": {
"regenerate": "1.3.3",
"regjsgen": "0.2.0",
"regjsparser": "0.1.5"
}
},
"regjsgen": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz",
"integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=",
"dev": true
},
"regjsparser": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
"integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
"dev": true,
"requires": {
"jsesc": "0.5.0"
},
"dependencies": {
"jsesc": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
"integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
"dev": true
}
}
},
"remove-trailing-separator": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz",
"integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=",
"dev": true
},
"repeat-element": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
"integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=",
"dev": true
},
"repeat-string": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz",
"integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=",
"dev": true
},
"repeating": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz",
"integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
"dev": true,
"requires": {
"is-finite": "1.0.2"
}
},
"replace-ext": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz",
"integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=",
"dev": true
},
"request": {
"version": "2.83.0",
"resolved": "https://registry.npmjs.org/request/-/request-2.83.0.tgz",
"integrity": "sha512-lR3gD69osqm6EYLk9wB/G1W/laGWjzH90t1vEa2xuxHD5KUrSzp9pUSfTm+YC5Nxt2T8nMPEvKlhbQayU7bgFw==",
"dev": true,
"requires": {
"aws-sign2": "0.7.0",
"aws4": "1.6.0",
"caseless": "0.12.0",
"combined-stream": "1.0.5",
"extend": "3.0.1",
"forever-agent": "0.6.1",
"form-data": "2.3.1",
"har-validator": "5.0.3",
"hawk": "6.0.2",
"http-signature": "1.2.0",
"is-typedarray": "1.0.0",
"isstream": "0.1.2",
"json-stringify-safe": "5.0.1",
"mime-types": "2.1.17",
"oauth-sign": "0.8.2",
"performance-now": "2.1.0",
"qs": "6.5.1",
"safe-buffer": "5.1.1",
"stringstream": "0.0.5",
"tough-cookie": "2.3.3",
"tunnel-agent": "0.6.0",
"uuid": "3.2.1"
}
},
"request-promise-core": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.1.tgz",
"integrity": "sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY=",
"dev": true,
"requires": {
"lodash": "4.17.5"
}
},
"request-promise-native": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.5.tgz",
"integrity": "sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU=",
"dev": true,
"requires": {
"request-promise-core": "1.1.1",
"stealthy-require": "1.1.1",
"tough-cookie": "2.3.3"
}
},
"require-directory": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
"integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=",
"dev": true
},
"require-main-filename": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz",
"integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=",
"dev": true
},
"resolve": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
"integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=",
"dev": true
},
"resolve-cwd": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz",
"integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=",
"dev": true,
"requires": {
"resolve-from": "3.0.0"
}
},
"resolve-from": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz",
"integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=",
"dev": true
},
"response-time": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz",
"integrity": "sha1-/6cbq5UtYvfB1Jt0NDVfvGjf/Fo=",
"dev": true,
"requires": {
"depd": "1.1.2",
"on-headers": "1.0.1"
},
"dependencies": {
"depd": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
"integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
"dev": true
}
}
},
"restore-cursor": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
"integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
"dev": true,
"requires": {
"onetime": "2.0.1",
"signal-exit": "3.0.2"
}
},
"right-align": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz",
"integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=",
"dev": true,
"optional": true,
"requires": {
"align-text": "0.1.4"
}
},
"rimraf": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz",
"integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==",
"dev": true,
"requires": {
"glob": "7.1.2"
}
},
"rndm": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz",
"integrity": "sha1-8z/pz7Urv9UgqhgyO8ZdsRCht2w=",
"dev": true
},
"run-async": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz",
"integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=",
"dev": true,
"requires": {
"is-promise": "2.1.0"
}
},
"rx-lite": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz",
"integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=",
"dev": true
},
"rx-lite-aggregates": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz",
"integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=",
"dev": true,
"requires": {
"rx-lite": "4.0.8"
}
},
"safe-buffer": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz",
"integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==",
"dev": true
},
"sane": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/sane/-/sane-2.3.0.tgz",
"integrity": "sha512-6GB9zPCsqJqQPAGcvEkUPijM1ZUFI+A/DrscL++dXO3Ltt5q5mPDayGxZtr3cBRkrbb4akbwszVVkTIFefEkcg==",
"dev": true,
"requires": {
"anymatch": "1.3.2",
"exec-sh": "0.2.1",
"fb-watchman": "2.0.0",
"fsevents": "1.1.3",
"minimatch": "3.0.4",
"minimist": "1.2.0",
"walker": "1.0.7",
"watch": "0.18.0"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
"dev": true
}
}
},
"sax": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==",
"dev": true
},
"semver": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
"integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==",
"dev": true
},
"send": {
"version": "0.13.2",
"resolved": "https://registry.npmjs.org/send/-/send-0.13.2.tgz",
"integrity": "sha1-dl52B8gFVFK7pvCwUllTUJhgNt4=",
"dev": true,
"requires": {
"debug": "2.2.0",
"depd": "1.1.2",
"destroy": "1.0.4",
"escape-html": "1.0.3",
"etag": "1.7.0",
"fresh": "0.3.0",
"http-errors": "1.3.1",
"mime": "1.3.4",
"ms": "0.7.1",
"on-finished": "2.3.0",
"range-parser": "1.0.3",
"statuses": "1.2.1"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"depd": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
"integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
"dev": true
},
"mime": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz",
"integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM=",
"dev": true
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
},
"statuses": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz",
"integrity": "sha1-3e1FzBglbVHtQK7BQkidXGECbSg=",
"dev": true
}
}
},
"serve-favicon": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.3.2.tgz",
"integrity": "sha1-3UGeJo3gEqtysxnTN/IQUBP5OB8=",
"dev": true,
"requires": {
"etag": "1.7.0",
"fresh": "0.3.0",
"ms": "0.7.2",
"parseurl": "1.3.2"
},
"dependencies": {
"ms": {
"version": "0.7.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz",
"integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=",
"dev": true
}
}
},
"serve-index": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.7.3.tgz",
"integrity": "sha1-egV/xu4o3GP2RWbl+lexEahq7NI=",
"dev": true,
"requires": {
"accepts": "1.2.13",
"batch": "0.5.3",
"debug": "2.2.0",
"escape-html": "1.0.3",
"http-errors": "1.3.1",
"mime-types": "2.1.17",
"parseurl": "1.3.2"
},
"dependencies": {
"debug": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz",
"integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=",
"dev": true,
"requires": {
"ms": "0.7.1"
}
},
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
"integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=",
"dev": true
}
}
},
"serve-static": {
"version": "1.10.3",
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.10.3.tgz",
"integrity": "sha1-zlpuzTEB/tXsCYJ9rCKpwpv7BTU=",
"dev": true,
"requires": {
"escape-html": "1.0.3",
"parseurl": "1.3.2",
"send": "0.13.2"
}
},
"set-blocking": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
"integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
"dev": true
},
"setimmediate": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
"integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=",
"dev": true
},
"shebang-command": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
"integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
"dev": true,
"requires": {
"shebang-regex": "1.0.0"
}
},
"shebang-regex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
"integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
"dev": true
},
"shell-quote": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz",
"integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=",
"dev": true,
"requires": {
"array-filter": "0.0.1",
"array-map": "0.0.0",
"array-reduce": "0.0.0",
"jsonify": "0.0.0"
}
},
"shellwords": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
"integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==",
"dev": true
},
"signal-exit": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz",
"integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=",
"dev": true
},
"simple-plist": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/simple-plist/-/simple-plist-0.2.1.tgz",
"integrity": "sha1-cXZts1IyaSjPOoByQrp2IyJjZyM=",
"dev": true,
"requires": {
"bplist-creator": "0.0.7",
"bplist-parser": "0.1.1",
"plist": "2.0.1"
},
"dependencies": {
"base64-js": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.1.2.tgz",
"integrity": "sha1-1kAMrBxMZgl22Q0HoENR2JOV9eg=",
"dev": true
},
"plist": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/plist/-/plist-2.0.1.tgz",
"integrity": "sha1-CjLKlIGxw2TpLhjcVch23p0B2os=",
"dev": true,
"requires": {
"base64-js": "1.1.2",
"xmlbuilder": "8.2.2",
"xmldom": "0.1.27"
}
},
"xmlbuilder": {
"version": "8.2.2",
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz",
"integrity": "sha1-aSSGc0ELS6QuGmE2VR0pIjNap3M=",
"dev": true
}
}
},
"slash": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz",
"integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=",
"dev": true
},
"slide": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz",
"integrity": "sha1-VusCfWW00tzmyy4tMsTUr8nh1wc=",
"dev": true
},
"sntp": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz",
"integrity": "sha512-FL1b58BDrqS3A11lJ0zEdnJ3UOKqVxawAkF3k7F0CVN7VQ34aZrV+G8BZ1WC9ZL7NyrwsW0oviwsWDgRuVYtJg==",
"dev": true,
"requires": {
"hoek": "4.2.0"
}
},
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"dev": true
},
"source-map-support": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.3.tgz",
"integrity": "sha512-eKkTgWYeBOQqFGXRfKabMFdnWepo51vWqEdoeikaEPFiJC7MCU5j2h4+6Q8npkZTeLGbSyecZvRxiSoWl3rh+w==",
"dev": true,
"requires": {
"source-map": "0.6.1"
},
"dependencies": {
"source-map": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true
}
}
},
"sparkles": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz",
"integrity": "sha1-Gsu/tZJDbRC76PeFt8xvgoFQEsM=",
"dev": true
},
"spdx-correct": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz",
"integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=",
"dev": true,
"requires": {
"spdx-license-ids": "1.2.2"
}
},
"spdx-expression-parse": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz",
"integrity": "sha1-m98vIOH0DtRH++JzJmGR/O1RYmw=",
"dev": true
},
"spdx-license-ids": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz",
"integrity": "sha1-yd96NCRZSt5r0RkA1ZZpbcBrrFc=",
"dev": true
},
"sprintf-js": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
"dev": true
},
"sshpk": {
"version": "1.13.1",
"resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz",
"integrity": "sha1-US322mKHFEMW3EwY/hzx2UBzm+M=",
"dev": true,
"requires": {
"asn1": "0.2.3",
"assert-plus": "1.0.0",
"bcrypt-pbkdf": "1.0.1",
"dashdash": "1.14.1",
"ecc-jsbn": "0.1.1",
"getpass": "0.1.7",
"jsbn": "0.1.1",
"tweetnacl": "0.14.5"
}
},
"stack-utils": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.1.tgz",
"integrity": "sha1-1PM6tU6OOHeLDKXP07OvsS22hiA=",
"dev": true
},
"stacktrace-parser": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/stacktrace-parser/-/stacktrace-parser-0.1.4.tgz",
"integrity": "sha1-ATl5IuX2Ls8whFUiyVxP4dJefU4=",
"dev": true
},
"statuses": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
"integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==",
"dev": true
},
"stealthy-require": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz",
"integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=",
"dev": true
},
"stream-buffers": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz",
"integrity": "sha1-kdX1Ew0c75bc+n9yaUUYh0HQnuQ=",
"dev": true
},
"stream-counter": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz",
"integrity": "sha1-3tJmVWMZyLDiIoErnPOyb6fZR94=",
"dev": true,
"requires": {
"readable-stream": "1.1.14"
},
"dependencies": {
"isarray": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
"integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=",
"dev": true
},
"readable-stream": {
"version": "1.1.14",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
"dev": true,
"requires": {
"core-util-is": "1.0.2",
"inherits": "2.0.3",
"isarray": "0.0.1",
"string_decoder": "0.10.31"
}
},
"string_decoder": {
"version": "0.10.31",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz",
"integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=",
"dev": true
}
}
},
"string-length": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz",
"integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=",
"dev": true,
"requires": {
"astral-regex": "1.0.0",
"strip-ansi": "4.0.0"
},
"dependencies": {
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
"ansi-regex": "3.0.0"
}
}
}
},
"string-width": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
"dev": true,
"requires": {
"is-fullwidth-code-point": "2.0.0",
"strip-ansi": "4.0.0"
},
"dependencies": {
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
"ansi-regex": "3.0.0"
}
}
}
},
"string_decoder": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz",
"integrity": "sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==",
"dev": true,
"requires": {
"safe-buffer": "5.1.1"
}
},
"stringstream": {
"version": "0.0.5",
"resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz",
"integrity": "sha1-TkhM1N5aC7vuGORjB3EKioFiGHg=",
"dev": true
},
"strip-ansi": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
"dev": true,
"requires": {
"ansi-regex": "2.1.1"
}
},
"strip-bom": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
"integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
"dev": true,
"requires": {
"is-utf8": "0.2.1"
}
},
"strip-eof": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz",
"integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=",
"dev": true
},
"supports-color": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
"dev": true
},
"symbol-tree": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz",
"integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=",
"dev": true
},
"temp": {
"version": "0.8.3",
"resolved": "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz",
"integrity": "sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=",
"dev": true,
"requires": {
"os-tmpdir": "1.0.2",
"rimraf": "2.2.8"
},
"dependencies": {
"rimraf": {
"version": "2.2.8",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz",
"integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=",
"dev": true
}
}
},
"test-exclude": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.1.1.tgz",
"integrity": "sha512-35+Asrsk3XHJDBgf/VRFexPgh3UyETv8IAn/LRTiZjVy6rjPVqdEk8dJcJYBzl1w0XCJM48lvTy8SfEsCWS4nA==",
"dev": true,
"requires": {
"arrify": "1.0.1",
"micromatch": "2.3.11",
"object-assign": "4.1.1",
"read-pkg-up": "1.0.1",
"require-main-filename": "1.0.1"
}
},
"throat": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz",
"integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=",
"dev": true
},
"through": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
"integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=",
"dev": true
},
"through2": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
"integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=",
"dev": true,
"requires": {
"readable-stream": "2.3.3",
"xtend": "4.0.1"
}
},
"time-stamp": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz",
"integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=",
"dev": true
},
"tmp": {
"version": "0.0.33",
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
"integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
"dev": true,
"requires": {
"os-tmpdir": "1.0.2"
}
},
"tmpl": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz",
"integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=",
"dev": true
},
"to-fast-properties": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
"integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
"dev": true
},
"tough-cookie": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz",
"integrity": "sha1-C2GKVWW23qkL80JdBNVe3EdadWE=",
"dev": true,
"requires": {
"punycode": "1.4.1"
}
},
"tr46": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz",
"integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=",
"dev": true,
"requires": {
"punycode": "2.1.0"
},
"dependencies": {
"punycode": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz",
"integrity": "sha1-X4Y+3Im5bbCQdLrXlHvwkFbKTn0=",
"dev": true
}
}
},
"trim-right": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz",
"integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=",
"dev": true
},
"tsscmp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz",
"integrity": "sha1-fcSjOvcVgatDN9qR2FylQn69mpc=",
"dev": true
},
"tunnel-agent": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
"integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
"dev": true,
"requires": {
"safe-buffer": "5.1.1"
}
},
"tweetnacl": {
"version": "0.14.5",
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
"integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=",
"dev": true,
"optional": true
},
"type-check": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz",
"integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
"dev": true,
"requires": {
"prelude-ls": "1.1.2"
}
},
"type-is": {
"version": "1.6.15",
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz",
"integrity": "sha1-yrEPtJCeRByChC6v4a1kbIGARBA=",
"dev": true,
"requires": {
"media-typer": "0.3.0",
"mime-types": "2.1.17"
}
},
"typedarray": {
"version": "0.0.6",
"resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
"integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=",
"dev": true
},
"ua-parser-js": {
"version": "0.7.17",
"resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz",
"integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g==",
"dev": true
},
"uglify-js": {
"version": "2.8.29",
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz",
"integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=",
"dev": true,
"optional": true,
"requires": {
"source-map": "0.5.7",
"uglify-to-browserify": "1.0.2",
"yargs": "3.10.0"
},
"dependencies": {
"yargs": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz",
"integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=",
"dev": true,
"optional": true,
"requires": {
"camelcase": "1.2.1",
"cliui": "2.1.0",
"decamelize": "1.2.0",
"window-size": "0.1.0"
}
}
}
},
"uglify-to-browserify": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz",
"integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=",
"dev": true,
"optional": true
},
"uid-safe": {
"version": "2.1.4",
"resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz",
"integrity": "sha1-Otbzg2jG1MjHXsF2I/t5qh0HHYE=",
"dev": true,
"requires": {
"random-bytes": "1.0.0"
}
},
"ultron": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz",
"integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==",
"dev": true
},
"unpipe": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
"integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=",
"dev": true
},
"util-deprecate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
"integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=",
"dev": true
},
"util.promisify": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
"integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
"dev": true,
"requires": {
"define-properties": "1.1.2",
"object.getownpropertydescriptors": "2.0.3"
}
},
"utils-merge": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz",
"integrity": "sha1-ApT7kiu5N1FTVBxPcJYjHyh8ivg=",
"dev": true
},
"uuid": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
"integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==",
"dev": true
},
"validate-npm-package-license": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz",
"integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=",
"dev": true,
"requires": {
"spdx-correct": "1.0.2",
"spdx-expression-parse": "1.0.4"
}
},
"vary": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/vary/-/vary-1.0.1.tgz",
"integrity": "sha1-meSYFWaihhGN+yuBc1ffeZM3bRA=",
"dev": true
},
"verror": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
"integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
"dev": true,
"requires": {
"assert-plus": "1.0.0",
"core-util-is": "1.0.2",
"extsprintf": "1.3.0"
}
},
"vhost": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/vhost/-/vhost-3.0.2.tgz",
"integrity": "sha1-L7HezUxGaqiLD5NBrzPcGv8keNU=",
"dev": true
},
"vinyl": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz",
"integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=",
"dev": true,
"requires": {
"clone": "1.0.3",
"clone-stats": "0.0.1",
"replace-ext": "0.0.1"
}
},
"w3c-hr-time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz",
"integrity": "sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=",
"dev": true,
"requires": {
"browser-process-hrtime": "0.1.2"
}
},
"walker": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz",
"integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=",
"dev": true,
"requires": {
"makeerror": "1.0.11"
}
},
"watch": {
"version": "0.18.0",
"resolved": "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz",
"integrity": "sha1-KAlUdsbffJDJYxOJkMClQj60uYY=",
"dev": true,
"requires": {
"exec-sh": "0.2.1",
"minimist": "1.2.0"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
"dev": true
}
}
},
"webidl-conversions": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
"integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==",
"dev": true
},
"whatwg-encoding": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.3.tgz",
"integrity": "sha512-jLBwwKUhi8WtBfsMQlL4bUUcT8sMkAtQinscJAe/M4KHCkHuUJAF6vuB0tueNIw4c8ziO6AkRmgY+jL3a0iiPw==",
"dev": true,
"requires": {
"iconv-lite": "0.4.19"
}
},
"whatwg-fetch": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz",
"integrity": "sha1-nITsLc9oGH/wC8ZOEnS0QhduHIQ=",
"dev": true
},
"whatwg-url": {
"version": "6.4.0",
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.4.0.tgz",
"integrity": "sha512-Z0CVh/YE217Foyb488eo+iBv+r7eAQ0wSTyApi9n06jhcA3z6Nidg/EGvl0UFkg7kMdKxfBzzr+o9JF+cevgMg==",
"dev": true,
"requires": {
"lodash.sortby": "4.7.0",
"tr46": "1.0.1",
"webidl-conversions": "4.0.2"
}
},
"which": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz",
"integrity": "sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==",
"dev": true,
"requires": {
"isexe": "2.0.0"
}
},
"which-module": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
"integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
"dev": true
},
"win-release": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz",
"integrity": "sha1-X6VeAr58qTTt/BJmVjLoSbcuUgk=",
"dev": true,
"requires": {
"semver": "5.5.0"
}
},
"window-size": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz",
"integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=",
"dev": true,
"optional": true
},
"wordwrap": {
"version": "0.0.3",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz",
"integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=",
"dev": true
},
"worker-farm": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.5.2.tgz",
"integrity": "sha512-XxiQ9kZN5n6mmnW+mFJ+wXjNNI/Nx4DIdaAKLX1Bn6LYBWlN/zaBhu34DQYPZ1AJobQuu67S2OfDdNSVULvXkQ==",
"dev": true,
"requires": {
"errno": "0.1.6",
"xtend": "4.0.1"
}
},
"wrap-ansi": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
"integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
"dev": true,
"requires": {
"string-width": "1.0.2",
"strip-ansi": "3.0.1"
},
"dependencies": {
"is-fullwidth-code-point": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
"integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
"dev": true,
"requires": {
"number-is-nan": "1.0.1"
}
},
"string-width": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
"integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
"dev": true,
"requires": {
"code-point-at": "1.1.0",
"is-fullwidth-code-point": "1.0.0",
"strip-ansi": "3.0.1"
}
}
}
},
"wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
"dev": true
},
"write-file-atomic": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz",
"integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==",
"dev": true,
"requires": {
"graceful-fs": "4.1.11",
"imurmurhash": "0.1.4",
"signal-exit": "3.0.2"
}
},
"ws": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-4.0.0.tgz",
"integrity": "sha512-QYslsH44bH8O7/W2815u5DpnCpXWpEK44FmaHffNwgJI4JMaSZONgPBTOfrxJ29mXKbXak+LsJ2uAkDTYq2ptQ==",
"dev": true,
"requires": {
"async-limiter": "1.0.0",
"safe-buffer": "5.1.1",
"ultron": "1.1.1"
}
},
"xcode": {
"version": "0.9.3",
"resolved": "https://registry.npmjs.org/xcode/-/xcode-0.9.3.tgz",
"integrity": "sha1-kQqJwWrubMC0LKgFptC0z4chHPM=",
"dev": true,
"requires": {
"pegjs": "0.10.0",
"simple-plist": "0.2.1",
"uuid": "3.0.1"
},
"dependencies": {
"uuid": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz",
"integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=",
"dev": true
}
}
},
"xml-name-validator": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==",
"dev": true
},
"xmlbuilder": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz",
"integrity": "sha1-mLj2UcowqmJANvEn0RzGbce5B6M=",
"dev": true,
"requires": {
"lodash": "3.10.1"
},
"dependencies": {
"lodash": {
"version": "3.10.1",
"resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz",
"integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=",
"dev": true
}
}
},
"xmldoc": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-0.4.0.tgz",
"integrity": "sha1-0lciS+g5PqrL+DfvIn/Y7CWzaIg=",
"dev": true,
"requires": {
"sax": "1.1.6"
},
"dependencies": {
"sax": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/sax/-/sax-1.1.6.tgz",
"integrity": "sha1-XWFr6KXmB9VOEUr65Vt+ry/MMkA=",
"dev": true
}
}
},
"xmldom": {
"version": "0.1.27",
"resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz",
"integrity": "sha1-1QH5ezvbQDr4757MIFcxh6rawOk=",
"dev": true
},
"xpipe": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/xpipe/-/xpipe-1.0.5.tgz",
"integrity": "sha1-jdi/Rfw/f1Xw4FS4ePQ6YmFNr98=",
"dev": true
},
"xtend": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz",
"integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=",
"dev": true
},
"y18n": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz",
"integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=",
"dev": true
},
"yallist": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz",
"integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=",
"dev": true
},
"yargs": {
"version": "10.1.2",
"resolved": "https://registry.npmjs.org/yargs/-/yargs-10.1.2.tgz",
"integrity": "sha512-ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==",
"dev": true,
"requires": {
"cliui": "4.0.0",
"decamelize": "1.2.0",
"find-up": "2.1.0",
"get-caller-file": "1.0.2",
"os-locale": "2.1.0",
"require-directory": "2.1.1",
"require-main-filename": "1.0.1",
"set-blocking": "2.0.0",
"string-width": "2.1.1",
"which-module": "2.0.0",
"y18n": "3.2.1",
"yargs-parser": "8.1.0"
},
"dependencies": {
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"cliui": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-4.0.0.tgz",
"integrity": "sha512-nY3W5Gu2racvdDk//ELReY+dHjb9PlIcVDFXP72nVIhq2Gy3LuVXYwJoPVudwQnv1shtohpgkdCKT2YaKY0CKw==",
"dev": true,
"requires": {
"string-width": "2.1.1",
"strip-ansi": "4.0.0",
"wrap-ansi": "2.1.0"
}
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
"ansi-regex": "3.0.0"
}
}
}
},
"yargs-parser": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-8.1.0.tgz",
"integrity": "sha512-yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==",
"dev": true,
"requires": {
"camelcase": "4.1.0"
},
"dependencies": {
"camelcase": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz",
"integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=",
"dev": true
}
}
}
}
}
|
0 | capitalone_repos | capitalone_repos/react-native-pathjs-charts/circle.yml | machine:
node:
version: v6.1.0
dependencies:
pre:
- echo -e "$NPM_USER\n$NPM_PASS\n$NPM_EMAIL" | npm login
- npm --version
- node --version
post:
- npm test -- --version
test:
override:
- npm test
deployment:
release:
tag: /[0-9]+(\.[0-9]+)*/
commands:
- npm publish
|
0 | capitalone_repos/react-native-pathjs-charts | capitalone_repos/react-native-pathjs-charts/example/.watchmanconfig | {} |
0 | capitalone_repos/react-native-pathjs-charts | capitalone_repos/react-native-pathjs-charts/example/app.json | {
"name": "example",
"displayName": "example"
} |
0 | capitalone_repos/react-native-pathjs-charts | capitalone_repos/react-native-pathjs-charts/example/.babelrc | {
"presets": ["react-native"]
}
|
0 | capitalone_repos/react-native-pathjs-charts | capitalone_repos/react-native-pathjs-charts/example/.buckconfig |
[android]
target = Google Inc.:Google APIs:23
[maven_repositories]
central = https://repo1.maven.org/maven2
|
0 | capitalone_repos/react-native-pathjs-charts | capitalone_repos/react-native-pathjs-charts/example/package.json | {
"name": "example",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"sync-rnpc": "rm -rf ./node_modules/react-native-pathjs-charts; sane '/usr/bin/rsync -v -a --exclude .git --exclude example --exclude node_modules ../ ./node_modules/react-native-pathjs-charts/' .. --glob='{**/*.json,**/*.js}'"
},
"dependencies": {
"moment": "^2.17.1",
"react": "16.0.0",
"react-native": "0.50.3",
"react-native-pathjs-charts": "file:../",
"react-native-side-menu": "^1.0.0",
"react-navigation": "^1.0.0-beta.9"
},
"devDependencies": {
"babel-polyfill": "^6.22.0",
"sane": "^1.4.1"
}
}
|
0 | capitalone_repos/react-native-pathjs-charts | capitalone_repos/react-native-pathjs-charts/example/index.ios.js | /*
Copyright 2016 Capital One Services, LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
*/
'use strict';
import React, { AppRegistry } from 'react-native';
import App from './src/App';
AppRegistry.registerComponent('example', () => App);
|
0 | capitalone_repos/react-native-pathjs-charts | capitalone_repos/react-native-pathjs-charts/example/.flowconfig | [ignore]
; We fork some components by platform
.*/*[.]android.js
; Ignore "BUCK" generated dirs
<PROJECT_ROOT>/\.buckd/
; Ignore unexpected extra "@providesModule"
.*/node_modules/.*/node_modules/fbjs/.*
; Ignore duplicate module providers
; For RN Apps installed via npm, "Libraries" folder is inside
; "node_modules/react-native" but in the source repo it is in the root
.*/Libraries/react-native/React.js
; Ignore polyfills
.*/Libraries/polyfills/.*
[include]
[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
node_modules/react-native/flow/
[options]
emoji=true
module.system=haste
experimental.strict_type_args=true
munge_underscores=true
module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FlowFixMeProps
suppress_type=$FlowFixMeState
suppress_type=$FixMe
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-6]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
unsafe.enable_getters_and_setters=true
[version]
^0.56.0
|
0 | capitalone_repos/react-native-pathjs-charts | capitalone_repos/react-native-pathjs-charts/example/index.android.js | /*
Copyright 2016 Capital One Services, LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
*/
'use strict';
import React, { AppRegistry } from 'react-native';
import App from './src/App';
AppRegistry.registerComponent('example', () => App);
|
0 | capitalone_repos/react-native-pathjs-charts/example | capitalone_repos/react-native-pathjs-charts/example/android/settings.gradle | rootProject.name = 'example'
include ':react-native-svg'
project(':react-native-svg').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-svg/android')
include ':app'
|
0 | capitalone_repos/react-native-pathjs-charts/example | capitalone_repos/react-native-pathjs-charts/example/android/gradlew | #!/usr/bin/env bash
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn ( ) {
echo "$*"
}
die ( ) {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
esac
# For Cygwin, ensure paths are in UNIX format before anything is touched.
if $cygwin ; then
[ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
fi
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >&-
APP_HOME="`pwd -P`"
cd "$SAVED" >&-
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=$((i+1))
done
case $i in
(0) set -- ;;
(1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
function splitJvmOpts() {
JVM_OPTS=("$@")
}
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
0 | capitalone_repos/react-native-pathjs-charts/example | capitalone_repos/react-native-pathjs-charts/example/android/gradle.properties | # Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.useDeprecatedNdk=true
|
0 | capitalone_repos/react-native-pathjs-charts/example | capitalone_repos/react-native-pathjs-charts/example/android/build.gradle | // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
mavenLocal()
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}
|
0 | capitalone_repos/react-native-pathjs-charts/example | capitalone_repos/react-native-pathjs-charts/example/android/gradlew.bat | @if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
|
0 | capitalone_repos/react-native-pathjs-charts/example/android/gradle | capitalone_repos/react-native-pathjs-charts/example/android/gradle/wrapper/gradle-wrapper.properties | distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
|
0 | capitalone_repos/react-native-pathjs-charts/example/android | capitalone_repos/react-native-pathjs-charts/example/android/app/BUCK | # To learn about Buck see [Docs](https://buckbuild.com/).
# To run your application with Buck:
# - install Buck
# - `npm start` - to start the packager
# - `cd android`
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
# - `buck install -r android/app` - compile, install and run application
#
lib_deps = []
for jarfile in glob(['libs/*.jar']):
name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')]
lib_deps.append(':' + name)
prebuilt_jar(
name = name,
binary_jar = jarfile,
)
for aarfile in glob(['libs/*.aar']):
name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
lib_deps.append(':' + name)
android_prebuilt_aar(
name = name,
aar = aarfile,
)
android_library(
name = "all-libs",
exported_deps = lib_deps,
)
android_library(
name = "app-code",
srcs = glob([
"src/main/java/**/*.java",
]),
deps = [
":all-libs",
":build_config",
":res",
],
)
android_build_config(
name = "build_config",
package = "com.example",
)
android_resource(
name = "res",
package = "com.example",
res = "src/main/res",
)
android_binary(
name = "app",
keystore = "//android/keystores:debug",
manifest = "src/main/AndroidManifest.xml",
package_type = "debug",
deps = [
":app-code",
],
)
|
0 | capitalone_repos/react-native-pathjs-charts/example/android | capitalone_repos/react-native-pathjs-charts/example/android/app/proguard-rules.pro | # Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Disabling obfuscation is useful if you collect stack traces from production crashes
# (unless you are using a system that supports de-obfuscate the stack traces).
-dontobfuscate
# React Native
# Keep our interfaces so they can be used by other ProGuard rules.
# See http://sourceforge.net/p/proguard/bugs/466/
-keep,allowobfuscation @interface com.facebook.proguard.annotations.DoNotStrip
-keep,allowobfuscation @interface com.facebook.proguard.annotations.KeepGettersAndSetters
-keep,allowobfuscation @interface com.facebook.common.internal.DoNotStrip
# Do not strip any method/class that is annotated with @DoNotStrip
-keep @com.facebook.proguard.annotations.DoNotStrip class *
-keep @com.facebook.common.internal.DoNotStrip class *
-keepclassmembers class * {
@com.facebook.proguard.annotations.DoNotStrip *;
@com.facebook.common.internal.DoNotStrip *;
}
-keepclassmembers @com.facebook.proguard.annotations.KeepGettersAndSetters class * {
void set*(***);
*** get*();
}
-keep class * extends com.facebook.react.bridge.JavaScriptModule { *; }
-keep class * extends com.facebook.react.bridge.NativeModule { *; }
-keepclassmembers,includedescriptorclasses class * { native <methods>; }
-keepclassmembers class * { @com.facebook.react.uimanager.UIProp <fields>; }
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactProp <methods>; }
-keepclassmembers class * { @com.facebook.react.uimanager.annotations.ReactPropGroup <methods>; }
-dontwarn com.facebook.react.**
# TextLayoutBuilder uses a non-public Android constructor within StaticLayout.
# See libs/proxy/src/main/java/com/facebook/fbui/textlayoutbuilder/proxy for details.
-dontwarn android.text.StaticLayout
# okhttp
-keepattributes Signature
-keepattributes *Annotation*
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-dontwarn okhttp3.**
# okio
-keep class sun.misc.Unsafe { *; }
-dontwarn java.nio.file.*
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
-dontwarn okio.**
|
0 | capitalone_repos/react-native-pathjs-charts/example/android | capitalone_repos/react-native-pathjs-charts/example/android/app/build.gradle | apply plugin: "com.android.application"
import com.android.build.OutputFile
/**
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
* and bundleReleaseJsAndAssets).
* These basically call `react-native bundle` with the correct arguments during the Android build
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
* bundle directly from the development server. Below you can see all the possible configurations
* and their defaults. If you decide to add a configuration block, make sure to add it before the
* `apply from: "../../node_modules/react-native/react.gradle"` line.
*
* project.ext.react = [
* // the name of the generated asset file containing your JS bundle
* bundleAssetName: "index.android.bundle",
*
* // the entry file for bundle generation
* entryFile: "index.android.js",
*
* // whether to bundle JS and assets in debug mode
* bundleInDebug: false,
*
* // whether to bundle JS and assets in release mode
* bundleInRelease: true,
*
* // whether to bundle JS and assets in another build variant (if configured).
* // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
* // The configuration property can be in the following formats
* // 'bundleIn${productFlavor}${buildType}'
* // 'bundleIn${buildType}'
* // bundleInFreeDebug: true,
* // bundleInPaidRelease: true,
* // bundleInBeta: true,
*
* // whether to disable dev mode in custom build variants (by default only disabled in release)
* // for example: to disable dev mode in the staging build type (if configured)
* devDisabledInStaging: true,
* // The configuration property can be in the following formats
* // 'devDisabledIn${productFlavor}${buildType}'
* // 'devDisabledIn${buildType}'
*
* // the root of your project, i.e. where "package.json" lives
* root: "../../",
*
* // where to put the JS bundle asset in debug mode
* jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
*
* // where to put the JS bundle asset in release mode
* jsBundleDirRelease: "$buildDir/intermediates/assets/release",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in debug mode
* resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
*
* // where to put drawable resources / React Native assets, e.g. the ones you use via
* // require('./image.png')), in release mode
* resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
*
* // by default the gradle tasks are skipped if none of the JS files or assets change; this means
* // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
* // for example, you might want to remove it from here.
* inputExcludes: ["android/**", "ios/**"],
*
* // override which node gets called and with what additional arguments
* nodeExecutableAndArgs: ["node"],
*
* // supply additional arguments to the packager
* extraPackagerArgs: []
* ]
*/
project.ext.react = [
entryFile: "index.android.js"
]
apply from: "../../node_modules/react-native/react.gradle"
/**
* Set this to true to create two separate APKs instead of one:
* - An APK that only works on ARM devices
* - An APK that only works on x86 devices
* The advantage is the size of the APK is reduced by about 4MB.
* Upload all the APKs to the Play Store and people will download
* the correct one based on the CPU architecture of their device.
*/
def enableSeparateBuildPerCPUArchitecture = false
/**
* Run Proguard to shrink the Java bytecode in release builds.
*/
def enableProguardInReleaseBuilds = false
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86"
}
}
buildTypes {
release {
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
// applicationVariants are e.g. debug, release
applicationVariants.all { variant ->
variant.outputs.each { output ->
// For each separate APK per architecture, set a unique version code as described here:
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
def versionCodes = ["armeabi-v7a":1, "x86":2]
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
}
}
}
}
dependencies {
compile project(':react-native-svg')
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:+" // From node_modules
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
into 'libs'
}
|
0 | capitalone_repos/react-native-pathjs-charts/example/android/app/src | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/AndroidManifest.xml | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="22" />
<application
android:name=".MainApplication"
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest>
|
0 | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/java/com | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/java/com/example/MainActivity.java | package com.example;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "example";
}
}
|
0 | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/java/com | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/java/com/example/MainApplication.java | package com.example;
import android.app.Application;
import com.facebook.react.ReactApplication;
import com.horcrux.svg.SvgPackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;
import java.util.Arrays;
import java.util.List;
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new SvgPackage()
);
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
@Override
public void onCreate() {
super.onCreate();
SoLoader.init(this, /* native exopackage */ false);
}
}
|
0 | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/res | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/res/values/strings.xml | <resources>
<string name="app_name">example</string>
</resources>
|
0 | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/res | capitalone_repos/react-native-pathjs-charts/example/android/app/src/main/res/values/styles.xml | <resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
|
0 | capitalone_repos/react-native-pathjs-charts/example/android | capitalone_repos/react-native-pathjs-charts/example/android/keystores/BUCK | keystore(
name = "debug",
properties = "debug.keystore.properties",
store = "debug.keystore",
visibility = [
"PUBLIC",
],
)
|
0 | capitalone_repos/react-native-pathjs-charts/example/android | capitalone_repos/react-native-pathjs-charts/example/android/keystores/debug.keystore.properties | key.store=debug.keystore
key.alias=androiddebugkey
key.store.password=android
key.alias.password=android
|
0 | capitalone_repos/react-native-pathjs-charts/example | capitalone_repos/react-native-pathjs-charts/example/src/Home.js | /*
Copyright 2016 Capital One Services, LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
SPDX-Copyright: Copyright (c) Capital One Services, LLC
SPDX-License-Identifier: Apache-2.0
*/
'use strict'
import React, { Component } from 'react';
import { Text, View } from 'react-native'
class Home extends Component {
render() {
return (
<View>
<Text>Swipe from left to view menu of examples</Text>
</View>
);
}
}
export default Home;
|
0 | capitalone_repos/react-native-pathjs-charts/example | capitalone_repos/react-native-pathjs-charts/example/src/App.js | /*
Copyright 2016 Capital One Services, LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
SPDX-Copyright: Copyright (c) Capital One Services, LLC
SPDX-License-Identifier: Apache-2.0
*/
'use strict'
import React, { Component } from 'react';
import { AppRegistry, Text, StyleSheet, View, Button } from 'react-native'
import { StackNavigator} from 'react-navigation';
import SideMenu from 'react-native-side-menu'
import BarChartColumnBasic from './bar/BarChartColumnBasic'
import PieChartBasic from './pie/PieChartBasic'
import PieChartBasicAnimation from './pie/PieChartBasicAnimation'
import StockLineChartBasic from './stockline/StockLineChartBasic'
import StockLineChartStaticTickLabels from './stockline/StockLineChartStaticTickLabels'
import StockLineChartDynamicTickLabels from './stockline/StockLineChartDynamicTickLabels'
import StockLineChartDynamicLineRendering from './stockline/StockLineChartDynamicLineRendering'
import StockLineChartGesture from './stockline/StockLineChartGesture'
import SmoothLineChartBasic from './smoothline/SmoothLineChartBasic'
import SmoothLineChartRegions from './smoothline/SmoothLineChartRegions'
import SmoothLineChartRegionsExtended from './smoothline/SmoothLineChartRegionsExtended'
import ScatterplotChartBasic from './scatterplot/ScatterplotChartBasic'
import RadarChartBasic from './radar/RadarChartBasic'
import TreeChartBasic from './tree/TreeChartBasic'
import Home from './Home'
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#f7f7f7',
},
});
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'RNPC Example App',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Button
style={styles.container}
onPress={() => navigate('BarChartColumnBasic')}
title="Bar (Column) - Basic"
/>
<Button
onPress={() => navigate('PieChartBasic')}
title="Pie - Basic"
/>
<Button
onPress={() => navigate('PieChartBasicAnimation')}
title="Pie - Basic Animation"
/>
<Button
onPress={() => navigate('StockLineChartBasic')}
title="StockLine - Basic"
/>
<Button
onPress={() => navigate('StockLineChartStaticTickLabels')}
title="StockLine - Static Labels"
/>
<Button
onPress={() => navigate('StockLineChartDynamicTickLabels')}
title="StockLine - Dynamic Labels"
/>
<Button
onPress={() => navigate('StockLineChartDynamicLineRendering')}
title="StockLine - Dynamic Line Rendering"
/>
<Button
onPress={() => navigate('StockLineChartGesture')}
title="StockLine - Gesture"
/>
<Button
onPress={() => navigate('SmoothLineChartBasic')}
title="SmoothLine - Basic"
/>
<Button
onPress={() => navigate('SmoothLineChartRegions')}
title="SmoothLine - Regions"
/>
<Button
onPress={() => navigate('SmoothLineChartRegionsExtended')}
title="SmoothLine - Regions Extended"
/>
<Button
onPress={() => navigate('ScatterplotChartBasic')}
title="Scatterplot - Basic"
/>
<Button
onPress={() => navigate('RadarChartBasic')}
title="Radar - Basic"
/>
<Button
onPress={() => navigate('TreeChartBasic')}
title="Tree - Basic"
/>
</View>
);
}
}
const App = StackNavigator({
Home: { screen: HomeScreen },
BarChartColumnBasic: { screen: BarChartColumnBasic },
PieChartBasic: { screen: PieChartBasic },
PieChartBasicAnimation: { screen: PieChartBasicAnimation },
StockLineChartBasic: { screen: StockLineChartBasic },
StockLineChartStaticTickLabels: { screen: StockLineChartStaticTickLabels },
StockLineChartDynamicTickLabels: { screen: StockLineChartDynamicTickLabels },
StockLineChartDynamicLineRendering: { screen: StockLineChartDynamicLineRendering },
StockLineChartGesture: { screen: StockLineChartGesture },
SmoothLineChartBasic: { screen: SmoothLineChartBasic },
SmoothLineChartRegions: { screen: SmoothLineChartRegions },
SmoothLineChartRegionsExtended: { screen: SmoothLineChartRegionsExtended },
ScatterplotChartBasic: { screen: ScatterplotChartBasic },
RadarChartBasic: { screen: RadarChartBasic },
TreeChartBasic: { screen: TreeChartBasic },
});
AppRegistry.registerComponent('App', () => App);
export default App;
|
0 | capitalone_repos/react-native-pathjs-charts/example | capitalone_repos/react-native-pathjs-charts/example/src/Menu.js | /*
Copyright 2016 Capital One Services, LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
SPDX-Copyright: Copyright (c) Capital One Services, LLC
SPDX-License-Identifier: Apache-2.0
*/
'use strict'
import React, { Component } from 'react';
import {
Dimensions,
StyleSheet,
ScrollView,
View,
Image,
Text,
} from 'react-native';
const window = Dimensions.get('window');
const styles = StyleSheet.create({
menu: {
flex: 1,
width: window.width,
height: window.height,
backgroundColor: '#e7e7e7',
padding: 20,
paddingTop: 40,
},
group: {
borderTopWidth: 1,
borderTopColor: '#ccc',
paddingTop: 5,
marginTop: 10,
},
item: {
fontSize: 14,
fontWeight: '300',
paddingTop: 5,
},
subitem: {
fontSize: 12,
fontWeight: '300',
paddingTop: 5,
paddingLeft: 20,
},
});
class Menu extends Component {
static propTypes = {
onItemSelected: React.PropTypes.func.isRequired,
};
render() {
return (
<ScrollView scrollsToTop={false} style={styles.menu}>
<Text
onPress={() => this.props.onItemSelected('Home')}
style={styles.item}>
Home
</Text>
{/*Start Bar Charts*/}
<View style={styles.group}>
<Text style={styles.item}>
Bar Charts
</Text>
<Text
onPress={() => this.props.onItemSelected('BarChartColumnBasic')}
style={styles.subitem}>
Basic Column
</Text>
</View>
{/*End Bar Charts*/}
{/*Start Pie Charts*/}
<View style={styles.group}>
<Text style={styles.item}>
Pie Charts
</Text>
<Text
onPress={() => this.props.onItemSelected('PieChartBasic')}
style={styles.subitem}>
Basic Pie
</Text>
</View>
{/*End Pie Charts*/}
{/*Start StockLine Charts*/}
<View style={styles.group}>
<Text style={styles.item}>
StockLine Charts
</Text>
<Text
onPress={() => this.props.onItemSelected('StockLineChartBasic')}
style={styles.subitem}>
Basic StockLine
</Text>
<Text
onPress={() => this.props.onItemSelected('StockLineChartStaticTickLabels')}
style={styles.subitem}>
StockLine w/Static Tick Labels
</Text>
<Text
onPress={() => this.props.onItemSelected('StockLineChartDynamicTickLabels')}
style={styles.subitem}>
StockLine w/Dynamic Tick Labels
</Text>
<Text
onPress={() => this.props.onItemSelected('StockLineChartDynamicLineRendering')}
style={styles.subitem}>
StockLine w/Dynamic Line Rendering
</Text>
</View>
{/*End StockLine Charts*/}
{/*Start SmoothLine Charts*/}
<View style={styles.group}>
<Text style={styles.item}>
SmoothLine Charts
</Text>
<Text
onPress={() => this.props.onItemSelected('SmoothLineChartBasic')}
style={styles.subitem}>
Basic SmoothLine
</Text>
<Text
onPress={() => this.props.onItemSelected('SmoothLineChartRegions')}
style={styles.subitem}>
SmoothLine w/Region Bands
</Text>
<Text
onPress={() => this.props.onItemSelected('SmoothLineChartRegionsExtended')}
style={styles.subitem}>
Extended SmoothLine w/Region Bands
</Text>
</View>
{/*End SmoothLine Charts*/}
{/*Start Scatterplot Charts*/}
<View style={styles.group}>
<Text style={styles.item}>
Scatterplot Charts
</Text>
<Text
onPress={() => this.props.onItemSelected('ScatterplotChartBasic')}
style={styles.subitem}>
Basic Scatterplot
</Text>
</View>
{/*End Scatterplot Charts*/}
{/*Start Radar Charts*/}
<View style={styles.group}>
<Text style={styles.item}>
Radar Charts
</Text>
<Text
onPress={() => this.props.onItemSelected('RadarChartBasic')}
style={styles.subitem}>
Basic Radar
</Text>
</View>
{/*End Radar Charts*/}
{/*Start Tree Charts*/}
<View style={styles.group}>
<Text style={styles.item}>
Tree Charts
</Text>
<Text
onPress={() => this.props.onItemSelected('TreeChartBasic')}
style={styles.subitem}>
Basic Tree
</Text>
</View>
{/*End Tree Charts*/}
</ScrollView>
);
}
}
export default Menu;
|