diff --git a/README.md b/README.md
index 8616c98..ddeef61 100644
--- a/README.md
+++ b/README.md
@@ -3,11 +3,12 @@
- [x] 适配华为官方推送通道
- [x] 适配小米官方推送通道
- [x] 适配魅族官方推送通道
-- [ ] 升级信鸽iOS SDK 到 v3.1.0
+- [x] 升级信鸽iOS SDK 到 v3.1.0
## 版本对照表
react-native-xinge-push | 信鸽SDK(Android) | 信鸽SDK(iOS)
---|---|---
+0.6 | 3.2.2 | 3.1.1
0.4~0.5 | 3.2.2 | 2.5.0
0.3 | 3.1.0 | 2.5.0
@@ -88,13 +89,26 @@ AppDelegate.m:
return YES;
}
+// Required to register for notifications
+- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
+{
+ [XGPushManager didRegisterUserNotificationSettings:notificationSettings];
+}
+
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
- NSLog(@"[XGDemo] device token is %@", [[XGPushTokenManager defaultTokenManager] deviceTokenString]);
+ [XGPushManager didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
}
+// Required for the registrationError event.
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
- NSLog(@"[XGDemo] register APNS fail.\n[XGDemo] reason : %@", error);
- [[NSNotificationCenter defaultCenter] postNotificationName:@"registerDeviceFailed" object:nil];
+ NSLog(@"[XGPush] register APNS fail.\n[XGPush] reason : %@", error);
+ [XGPushManager didFailToRegisterForRemoteNotificationsWithError:error];
+}
+
+// Required for the localNotification event.
+- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
+{
+ [XGPushManager didReceiveLocalNotification:notification];
}
/**
@@ -105,8 +119,8 @@ AppDelegate.m:
@param completionHandler 完成回调
*/
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
- NSLog(@"[XGDemo] receive slient Notification");
- NSLog(@"[XGDemo] userinfo %@", userInfo);
+ NSLog(@"[XGPush] receive slient Notification");
+ NSLog(@"[XGPush] userinfo %@", userInfo);
UIApplicationState state = [application applicationState];
BOOL isClicked = (state != UIApplicationStateActive);
NSMutableDictionary *remoteNotification = [NSMutableDictionary dictionaryWithDictionary:userInfo];
@@ -115,7 +129,7 @@ AppDelegate.m:
remoteNotification[@"background"] = @YES;
}
[[XGPush defaultManager] reportXGNotificationInfo:remoteNotification];
- completionHandler(UIBackgroundFetchResultNewData);
+ [XGPushManager didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
}
// iOS 10 新增 API
@@ -126,7 +140,7 @@ AppDelegate.m:
// App 用户在通知中心清除消息
// 无论本地推送还是远程推送都会走这个回调
- (void)xgPushUserNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
- NSLog(@"[XGDemo] click notification");
+ NSLog(@"[XGPush] click notification");
if ([response.actionIdentifier isEqualToString:@"xgaction001"]) {
NSLog(@"click from Action1");
} else if ([response.actionIdentifier isEqualToString:@"xgaction002"]) {
diff --git a/android/build.gradle b/android/build.gradle
index 08aaa9c..18a55d7 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 26
- buildToolsVersion '26.0.3'
+ buildToolsVersion '27.0.3'
defaultConfig {
minSdkVersion 16
@@ -31,10 +31,10 @@ dependencies {
testCompile 'junit:junit:4.12'
compile "com.facebook.react:react-native:+"
compile "me.leolin:ShortcutBadger:1.1.21@aar"
- compile 'com.tencent.xinge:xinge:3.2.2-release'
+ compile 'com.tencent.xinge:xinge:3.2.4-beta'
compile 'com.tencent.wup:wup:1.0.0.E-release'
compile 'com.tencent.mid:mid:4.0.6-release'
- compile 'com.tencent.xinge:xghw:2.5.2.300-release'
- compile 'com.tencent.xinge:mipush:3.2.2-release'
- compile 'com.tencent.xinge:xgmz:3.2.2-release'
+ compile 'com.tencent.xinge:xghw:3.2.4-beta'
+ compile 'com.tencent.xinge:mipush:3.2.4-beta'
+ compile 'com.tencent.xinge:xgmz:3.2.4-beta'
}
diff --git a/android/src/main/AndroidManifest.xml b/android/src/main/AndroidManifest.xml
index d70a5fd..557aa4b 100644
--- a/android/src/main/AndroidManifest.xml
+++ b/android/src/main/AndroidManifest.xml
@@ -14,7 +14,7 @@
-
+
@@ -28,7 +28,7 @@
+ android:name="com.tencent.android.mipush.XMPushMessageReceiver">
@@ -39,7 +39,7 @@
-
+
diff --git a/android/src/main/java/com/jeepeng/react/xgpush/PushModule.java b/android/src/main/java/com/jeepeng/react/xgpush/PushModule.java
index 6b4621d..776a0e2 100644
--- a/android/src/main/java/com/jeepeng/react/xgpush/PushModule.java
+++ b/android/src/main/java/com/jeepeng/react/xgpush/PushModule.java
@@ -20,6 +20,7 @@
import com.facebook.react.modules.core.DeviceEventManagerModule;
import com.tencent.android.tpush.XGIOperateCallback;
import com.tencent.android.tpush.XGLocalMessage;
+import com.tencent.android.tpush.XGPushClickedResult;
import com.tencent.android.tpush.XGPushConfig;
import com.tencent.android.tpush.XGPushManager;
import com.tencent.android.tpush.encrypt.Rijndael;
@@ -371,8 +372,13 @@ public void initMeizu(String appId, String appKey) {
public void getInitialNotification(Promise promise) {
WritableMap params = Arguments.createMap();
Activity activity = getCurrentActivity();
+ Log.d("getInitialNotification", ">>>>>>>>>>>>>>>>>");
if (activity != null) {
Intent intent = activity.getIntent();
+ XGPushClickedResult result = XGPushManager.onActivityStarted(activity);
+ if (result != null) {
+ Log.d("getInitialNotification", result.getContent());
+ }
try {
if(intent != null && intent.hasExtra("protect")) {
String title = Rijndael.decrypt(intent.getStringExtra("title"));
@@ -381,6 +387,7 @@ public void getInitialNotification(Promise promise) {
params.putString("title", title);
params.putString("content", content);
params.putString("custom_content", customContent);
+ Log.d("getInitialNotification", content);
}
} catch (Exception e) {
e.printStackTrace();
@@ -422,11 +429,10 @@ public void onActivityResult(Activity activity, int requestCode, int resultCode,
@Override
public void onNewIntent(Intent intent) {
- /*
+ Log.d("onNewIntent", ">>>>>>>>>>>>>>>>>");
Activity activity = getCurrentActivity();
if (activity != null) {
activity.setIntent(intent); // 后台运行时点击通知会调用
}
- */
}
}
diff --git a/android/src/main/java/com/jeepeng/react/xgpush/receiver/HWMessageReceiver.java b/android/src/main/java/com/jeepeng/react/xgpush/receiver/HWMessageReceiver.java
index c7a7e94..e5baf11 100644
--- a/android/src/main/java/com/jeepeng/react/xgpush/receiver/HWMessageReceiver.java
+++ b/android/src/main/java/com/jeepeng/react/xgpush/receiver/HWMessageReceiver.java
@@ -1,101 +1,11 @@
package com.jeepeng.react.xgpush.receiver;
-import android.app.NotificationManager;
-import android.content.Context;
-import android.content.Intent;
-import android.os.Bundle;
-import android.os.Environment;
-import android.util.Log;
-
-import com.huawei.hms.support.api.push.PushReceiver;
-import com.jeepeng.react.xgpush.Constants;
-
-import java.io.FileWriter;
-import java.io.IOException;
+import com.tencent.android.hwpush.HWPushMessageReceiver;
/**
* 华为官方推送通道消息接收器
* Created by Jeepeng on 2018/3/11.
*/
-public class HWMessageReceiver extends PushReceiver {
-
- @Override
- public void onEvent(Context context, Event event, Bundle extras) {
- if (Event.NOTIFICATION_OPENED.equals(event) || Event.NOTIFICATION_CLICK_BTN.equals(event)) {
- int notifyId = extras.getInt(BOUND_KEY.pushNotifyId, 0);
- if (0 != notifyId) {
- NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
- manager.cancel(notifyId);
- }
- }
-
- String message = extras.getString(BOUND_KEY.pushMsgKey);
- String deviceToken = extras.getString(BOUND_KEY.deviceTokenKey);
- int receiveType = extras.getInt(BOUND_KEY.receiveTypeKey);
- String pushState = extras.getString(BOUND_KEY.pushStateKey);
- int pushNotifyId = extras.getInt(BOUND_KEY.pushNotifyId, 0);
- // message:[{"id":"123456"}]
- // Bundle[{receiveType=4, pushMsg=[{"id":"1"},{"name":"jeepeng"},{"sex":"man"}]}]
-
- if (Event.NOTIFICATION_OPENED.equals(event)) {
- // 通知在通知栏被点击啦。。。。。
- Intent intent = new Intent(Constants.ACTION_ON_NOTIFICATION_CLICKED);
- Bundle bundle = new Bundle();
- bundle.putString("content", message);
- intent.putExtra("notification", bundle);
-
- intent.putExtra("content", message);
- intent.putExtra("custom_content", message);
- context.sendBroadcast(intent);
- }
-
- super.onEvent(context, event, extras);
- }
-
- @Override
- public boolean onPushMsg(Context context, byte[] msg, Bundle bundle) {
- try {
- String content = new String(msg, "UTF-8");
- Intent intent = new Intent(Constants.ACTION_ON_TEXT_MESSAGE);
- intent.putExtra("content", content);
- context.sendBroadcast(intent);
- System.out.println(bundle);
- Log.i("HWMessageReceiver", "收到PUSH透传消息,消息内容为:" + content);
- } catch (Exception e) {
- e.printStackTrace();
- }
- return super.onPushMsg(context, msg, bundle);
- }
-
- @Override
- public void onPushState(Context context, boolean pushState) {
- super.onPushState(context, pushState);
- }
-
- @Override
- public void onToken(Context context, String token, Bundle extras) {
- super.onToken(context, token, extras);
- }
-
- @Override
- public void onToken(Context context, String token) {
- super.onToken(context, token);
- }
-
- private void writeToFile(String conrent) {
- String SDPATH = Environment.getExternalStorageDirectory() + "/huawei.txt";
- try {
- FileWriter fileWriter = new FileWriter(SDPATH, true);
-
- fileWriter.write(conrent+"\r\n");
- fileWriter.flush();
- fileWriter.close();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
-
-
+public class HWMessageReceiver extends HWPushMessageReceiver {
}
\ No newline at end of file
diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle
index c39462b..20e712c 100644
--- a/example/android/app/build.gradle
+++ b/example/android/app/build.gradle
@@ -94,15 +94,15 @@ def enableSeparateBuildPerCPUArchitecture = false
def enableProguardInReleaseBuilds = false
android {
- compileSdkVersion 25
- buildToolsVersion '26.0.3'
+ compileSdkVersion 26
+ buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.jeepeng.push"
minSdkVersion 16
- targetSdkVersion 25
+ targetSdkVersion 26
versionCode 3
- versionName "1.0"
+ versionName "1.0.1"
ndk {
abiFilters "armeabi-v7a", "x86"
}
@@ -110,6 +110,7 @@ android {
XG_ACCESS_ID: "2100209996",
XG_ACCESS_KEY: "AHW931HVZ42A",
HW_APPID: "100225811",
+ PACKAGE_NAME: "com.jeepeng.push"
]
}
splits {
@@ -144,7 +145,7 @@ android {
dependencies {
compile project(':react-native-xinge-push')
compile fileTree(dir: "libs", include: ["*.jar"])
- compile "com.android.support:appcompat-v7:25.4.0"
+ compile "com.android.support:appcompat-v7:26.1.0"
compile "com.facebook.react:react-native:+" // From node_modules
}
diff --git a/example/android/build.gradle b/example/android/build.gradle
index 304b7c7..1fc4b05 100644
--- a/example/android/build.gradle
+++ b/example/android/build.gradle
@@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.0.1'
+ classpath 'com.android.tools.build:gradle:3.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
diff --git a/example/android/gradle/wrapper/gradle-wrapper.properties b/example/android/gradle/wrapper/gradle-wrapper.properties
index ced3c64..df95592 100644
--- a/example/android/gradle/wrapper/gradle-wrapper.properties
+++ b/example/android/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
-#Wed Jan 17 12:01:37 CST 2018
+#Tue Mar 27 17:51:16 CST 2018
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
diff --git a/example/ios/example/AppDelegate.m b/example/ios/example/AppDelegate.m
index 9f7b0f4..3b7e834 100644
--- a/example/ios/example/AppDelegate.m
+++ b/example/ios/example/AppDelegate.m
@@ -38,13 +38,26 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
return YES;
}
+// Required to register for notifications
+- (void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings
+{
+ [XGPushManager didRegisterUserNotificationSettings:notificationSettings];
+}
+
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken {
- NSLog(@"[XGDemo] device token is %@", [[XGPushTokenManager defaultTokenManager] deviceTokenString]);
+ [XGPushManager didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
}
+// Required for the registrationError event.
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error {
- NSLog(@"[XGDemo] register APNS fail.\n[XGDemo] reason : %@", error);
- [[NSNotificationCenter defaultCenter] postNotificationName:@"registerDeviceFailed" object:nil];
+ NSLog(@"[XGPush] register APNS fail.\n[XGPush] reason : %@", error);
+ [XGPushManager didFailToRegisterForRemoteNotificationsWithError:error];
+}
+
+// Required for the localNotification event.
+- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
+{
+ [XGPushManager didReceiveLocalNotification:notification];
}
/**
@@ -55,8 +68,8 @@ - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotif
@param completionHandler 完成回调
*/
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
- NSLog(@"[XGDemo] receive slient Notification");
- NSLog(@"[XGDemo] userinfo %@", userInfo);
+ NSLog(@"[XGPush] receive slient Notification");
+ NSLog(@"[XGPush] userinfo %@", userInfo);
UIApplicationState state = [application applicationState];
BOOL isClicked = (state != UIApplicationStateActive);
NSMutableDictionary *remoteNotification = [NSMutableDictionary dictionaryWithDictionary:userInfo];
@@ -65,7 +78,7 @@ - (void)application:(UIApplication *)application didReceiveRemoteNotification:(N
remoteNotification[@"background"] = @YES;
}
[[XGPush defaultManager] reportXGNotificationInfo:remoteNotification];
- completionHandler(UIBackgroundFetchResultNewData);
+ [XGPushManager didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler];
}
// iOS 10 新增 API
@@ -76,7 +89,7 @@ - (void)application:(UIApplication *)application didReceiveRemoteNotification:(N
// App 用户在通知中心清除消息
// 无论本地推送还是远程推送都会走这个回调
- (void)xgPushUserNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler {
- NSLog(@"[XGDemo] click notification");
+ NSLog(@"[XGPush] click notification");
if ([response.actionIdentifier isEqualToString:@"xgaction001"]) {
NSLog(@"click from Action1");
} else if ([response.actionIdentifier isEqualToString:@"xgaction002"]) {
diff --git a/example/package-lock.json b/example/package-lock.json
index 2053365..bfc4d80 100644
--- a/example/package-lock.json
+++ b/example/package-lock.json
@@ -20,7 +20,7 @@
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz",
"integrity": "sha1-5fHzkoxtlf2WVYw27D2dDeSm7Oo=",
"requires": {
- "mime-types": "https://r.cnpmjs.org/mime-types/download/mime-types-2.1.11.tgz",
+ "mime-types": "~2.1.6",
"negotiator": "0.5.3"
}
},
@@ -36,15 +36,15 @@
"integrity": "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=",
"dev": true,
"requires": {
- "acorn": "4.0.13"
+ "acorn": "^4.0.4"
}
},
"ajv": {
"version": "https://r.cnpmjs.org/ajv/download/ajv-4.11.8.tgz",
"integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=",
"requires": {
- "co": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "json-stable-stringify": "https://registry.cnpmjs.org/json-stable-stringify/download/json-stable-stringify-1.0.1.tgz"
+ "co": "^4.6.0",
+ "json-stable-stringify": "^1.0.1"
}
},
"align-text": {
@@ -53,9 +53,9 @@
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"dev": true,
"requires": {
- "kind-of": "https://r.cnpmjs.org/kind-of/download/kind-of-3.2.0.tgz",
- "longest": "1.0.1",
- "repeat-string": "https://registry.cnpmjs.org/repeat-string/download/repeat-string-1.6.1.tgz"
+ "kind-of": "^3.0.2",
+ "longest": "^1.0.1",
+ "repeat-string": "^1.5.2"
}
},
"amdefine": {
@@ -99,8 +99,8 @@
"version": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz",
"integrity": "sha1-o+Uvo5FoyCX/V7AkgSbOWo/5VQc=",
"requires": {
- "arrify": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
- "micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz"
+ "arrify": "^1.0.0",
+ "micromatch": "^2.1.5"
}
},
"append-transform": {
@@ -109,30 +109,35 @@
"integrity": "sha1-126/jKlNJ24keja61EpLdKthGZE=",
"dev": true,
"requires": {
- "default-require-extensions": "1.0.0"
+ "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="
+ },
"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=",
"requires": {
- "delegates": "1.0.0",
- "readable-stream": "2.3.3"
+ "delegates": "^1.0.0",
+ "readable-stream": "^2.0.6"
},
"dependencies": {
"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==",
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
"requires": {
- "core-util-is": "1.0.2",
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "isarray": "https://r.cnpmjs.org/isarray/download/isarray-1.0.0.tgz",
- "process-nextick-args": "1.0.7",
- "safe-buffer": "5.1.1",
- "string_decoder": "1.0.3",
- "util-deprecate": "1.0.2"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
"safe-buffer": {
@@ -141,11 +146,11 @@
"integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="
},
"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==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"requires": {
- "safe-buffer": "5.1.1"
+ "safe-buffer": "~5.1.0"
}
}
}
@@ -156,14 +161,14 @@
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
"dev": true,
"requires": {
- "sprintf-js": "1.0.3"
+ "sprintf-js": "~1.0.2"
}
},
"arr-diff": {
"version": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
"integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
"requires": {
- "arr-flatten": "https://r.cnpmjs.org/arr-flatten/download/arr-flatten-1.0.3.tgz"
+ "arr-flatten": "^1.0.1"
}
},
"arr-flatten": {
@@ -210,13 +215,14 @@
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
},
"art": {
- "version": "0.10.1",
- "resolved": "https://registry.npmjs.org/art/-/art-0.10.1.tgz",
- "integrity": "sha1-OFQYg+OZIlxeGT/yRujxV897IUY="
+ "version": "0.10.2",
+ "resolved": "https://registry.npmjs.org/art/-/art-0.10.2.tgz",
+ "integrity": "sha512-0F3cb+pWScVwrbAi3b/GINGTZ4DKMcaKqzBIt57whlpkgCiJXA0vXR9fdlcvCnA/UzWJYSAFEslRXZQDypiW6A=="
},
"asap": {
- "version": "https://registry.cnpmjs.org/asap/download/asap-2.0.5.tgz",
- "integrity": "sha1-UidltQw1EEkOUtfc/ghe+bqWlY8="
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
+ "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
},
"asn1": {
"version": "https://registry.cnpmjs.org/asn1/download/asn1-0.2.3.tgz",
@@ -236,7 +242,7 @@
"version": "https://r.cnpmjs.org/async/download/async-2.4.0.tgz",
"integrity": "sha1-SZAgDxjqW4N8LMT4wDGmmFw4VhE=",
"requires": {
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz"
+ "lodash": "^4.14.0"
}
},
"asynckit": {
@@ -255,34 +261,34 @@
"version": "https://r.cnpmjs.org/babel-code-frame/download/babel-code-frame-6.22.0.tgz",
"integrity": "sha1-AnYgvuVnqIwyVhV05/0IAdMxGOQ=",
"requires": {
- "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
- "esutils": "https://registry.cnpmjs.org/esutils/download/esutils-2.0.2.tgz",
- "js-tokens": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.1.tgz"
+ "chalk": "^1.1.0",
+ "esutils": "^2.0.2",
+ "js-tokens": "^3.0.0"
}
},
"babel-core": {
"version": "https://r.cnpmjs.org/babel-core/download/babel-core-6.24.1.tgz",
"integrity": "sha1-jEKFZNzh4fQfszfsNPTDsCK1rYM=",
"requires": {
- "babel-code-frame": "https://r.cnpmjs.org/babel-code-frame/download/babel-code-frame-6.22.0.tgz",
- "babel-generator": "https://r.cnpmjs.org/babel-generator/download/babel-generator-6.24.1.tgz",
- "babel-helpers": "https://r.cnpmjs.org/babel-helpers/download/babel-helpers-6.24.1.tgz",
- "babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "babel-register": "https://r.cnpmjs.org/babel-register/download/babel-register-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "babylon": "https://r.cnpmjs.org/babylon/download/babylon-6.17.0.tgz",
- "convert-source-map": "https://r.cnpmjs.org/convert-source-map/download/convert-source-map-1.5.0.tgz",
- "debug": "https://r.cnpmjs.org/debug/download/debug-2.6.6.tgz",
- "json5": "https://r.cnpmjs.org/json5/download/json5-0.5.1.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
- "path-is-absolute": "https://registry.cnpmjs.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz",
- "private": "https://registry.npmjs.org/private/-/private-0.1.7.tgz",
- "slash": "https://registry.cnpmjs.org/slash/download/slash-1.0.0.tgz",
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz"
+ "babel-code-frame": "^6.22.0",
+ "babel-generator": "^6.24.1",
+ "babel-helpers": "^6.24.1",
+ "babel-messages": "^6.23.0",
+ "babel-register": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1",
+ "babylon": "^6.11.0",
+ "convert-source-map": "^1.1.0",
+ "debug": "^2.1.1",
+ "json5": "^0.5.0",
+ "lodash": "^4.2.0",
+ "minimatch": "^3.0.2",
+ "path-is-absolute": "^1.0.0",
+ "private": "^0.1.6",
+ "slash": "^1.0.0",
+ "source-map": "^0.5.0"
},
"dependencies": {
"json5": {
@@ -295,14 +301,14 @@
"version": "https://r.cnpmjs.org/babel-generator/download/babel-generator-6.24.1.tgz",
"integrity": "sha1-5xX0hsWN7SVknYiJRNUqoHxdlJc=",
"requires": {
- "babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "detect-indent": "https://registry.cnpmjs.org/detect-indent/download/detect-indent-4.0.0.tgz",
- "jsesc": "https://registry.cnpmjs.org/jsesc/download/jsesc-1.3.0.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz",
- "trim-right": "https://r.cnpmjs.org/trim-right/download/trim-right-1.0.1.tgz"
+ "babel-messages": "^6.23.0",
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1",
+ "detect-indent": "^4.0.0",
+ "jsesc": "^1.3.0",
+ "lodash": "^4.2.0",
+ "source-map": "^0.5.0",
+ "trim-right": "^1.0.1"
}
},
"babel-helper-builder-binary-assignment-operator-visitor": {
@@ -310,38 +316,38 @@
"resolved": "https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz",
"integrity": "sha1-zORReto1b0IgvK6KAsKzRvmlZmQ=",
"requires": {
- "babel-helper-explode-assignable-expression": "6.24.1",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-explode-assignable-expression": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-builder-react-jsx": {
"version": "https://r.cnpmjs.org/babel-helper-builder-react-jsx/download/babel-helper-builder-react-jsx-6.24.1.tgz",
"integrity": "sha1-CteRfjPI11HmRtrKTnfMGTd9LLw=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "esutils": "https://registry.cnpmjs.org/esutils/download/esutils-2.0.2.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1",
+ "esutils": "^2.0.0"
}
},
"babel-helper-call-delegate": {
"version": "https://r.cnpmjs.org/babel-helper-call-delegate/download/babel-helper-call-delegate-6.24.1.tgz",
"integrity": "sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340=",
"requires": {
- "babel-helper-hoist-variables": "https://r.cnpmjs.org/babel-helper-hoist-variables/download/babel-helper-hoist-variables-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-hoist-variables": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-define-map": {
"version": "https://r.cnpmjs.org/babel-helper-define-map/download/babel-helper-define-map-6.24.1.tgz",
"integrity": "sha1-epdH8ljYlH0y1RX2qhx70CIEoIA=",
"requires": {
- "babel-helper-function-name": "https://r.cnpmjs.org/babel-helper-function-name/download/babel-helper-function-name-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz"
+ "babel-helper-function-name": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1",
+ "lodash": "^4.2.0"
}
},
"babel-helper-explode-assignable-expression": {
@@ -349,44 +355,44 @@
"resolved": "https://registry.npmjs.org/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz",
"integrity": "sha1-8luCz33BBDPFX3BZLVdGQArCLKo=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-function-name": {
"version": "https://r.cnpmjs.org/babel-helper-function-name/download/babel-helper-function-name-6.24.1.tgz",
"integrity": "sha1-00dbjAPtmCQqJbSDUasYOZ01gKk=",
"requires": {
- "babel-helper-get-function-arity": "https://r.cnpmjs.org/babel-helper-get-function-arity/download/babel-helper-get-function-arity-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-get-function-arity": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-get-function-arity": {
"version": "https://r.cnpmjs.org/babel-helper-get-function-arity/download/babel-helper-get-function-arity-6.24.1.tgz",
"integrity": "sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-hoist-variables": {
"version": "https://r.cnpmjs.org/babel-helper-hoist-variables/download/babel-helper-hoist-variables-6.24.1.tgz",
"integrity": "sha1-HssnaJydJVE+rbyZFKc/VAi+enY=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-optimise-call-expression": {
"version": "https://r.cnpmjs.org/babel-helper-optimise-call-expression/download/babel-helper-optimise-call-expression-6.24.1.tgz",
"integrity": "sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-regex": {
@@ -394,9 +400,9 @@
"resolved": "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz",
"integrity": "sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI=",
"requires": {
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz"
+ "babel-runtime": "^6.26.0",
+ "babel-types": "^6.26.0",
+ "lodash": "^4.17.4"
},
"dependencies": {
"babel-runtime": {
@@ -404,8 +410,8 @@
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"requires": {
- "core-js": "https://registry.cnpmjs.org/core-js/download/core-js-2.4.1.tgz",
- "regenerator-runtime": "0.11.1"
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
}
},
"babel-types": {
@@ -413,10 +419,10 @@
"resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
"requires": {
- "babel-runtime": "6.26.0",
- "esutils": "https://registry.cnpmjs.org/esutils/download/esutils-2.0.2.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "to-fast-properties": "https://r.cnpmjs.org/to-fast-properties/download/to-fast-properties-1.0.3.tgz"
+ "babel-runtime": "^6.26.0",
+ "esutils": "^2.0.2",
+ "lodash": "^4.17.4",
+ "to-fast-properties": "^1.0.3"
}
}
}
@@ -426,31 +432,31 @@
"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=",
"requires": {
- "babel-helper-function-name": "https://r.cnpmjs.org/babel-helper-function-name/download/babel-helper-function-name-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-function-name": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-helper-replace-supers": {
"version": "https://r.cnpmjs.org/babel-helper-replace-supers/download/babel-helper-replace-supers-6.24.1.tgz",
"integrity": "sha1-v22/5Dk40XNpohPKiov3S2qQqxo=",
"requires": {
- "babel-helper-optimise-call-expression": "https://r.cnpmjs.org/babel-helper-optimise-call-expression/download/babel-helper-optimise-call-expression-6.24.1.tgz",
- "babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-optimise-call-expression": "^6.24.1",
+ "babel-messages": "^6.23.0",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-helpers": {
"version": "https://r.cnpmjs.org/babel-helpers/download/babel-helpers-6.24.1.tgz",
"integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1"
}
},
"babel-jest": {
@@ -459,22 +465,22 @@
"integrity": "sha512-O0W2qLoWu1QOoOGgxiR2JID4O6WSpxPiQanrkyi9SSlM0PJ60Ptzlck47lhtnr9YZO3zYOsxHwnyeWJ6AffoBQ==",
"dev": true,
"requires": {
- "babel-plugin-istanbul": "4.1.5",
- "babel-preset-jest": "21.2.0"
+ "babel-plugin-istanbul": "^4.0.0",
+ "babel-preset-jest": "^21.2.0"
}
},
"babel-messages": {
"version": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-check-es2015-constants": {
"version": "https://r.cnpmjs.org/babel-plugin-check-es2015-constants/download/babel-plugin-check-es2015-constants-6.22.0.tgz",
"integrity": "sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-external-helpers": {
@@ -482,7 +488,7 @@
"resolved": "https://registry.npmjs.org/babel-plugin-external-helpers/-/babel-plugin-external-helpers-6.22.0.tgz",
"integrity": "sha1-IoX0iwK9Xe3oUXXK+MYuhq3M76E=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-istanbul": {
@@ -491,9 +497,9 @@
"integrity": "sha1-Z2DN2Xf0EdPhdbsGTyvDJ9mbK24=",
"dev": true,
"requires": {
- "find-up": "2.1.0",
- "istanbul-lib-instrument": "1.9.1",
- "test-exclude": "4.1.1"
+ "find-up": "^2.1.0",
+ "istanbul-lib-instrument": "^1.7.5",
+ "test-exclude": "^4.1.1"
}
},
"babel-plugin-jest-hoist": {
@@ -507,7 +513,7 @@
"resolved": "https://registry.npmjs.org/babel-plugin-react-transform/-/babel-plugin-react-transform-3.0.0.tgz",
"integrity": "sha512-4vJGddwPiHAOgshzZdGwYy4zRjjIr5SMY7gkOaCyIASjgpcsyLTlZNuB5rHOFoaTvGlhfo8/g4pobXPyHqm/3w==",
"requires": {
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz"
+ "lodash": "^4.6.1"
}
},
"babel-plugin-syntax-async-functions": {
@@ -549,26 +555,26 @@
"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=",
"requires": {
- "babel-helper-remap-async-to-generator": "6.24.1",
- "babel-plugin-syntax-async-functions": "https://registry.cnpmjs.org/babel-plugin-syntax-async-functions/download/babel-plugin-syntax-async-functions-6.13.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-helper-remap-async-to-generator": "^6.16.0",
+ "babel-plugin-syntax-async-functions": "^6.8.0",
+ "babel-runtime": "^6.0.0"
}
},
"babel-plugin-transform-class-properties": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-class-properties/download/babel-plugin-transform-class-properties-6.24.1.tgz",
"integrity": "sha1-anl2PqYdM9NvN7YRqp3vgagbRqw=",
"requires": {
- "babel-helper-function-name": "https://r.cnpmjs.org/babel-helper-function-name/download/babel-helper-function-name-6.24.1.tgz",
- "babel-plugin-syntax-class-properties": "https://registry.cnpmjs.org/babel-plugin-syntax-class-properties/download/babel-plugin-syntax-class-properties-6.13.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz"
+ "babel-helper-function-name": "^6.24.1",
+ "babel-plugin-syntax-class-properties": "^6.8.0",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1"
}
},
"babel-plugin-transform-es2015-arrow-functions": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-arrow-functions/download/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
"integrity": "sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-block-scoped-functions": {
@@ -576,81 +582,81 @@
"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=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-block-scoping": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-block-scoping/download/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz",
"integrity": "sha1-dsKV3DpHQbFmWt/TFnIV3P8ypXY=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1",
+ "lodash": "^4.2.0"
}
},
"babel-plugin-transform-es2015-classes": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-classes/download/babel-plugin-transform-es2015-classes-6.24.1.tgz",
"integrity": "sha1-WkxYpQyclGHlZLSyo7+ryXolhNs=",
"requires": {
- "babel-helper-define-map": "https://r.cnpmjs.org/babel-helper-define-map/download/babel-helper-define-map-6.24.1.tgz",
- "babel-helper-function-name": "https://r.cnpmjs.org/babel-helper-function-name/download/babel-helper-function-name-6.24.1.tgz",
- "babel-helper-optimise-call-expression": "https://r.cnpmjs.org/babel-helper-optimise-call-expression/download/babel-helper-optimise-call-expression-6.24.1.tgz",
- "babel-helper-replace-supers": "https://r.cnpmjs.org/babel-helper-replace-supers/download/babel-helper-replace-supers-6.24.1.tgz",
- "babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-define-map": "^6.24.1",
+ "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.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-computed-properties": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-computed-properties/download/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
"integrity": "sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1"
}
},
"babel-plugin-transform-es2015-destructuring": {
"version": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
"integrity": "sha1-mXux8auWf2gtKwh2/jWNYOdlxW0=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-for-of": {
"version": "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=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-function-name": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-function-name/download/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
"integrity": "sha1-g0yJhTvDaxrw86TF26qU/Y6sqos=",
"requires": {
- "babel-helper-function-name": "https://r.cnpmjs.org/babel-helper-function-name/download/babel-helper-function-name-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-function-name": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-literals": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-literals/download/babel-plugin-transform-es2015-literals-6.22.0.tgz",
"integrity": "sha1-T1SgLWzWbPkVKAAZox0xklN3yi4=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz",
"integrity": "sha1-0+MQtA72ZKNmIiAAl8bUQCmPK/4=",
"requires": {
- "babel-plugin-transform-strict-mode": "https://r.cnpmjs.org/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-plugin-transform-strict-mode": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-object-super": {
@@ -658,35 +664,35 @@
"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=",
"requires": {
- "babel-helper-replace-supers": "https://r.cnpmjs.org/babel-helper-replace-supers/download/babel-helper-replace-supers-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-helper-replace-supers": "^6.24.1",
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-parameters": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-parameters/download/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
"integrity": "sha1-V6w1GrScrxSpfNE7CfZv3wpiXys=",
"requires": {
- "babel-helper-call-delegate": "https://r.cnpmjs.org/babel-helper-call-delegate/download/babel-helper-call-delegate-6.24.1.tgz",
- "babel-helper-get-function-arity": "https://r.cnpmjs.org/babel-helper-get-function-arity/download/babel-helper-get-function-arity-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-call-delegate": "^6.24.1",
+ "babel-helper-get-function-arity": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-template": "^6.24.1",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-shorthand-properties": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-shorthand-properties/download/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
"integrity": "sha1-JPh11nIch2YbvZmkYi5R8U3jiqA=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-spread": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-spread/download/babel-plugin-transform-es2015-spread-6.22.0.tgz",
"integrity": "sha1-1taKmfia7cRTbIGlQujdnxdG+NE=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-sticky-regex": {
@@ -694,16 +700,16 @@
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz",
"integrity": "sha1-AMHNsaynERLN8M9hJsLta0V8zbw=",
"requires": {
- "babel-helper-regex": "6.26.0",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-helper-regex": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-plugin-transform-es2015-template-literals": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-es2015-template-literals/download/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
"integrity": "sha1-qEs0UPfp+PH2g51taH2oS7EjbY0=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es2015-unicode-regex": {
@@ -711,9 +717,9 @@
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz",
"integrity": "sha1-04sS9C6nMj9yk4fxinxa4frrNek=",
"requires": {
- "babel-helper-regex": "6.26.0",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "regexpu-core": "2.0.0"
+ "babel-helper-regex": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "regexpu-core": "^2.0.0"
}
},
"babel-plugin-transform-es3-member-expression-literals": {
@@ -721,7 +727,7 @@
"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=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-es3-property-literals": {
@@ -729,7 +735,7 @@
"resolved": "https://registry.npmjs.org/babel-plugin-transform-es3-property-literals/-/babel-plugin-transform-es3-property-literals-6.22.0.tgz",
"integrity": "sha1-sgeNWELiKr9A9z6M3pzTcRq9V1g=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-exponentiation-operator": {
@@ -737,71 +743,71 @@
"resolved": "https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz",
"integrity": "sha1-KrDJx/MJj6SJB3cruBP+QejeOg4=",
"requires": {
- "babel-helper-builder-binary-assignment-operator-visitor": "6.24.1",
- "babel-plugin-syntax-exponentiation-operator": "6.13.0",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-helper-builder-binary-assignment-operator-visitor": "^6.24.1",
+ "babel-plugin-syntax-exponentiation-operator": "^6.8.0",
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-flow-strip-types": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-flow-strip-types/download/babel-plugin-transform-flow-strip-types-6.22.0.tgz",
"integrity": "sha1-hMtnKTXUNxT9wyvOhFaNh0Qc988=",
"requires": {
- "babel-plugin-syntax-flow": "https://registry.cnpmjs.org/babel-plugin-syntax-flow/download/babel-plugin-syntax-flow-6.18.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-plugin-syntax-flow": "^6.18.0",
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-object-assign": {
"version": "https://registry.npmjs.org/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz",
"integrity": "sha1-+Z0vZvGgsNSY40bFNZaEdAyqILo=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-object-rest-spread": {
"version": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz",
"integrity": "sha1-h11ryb52HFiirj/u5dxIldjH+SE=",
"requires": {
- "babel-plugin-syntax-object-rest-spread": "https://registry.cnpmjs.org/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-plugin-syntax-object-rest-spread": "^6.8.0",
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-react-display-name": {
"version": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz",
"integrity": "sha1-Q5iRDDWEQdxM7xh4cmTQQS7Tazc=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-react-jsx": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-react-jsx/download/babel-plugin-transform-react-jsx-6.24.1.tgz",
"integrity": "sha1-hAoCjn30YN/DotKfDA2R9jduZqM=",
"requires": {
- "babel-helper-builder-react-jsx": "https://r.cnpmjs.org/babel-helper-builder-react-jsx/download/babel-helper-builder-react-jsx-6.24.1.tgz",
- "babel-plugin-syntax-jsx": "https://registry.cnpmjs.org/babel-plugin-syntax-jsx/download/babel-plugin-syntax-jsx-6.18.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-helper-builder-react-jsx": "^6.24.1",
+ "babel-plugin-syntax-jsx": "^6.8.0",
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-react-jsx-source": {
"version": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz",
"integrity": "sha1-ZqwSFT9c0tF7PBkmj0vwGX9E7NY=",
"requires": {
- "babel-plugin-syntax-jsx": "https://registry.cnpmjs.org/babel-plugin-syntax-jsx/download/babel-plugin-syntax-jsx-6.18.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz"
+ "babel-plugin-syntax-jsx": "^6.8.0",
+ "babel-runtime": "^6.22.0"
}
},
"babel-plugin-transform-regenerator": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-regenerator/download/babel-plugin-transform-regenerator-6.24.1.tgz",
"integrity": "sha1-uNowWtQ8PJm0hI5P5AN7dw0jxBg=",
"requires": {
- "regenerator-transform": "https://r.cnpmjs.org/regenerator-transform/download/regenerator-transform-0.9.11.tgz"
+ "regenerator-transform": "0.9.11"
}
},
"babel-plugin-transform-strict-mode": {
"version": "https://r.cnpmjs.org/babel-plugin-transform-strict-mode/download/babel-plugin-transform-strict-mode-6.24.1.tgz",
"integrity": "sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1"
}
},
"babel-preset-es2015-node": {
@@ -809,15 +815,15 @@
"resolved": "https://registry.npmjs.org/babel-preset-es2015-node/-/babel-preset-es2015-node-6.1.1.tgz",
"integrity": "sha1-YLIxVwJLDP6/OmNVTLBe4DW05V8=",
"requires": {
- "babel-plugin-transform-es2015-destructuring": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
- "babel-plugin-transform-es2015-function-name": "https://r.cnpmjs.org/babel-plugin-transform-es2015-function-name/download/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
- "babel-plugin-transform-es2015-modules-commonjs": "https://r.cnpmjs.org/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz",
- "babel-plugin-transform-es2015-parameters": "https://r.cnpmjs.org/babel-plugin-transform-es2015-parameters/download/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
- "babel-plugin-transform-es2015-shorthand-properties": "https://r.cnpmjs.org/babel-plugin-transform-es2015-shorthand-properties/download/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
- "babel-plugin-transform-es2015-spread": "https://r.cnpmjs.org/babel-plugin-transform-es2015-spread/download/babel-plugin-transform-es2015-spread-6.22.0.tgz",
- "babel-plugin-transform-es2015-sticky-regex": "6.24.1",
- "babel-plugin-transform-es2015-unicode-regex": "6.24.1",
- "semver": "https://r.cnpmjs.org/semver/download/semver-5.3.0.tgz"
+ "babel-plugin-transform-es2015-destructuring": "6.x",
+ "babel-plugin-transform-es2015-function-name": "6.x",
+ "babel-plugin-transform-es2015-modules-commonjs": "6.x",
+ "babel-plugin-transform-es2015-parameters": "6.x",
+ "babel-plugin-transform-es2015-shorthand-properties": "6.x",
+ "babel-plugin-transform-es2015-spread": "6.x",
+ "babel-plugin-transform-es2015-sticky-regex": "6.x",
+ "babel-plugin-transform-es2015-unicode-regex": "6.x",
+ "semver": "5.x"
}
},
"babel-preset-fbjs": {
@@ -825,34 +831,34 @@
"resolved": "https://registry.npmjs.org/babel-preset-fbjs/-/babel-preset-fbjs-2.1.4.tgz",
"integrity": "sha512-6XVQwlO26V5/0P9s2Eje8Epqkv/ihaMJ798+W98ktOA8fCn2IFM6wEi7CDW3fTbKFZ/8fDGvGZH01B6GSuNiWA==",
"requires": {
- "babel-plugin-check-es2015-constants": "https://r.cnpmjs.org/babel-plugin-check-es2015-constants/download/babel-plugin-check-es2015-constants-6.22.0.tgz",
- "babel-plugin-syntax-class-properties": "https://registry.cnpmjs.org/babel-plugin-syntax-class-properties/download/babel-plugin-syntax-class-properties-6.13.0.tgz",
- "babel-plugin-syntax-flow": "https://registry.cnpmjs.org/babel-plugin-syntax-flow/download/babel-plugin-syntax-flow-6.18.0.tgz",
- "babel-plugin-syntax-jsx": "https://registry.cnpmjs.org/babel-plugin-syntax-jsx/download/babel-plugin-syntax-jsx-6.18.0.tgz",
- "babel-plugin-syntax-object-rest-spread": "https://registry.cnpmjs.org/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
- "babel-plugin-syntax-trailing-function-commas": "https://r.cnpmjs.org/babel-plugin-syntax-trailing-function-commas/download/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
- "babel-plugin-transform-class-properties": "https://r.cnpmjs.org/babel-plugin-transform-class-properties/download/babel-plugin-transform-class-properties-6.24.1.tgz",
- "babel-plugin-transform-es2015-arrow-functions": "https://r.cnpmjs.org/babel-plugin-transform-es2015-arrow-functions/download/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
- "babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
- "babel-plugin-transform-es2015-block-scoping": "https://r.cnpmjs.org/babel-plugin-transform-es2015-block-scoping/download/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz",
- "babel-plugin-transform-es2015-classes": "https://r.cnpmjs.org/babel-plugin-transform-es2015-classes/download/babel-plugin-transform-es2015-classes-6.24.1.tgz",
- "babel-plugin-transform-es2015-computed-properties": "https://r.cnpmjs.org/babel-plugin-transform-es2015-computed-properties/download/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
- "babel-plugin-transform-es2015-destructuring": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
- "babel-plugin-transform-es2015-for-of": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
- "babel-plugin-transform-es2015-function-name": "https://r.cnpmjs.org/babel-plugin-transform-es2015-function-name/download/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
- "babel-plugin-transform-es2015-literals": "https://r.cnpmjs.org/babel-plugin-transform-es2015-literals/download/babel-plugin-transform-es2015-literals-6.22.0.tgz",
- "babel-plugin-transform-es2015-modules-commonjs": "https://r.cnpmjs.org/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz",
- "babel-plugin-transform-es2015-object-super": "6.24.1",
- "babel-plugin-transform-es2015-parameters": "https://r.cnpmjs.org/babel-plugin-transform-es2015-parameters/download/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
- "babel-plugin-transform-es2015-shorthand-properties": "https://r.cnpmjs.org/babel-plugin-transform-es2015-shorthand-properties/download/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
- "babel-plugin-transform-es2015-spread": "https://r.cnpmjs.org/babel-plugin-transform-es2015-spread/download/babel-plugin-transform-es2015-spread-6.22.0.tgz",
- "babel-plugin-transform-es2015-template-literals": "https://r.cnpmjs.org/babel-plugin-transform-es2015-template-literals/download/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
- "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": "https://r.cnpmjs.org/babel-plugin-transform-flow-strip-types/download/babel-plugin-transform-flow-strip-types-6.22.0.tgz",
- "babel-plugin-transform-object-rest-spread": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz",
- "babel-plugin-transform-react-display-name": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz",
- "babel-plugin-transform-react-jsx": "https://r.cnpmjs.org/babel-plugin-transform-react-jsx/download/babel-plugin-transform-react-jsx-6.24.1.tgz"
+ "babel-plugin-check-es2015-constants": "^6.8.0",
+ "babel-plugin-syntax-class-properties": "^6.8.0",
+ "babel-plugin-syntax-flow": "^6.8.0",
+ "babel-plugin-syntax-jsx": "^6.8.0",
+ "babel-plugin-syntax-object-rest-spread": "^6.8.0",
+ "babel-plugin-syntax-trailing-function-commas": "^6.8.0",
+ "babel-plugin-transform-class-properties": "^6.8.0",
+ "babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
+ "babel-plugin-transform-es2015-block-scoped-functions": "^6.8.0",
+ "babel-plugin-transform-es2015-block-scoping": "^6.8.0",
+ "babel-plugin-transform-es2015-classes": "^6.8.0",
+ "babel-plugin-transform-es2015-computed-properties": "^6.8.0",
+ "babel-plugin-transform-es2015-destructuring": "^6.8.0",
+ "babel-plugin-transform-es2015-for-of": "^6.8.0",
+ "babel-plugin-transform-es2015-function-name": "^6.8.0",
+ "babel-plugin-transform-es2015-literals": "^6.8.0",
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
+ "babel-plugin-transform-es2015-object-super": "^6.8.0",
+ "babel-plugin-transform-es2015-parameters": "^6.8.0",
+ "babel-plugin-transform-es2015-shorthand-properties": "^6.8.0",
+ "babel-plugin-transform-es2015-spread": "^6.8.0",
+ "babel-plugin-transform-es2015-template-literals": "^6.8.0",
+ "babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
+ "babel-plugin-transform-es3-property-literals": "^6.8.0",
+ "babel-plugin-transform-flow-strip-types": "^6.8.0",
+ "babel-plugin-transform-object-rest-spread": "^6.8.0",
+ "babel-plugin-transform-react-display-name": "^6.8.0",
+ "babel-plugin-transform-react-jsx": "^6.8.0"
}
},
"babel-preset-jest": {
@@ -861,8 +867,8 @@
"integrity": "sha512-hm9cBnr2h3J7yXoTtAVV0zg+3vg0Q/gT2GYuzlreTU0EPkJRtlNgKJJ3tBKEn0+VjAi3JykV6xCJkuUYttEEfA==",
"dev": true,
"requires": {
- "babel-plugin-jest-hoist": "21.2.0",
- "babel-plugin-syntax-object-rest-spread": "https://registry.cnpmjs.org/babel-plugin-syntax-object-rest-spread/download/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"
+ "babel-plugin-jest-hoist": "^21.2.0",
+ "babel-plugin-syntax-object-rest-spread": "^6.13.0"
}
},
"babel-preset-react-native": {
@@ -870,58 +876,58 @@
"resolved": "https://registry.npmjs.org/babel-preset-react-native/-/babel-preset-react-native-4.0.0.tgz",
"integrity": "sha512-Wfbo6x244nUbBxjr7hQaNFdjj7FDYU+TVT7cFVPEdVPI68vhN52iLvamm+ErhNdHq6M4j1cMT6AJBYx7Wzdr0g==",
"requires": {
- "babel-plugin-check-es2015-constants": "https://r.cnpmjs.org/babel-plugin-check-es2015-constants/download/babel-plugin-check-es2015-constants-6.22.0.tgz",
- "babel-plugin-react-transform": "3.0.0",
- "babel-plugin-syntax-async-functions": "https://registry.cnpmjs.org/babel-plugin-syntax-async-functions/download/babel-plugin-syntax-async-functions-6.13.0.tgz",
- "babel-plugin-syntax-class-properties": "https://registry.cnpmjs.org/babel-plugin-syntax-class-properties/download/babel-plugin-syntax-class-properties-6.13.0.tgz",
- "babel-plugin-syntax-dynamic-import": "6.18.0",
- "babel-plugin-syntax-flow": "https://registry.cnpmjs.org/babel-plugin-syntax-flow/download/babel-plugin-syntax-flow-6.18.0.tgz",
- "babel-plugin-syntax-jsx": "https://registry.cnpmjs.org/babel-plugin-syntax-jsx/download/babel-plugin-syntax-jsx-6.18.0.tgz",
- "babel-plugin-syntax-trailing-function-commas": "https://r.cnpmjs.org/babel-plugin-syntax-trailing-function-commas/download/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
- "babel-plugin-transform-class-properties": "https://r.cnpmjs.org/babel-plugin-transform-class-properties/download/babel-plugin-transform-class-properties-6.24.1.tgz",
- "babel-plugin-transform-es2015-arrow-functions": "https://r.cnpmjs.org/babel-plugin-transform-es2015-arrow-functions/download/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz",
- "babel-plugin-transform-es2015-block-scoping": "https://r.cnpmjs.org/babel-plugin-transform-es2015-block-scoping/download/babel-plugin-transform-es2015-block-scoping-6.24.1.tgz",
- "babel-plugin-transform-es2015-classes": "https://r.cnpmjs.org/babel-plugin-transform-es2015-classes/download/babel-plugin-transform-es2015-classes-6.24.1.tgz",
- "babel-plugin-transform-es2015-computed-properties": "https://r.cnpmjs.org/babel-plugin-transform-es2015-computed-properties/download/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz",
- "babel-plugin-transform-es2015-destructuring": "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz",
- "babel-plugin-transform-es2015-for-of": "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz",
- "babel-plugin-transform-es2015-function-name": "https://r.cnpmjs.org/babel-plugin-transform-es2015-function-name/download/babel-plugin-transform-es2015-function-name-6.24.1.tgz",
- "babel-plugin-transform-es2015-literals": "https://r.cnpmjs.org/babel-plugin-transform-es2015-literals/download/babel-plugin-transform-es2015-literals-6.22.0.tgz",
- "babel-plugin-transform-es2015-modules-commonjs": "https://r.cnpmjs.org/babel-plugin-transform-es2015-modules-commonjs/download/babel-plugin-transform-es2015-modules-commonjs-6.24.1.tgz",
- "babel-plugin-transform-es2015-parameters": "https://r.cnpmjs.org/babel-plugin-transform-es2015-parameters/download/babel-plugin-transform-es2015-parameters-6.24.1.tgz",
- "babel-plugin-transform-es2015-shorthand-properties": "https://r.cnpmjs.org/babel-plugin-transform-es2015-shorthand-properties/download/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz",
- "babel-plugin-transform-es2015-spread": "https://r.cnpmjs.org/babel-plugin-transform-es2015-spread/download/babel-plugin-transform-es2015-spread-6.22.0.tgz",
- "babel-plugin-transform-es2015-template-literals": "https://r.cnpmjs.org/babel-plugin-transform-es2015-template-literals/download/babel-plugin-transform-es2015-template-literals-6.22.0.tgz",
- "babel-plugin-transform-flow-strip-types": "https://r.cnpmjs.org/babel-plugin-transform-flow-strip-types/download/babel-plugin-transform-flow-strip-types-6.22.0.tgz",
- "babel-plugin-transform-object-assign": "https://registry.npmjs.org/babel-plugin-transform-object-assign/-/babel-plugin-transform-object-assign-6.22.0.tgz",
- "babel-plugin-transform-object-rest-spread": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz",
- "babel-plugin-transform-react-display-name": "https://registry.npmjs.org/babel-plugin-transform-react-display-name/-/babel-plugin-transform-react-display-name-6.23.0.tgz",
- "babel-plugin-transform-react-jsx": "https://r.cnpmjs.org/babel-plugin-transform-react-jsx/download/babel-plugin-transform-react-jsx-6.24.1.tgz",
- "babel-plugin-transform-react-jsx-source": "https://registry.npmjs.org/babel-plugin-transform-react-jsx-source/-/babel-plugin-transform-react-jsx-source-6.22.0.tgz",
- "babel-plugin-transform-regenerator": "https://r.cnpmjs.org/babel-plugin-transform-regenerator/download/babel-plugin-transform-regenerator-6.24.1.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "react-transform-hmr": "https://registry.cnpmjs.org/react-transform-hmr/download/react-transform-hmr-1.0.4.tgz"
+ "babel-plugin-check-es2015-constants": "^6.5.0",
+ "babel-plugin-react-transform": "^3.0.0",
+ "babel-plugin-syntax-async-functions": "^6.5.0",
+ "babel-plugin-syntax-class-properties": "^6.5.0",
+ "babel-plugin-syntax-dynamic-import": "^6.18.0",
+ "babel-plugin-syntax-flow": "^6.5.0",
+ "babel-plugin-syntax-jsx": "^6.5.0",
+ "babel-plugin-syntax-trailing-function-commas": "^6.5.0",
+ "babel-plugin-transform-class-properties": "^6.5.0",
+ "babel-plugin-transform-es2015-arrow-functions": "^6.5.0",
+ "babel-plugin-transform-es2015-block-scoping": "^6.5.0",
+ "babel-plugin-transform-es2015-classes": "^6.5.0",
+ "babel-plugin-transform-es2015-computed-properties": "^6.5.0",
+ "babel-plugin-transform-es2015-destructuring": "^6.5.0",
+ "babel-plugin-transform-es2015-for-of": "^6.5.0",
+ "babel-plugin-transform-es2015-function-name": "^6.5.0",
+ "babel-plugin-transform-es2015-literals": "^6.5.0",
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.5.0",
+ "babel-plugin-transform-es2015-parameters": "^6.5.0",
+ "babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
+ "babel-plugin-transform-es2015-spread": "^6.5.0",
+ "babel-plugin-transform-es2015-template-literals": "^6.5.0",
+ "babel-plugin-transform-flow-strip-types": "^6.5.0",
+ "babel-plugin-transform-object-assign": "^6.5.0",
+ "babel-plugin-transform-object-rest-spread": "^6.5.0",
+ "babel-plugin-transform-react-display-name": "^6.5.0",
+ "babel-plugin-transform-react-jsx": "^6.5.0",
+ "babel-plugin-transform-react-jsx-source": "^6.5.0",
+ "babel-plugin-transform-regenerator": "^6.5.0",
+ "babel-template": "^6.24.1",
+ "react-transform-hmr": "^1.0.4"
}
},
"babel-register": {
"version": "https://r.cnpmjs.org/babel-register/download/babel-register-6.24.1.tgz",
"integrity": "sha1-fhDhOi9xBlvfrVoXh7pFvKbe118=",
"requires": {
- "babel-core": "https://r.cnpmjs.org/babel-core/download/babel-core-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "core-js": "https://registry.cnpmjs.org/core-js/download/core-js-2.4.1.tgz",
- "home-or-tmp": "https://registry.cnpmjs.org/home-or-tmp/download/home-or-tmp-2.0.0.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "source-map-support": "https://r.cnpmjs.org/source-map-support/download/source-map-support-0.4.15.tgz"
+ "babel-core": "^6.24.1",
+ "babel-runtime": "^6.22.0",
+ "core-js": "^2.4.0",
+ "home-or-tmp": "^2.0.0",
+ "lodash": "^4.2.0",
+ "mkdirp": "^0.5.1",
+ "source-map-support": "^0.4.2"
}
},
"babel-runtime": {
"version": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
"integrity": "sha1-CpSJ8UTecO+zzkMArM2zKeL8VDs=",
"requires": {
- "core-js": "https://registry.cnpmjs.org/core-js/download/core-js-2.4.1.tgz",
- "regenerator-runtime": "https://r.cnpmjs.org/regenerator-runtime/download/regenerator-runtime-0.10.5.tgz"
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.10.0"
},
"dependencies": {
"regenerator-runtime": {
@@ -934,36 +940,36 @@
"version": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
"integrity": "sha1-BK5RTx+Ts6JTfyoPYKWkX7gwgzM=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "babylon": "https://r.cnpmjs.org/babylon/download/babylon-6.17.0.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz"
+ "babel-runtime": "^6.22.0",
+ "babel-traverse": "^6.24.1",
+ "babel-types": "^6.24.1",
+ "babylon": "^6.11.0",
+ "lodash": "^4.2.0"
}
},
"babel-traverse": {
"version": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
"integrity": "sha1-qzZnP9NW+aCUhlnnszjV/q2zFpU=",
"requires": {
- "babel-code-frame": "https://r.cnpmjs.org/babel-code-frame/download/babel-code-frame-6.22.0.tgz",
- "babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "babylon": "https://r.cnpmjs.org/babylon/download/babylon-6.17.0.tgz",
- "debug": "https://r.cnpmjs.org/debug/download/debug-2.6.6.tgz",
- "globals": "https://r.cnpmjs.org/globals/download/globals-9.17.0.tgz",
- "invariant": "https://r.cnpmjs.org/invariant/download/invariant-2.2.2.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz"
+ "babel-code-frame": "^6.22.0",
+ "babel-messages": "^6.23.0",
+ "babel-runtime": "^6.22.0",
+ "babel-types": "^6.24.1",
+ "babylon": "^6.15.0",
+ "debug": "^2.2.0",
+ "globals": "^9.0.0",
+ "invariant": "^2.2.0",
+ "lodash": "^4.2.0"
}
},
"babel-types": {
"version": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
"integrity": "sha1-oTaHncFbNga9oNkMH8dDBML/CXU=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "esutils": "https://registry.cnpmjs.org/esutils/download/esutils-2.0.2.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "to-fast-properties": "https://r.cnpmjs.org/to-fast-properties/download/to-fast-properties-1.0.3.tgz"
+ "babel-runtime": "^6.22.0",
+ "esutils": "^2.0.2",
+ "lodash": "^4.2.0",
+ "to-fast-properties": "^1.0.1"
}
},
"babylon": {
@@ -975,9 +981,9 @@
"integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg="
},
"base64-js": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz",
- "integrity": "sha512-dwVUVIXsBZXwTuwnXI9RK8sBmgq09NDHzyR9SAph9eqk76gKK2JSQmZARC2zRC81JC2QTtxD0ARU5qTS25gIGw=="
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.2.3.tgz",
+ "integrity": "sha512-MsAhsUW1GxCdgYSO6tAfZrNapmUKk7mWx/k5mFY/A1gBtkaCaNapTg+FExCw1r9yeaZhqx/xPg43xgTFH6KL5w=="
},
"base64-url": {
"version": "1.2.1",
@@ -1004,7 +1010,7 @@
"integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
"optional": true,
"requires": {
- "tweetnacl": "https://r.cnpmjs.org/tweetnacl/download/tweetnacl-0.14.5.tgz"
+ "tweetnacl": "^0.14.3"
}
},
"beeper": {
@@ -1013,9 +1019,9 @@
"integrity": "sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak="
},
"big-integer": {
- "version": "1.6.26",
- "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.26.tgz",
- "integrity": "sha1-OvFnL6Ytry1eyvrPblqg0l4Cwcg="
+ "version": "1.6.27",
+ "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.27.tgz",
+ "integrity": "sha512-NzUKMYW4SWme+H5K+mfEmBxEF/V04PhlzoxxXwSnDig78y2t7HLBVotfDBMUhRPRA3WWID3GmJB/OJSWPhVXtg=="
},
"body-parser": {
"version": "1.13.3",
@@ -1023,15 +1029,15 @@
"integrity": "sha1-wIzzMMM1jhUQFqBXRvE/ApyX+pc=",
"requires": {
"bytes": "2.1.0",
- "content-type": "1.0.4",
- "debug": "2.2.0",
- "depd": "1.0.1",
- "http-errors": "1.3.1",
+ "content-type": "~1.0.1",
+ "debug": "~2.2.0",
+ "depd": "~1.0.1",
+ "http-errors": "~1.3.1",
"iconv-lite": "0.4.11",
- "on-finished": "2.3.0",
+ "on-finished": "~2.3.0",
"qs": "4.0.0",
- "raw-body": "2.1.7",
- "type-is": "1.6.15"
+ "raw-body": "~2.1.2",
+ "type-is": "~1.6.6"
},
"dependencies": {
"debug": {
@@ -1042,6 +1048,11 @@
"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="
+ },
"ms": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",
@@ -1053,7 +1064,7 @@
"version": "https://registry.cnpmjs.org/boom/download/boom-2.10.1.tgz",
"integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
"requires": {
- "hoek": "https://registry.cnpmjs.org/hoek/download/hoek-2.16.3.tgz"
+ "hoek": "2.x.x"
}
},
"bplist-creator": {
@@ -1061,7 +1072,7 @@
"resolved": "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.7.tgz",
"integrity": "sha1-N98VNgkoJLh8QvlXsBNEEXNyrkU=",
"requires": {
- "stream-buffers": "2.2.0"
+ "stream-buffers": "~2.2.0"
}
},
"bplist-parser": {
@@ -1069,24 +1080,24 @@
"resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz",
"integrity": "sha1-1g1dzCDLptx+HymbNdPh+V2vuuY=",
"requires": {
- "big-integer": "1.6.26"
+ "big-integer": "^1.6.7"
}
},
"brace-expansion": {
"version": "https://r.cnpmjs.org/brace-expansion/download/brace-expansion-1.1.7.tgz",
"integrity": "sha1-Pv/DxQ4ABTH7cg6v+A8K6O8jz1k=",
"requires": {
- "balanced-match": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz",
- "concat-map": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
+ "balanced-match": "^0.4.1",
+ "concat-map": "0.0.1"
}
},
"braces": {
"version": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz",
"integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
"requires": {
- "expand-range": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
- "preserve": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz",
- "repeat-element": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz"
+ "expand-range": "^1.8.1",
+ "preserve": "^0.2.0",
+ "repeat-element": "^1.1.2"
}
},
"browser-resolve": {
@@ -1098,6 +1109,11 @@
"resolve": "1.1.7"
}
},
+ "buffer-from": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz",
+ "integrity": "sha512-83apNb8KK0Se60UE1+4Ukbe3HbfELJ6UlI4ldtOGs7So4KD26orJM8hIY9lxdzP+UpItH1Yh/Y8GUvNFWFFRxA=="
+ },
"builtin-modules": {
"version": "https://registry.cnpmjs.org/builtin-modules/download/builtin-modules-1.1.1.tgz",
"integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8="
@@ -1131,19 +1147,19 @@
"dev": true,
"optional": true,
"requires": {
- "align-text": "0.1.4",
- "lazy-cache": "1.0.4"
+ "align-text": "^0.1.3",
+ "lazy-cache": "^1.0.3"
}
},
"chalk": {
"version": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"requires": {
- "ansi-styles": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "has-ansi": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
- "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
- "supports-color": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"
+ "ansi-styles": "^2.2.1",
+ "escape-string-regexp": "^1.0.2",
+ "has-ansi": "^2.0.0",
+ "strip-ansi": "^3.0.0",
+ "supports-color": "^2.0.0"
}
},
"chardet": {
@@ -1162,7 +1178,7 @@
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
"integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
"requires": {
- "restore-cursor": "2.0.0"
+ "restore-cursor": "^2.0.0"
}
},
"cli-width": {
@@ -1170,6 +1186,31 @@
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
"integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk="
},
+ "clipboardy": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-1.2.3.tgz",
+ "integrity": "sha512-2WNImOvCRe6r63Gk9pShfkwXsVtKCroMAevIbiae021mS850UkWPbevxsBz3tnvjZIEGvlwaqCPsw+4ulzNgJA==",
+ "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=",
+ "requires": {
+ "cross-spawn": "^5.0.1",
+ "get-stream": "^3.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
+ }
+ }
+ }
+ },
"cliui": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
@@ -1177,8 +1218,8 @@
"dev": true,
"optional": true,
"requires": {
- "center-align": "0.1.3",
- "right-align": "0.1.3",
+ "center-align": "^0.1.1",
+ "right-align": "^0.1.1",
"wordwrap": "0.0.2"
},
"dependencies": {
@@ -1192,9 +1233,9 @@
}
},
"clone": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz",
- "integrity": "sha1-KY1+IjFmD0DAA8LtMUDezz9TCF8="
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+ "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4="
},
"clone-stats": {
"version": "0.0.1",
@@ -1213,7 +1254,7 @@
"version": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz",
"integrity": "sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o=",
"requires": {
- "color-name": "https://r.cnpmjs.org/color-name/download/color-name-1.1.2.tgz"
+ "color-name": "^1.1.1"
}
},
"color-name": {
@@ -1229,26 +1270,26 @@
"version": "https://registry.cnpmjs.org/combined-stream/download/combined-stream-1.0.5.tgz",
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
"requires": {
- "delayed-stream": "https://registry.cnpmjs.org/delayed-stream/download/delayed-stream-1.0.0.tgz"
+ "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=="
+ "version": "2.15.1",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz",
+ "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag=="
},
"compressible": {
- "version": "2.0.12",
- "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.12.tgz",
- "integrity": "sha1-xZpcmdt2dn6YdlAOJx72OzSTvWY=",
+ "version": "2.0.13",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.13.tgz",
+ "integrity": "sha1-DRAgq5JLL9tNYnmHXH1tq6a6p6k=",
"requires": {
- "mime-db": "1.32.0"
+ "mime-db": ">= 1.33.0 < 2"
},
"dependencies": {
"mime-db": {
- "version": "1.32.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.32.0.tgz",
- "integrity": "sha512-+ZWo/xZN40Tt6S+HyakUxnSOgff+JEdaneLWIm0Z6LmpCn5DMcZntLyUY5c/rTDog28LhXLKOUZKoTxTCAdBVw=="
+ "version": "1.33.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
+ "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="
}
}
},
@@ -1257,12 +1298,12 @@
"resolved": "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz",
"integrity": "sha1-sDuNhub4rSloPLqN+R3cb/x3s5U=",
"requires": {
- "accepts": "1.2.13",
+ "accepts": "~1.2.12",
"bytes": "2.1.0",
- "compressible": "2.0.12",
- "debug": "2.2.0",
- "on-headers": "1.0.1",
- "vary": "1.0.1"
+ "compressible": "~2.0.5",
+ "debug": "~2.2.0",
+ "on-headers": "~1.0.0",
+ "vary": "~1.0.1"
},
"dependencies": {
"debug": {
@@ -1285,27 +1326,28 @@
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
},
"concat-stream": {
- "version": "1.6.0",
- "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz",
- "integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=",
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
+ "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
"requires": {
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "readable-stream": "2.3.3",
- "typedarray": "0.0.6"
+ "buffer-from": "^1.0.0",
+ "inherits": "^2.0.3",
+ "readable-stream": "^2.2.2",
+ "typedarray": "^0.0.6"
},
"dependencies": {
"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==",
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
"requires": {
- "core-util-is": "1.0.2",
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "isarray": "https://r.cnpmjs.org/isarray/download/isarray-1.0.0.tgz",
- "process-nextick-args": "1.0.7",
- "safe-buffer": "5.1.1",
- "string_decoder": "1.0.3",
- "util-deprecate": "1.0.2"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
"safe-buffer": {
@@ -1314,11 +1356,11 @@
"integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="
},
"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==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"requires": {
- "safe-buffer": "5.1.1"
+ "safe-buffer": "~5.1.0"
}
}
}
@@ -1329,36 +1371,36 @@
"integrity": "sha1-jam8vooFTT0xjXTf7JA7XDmhtgk=",
"requires": {
"basic-auth-connect": "1.0.0",
- "body-parser": "1.13.3",
+ "body-parser": "~1.13.3",
"bytes": "2.1.0",
- "compression": "1.5.2",
- "connect-timeout": "1.6.2",
- "content-type": "1.0.4",
+ "compression": "~1.5.2",
+ "connect-timeout": "~1.6.2",
+ "content-type": "~1.0.1",
"cookie": "0.1.3",
- "cookie-parser": "1.3.5",
+ "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",
+ "csurf": "~1.8.3",
+ "debug": "~2.2.0",
+ "depd": "~1.0.1",
+ "errorhandler": "~1.4.2",
+ "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",
+ "http-errors": "~1.3.1",
+ "method-override": "~2.3.5",
+ "morgan": "~1.6.1",
"multiparty": "3.3.2",
- "on-headers": "1.0.1",
- "parseurl": "1.3.2",
+ "on-headers": "~1.0.0",
+ "parseurl": "~1.3.0",
"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",
+ "response-time": "~2.3.1",
+ "serve-favicon": "~2.3.0",
+ "serve-index": "~1.7.2",
+ "serve-static": "~1.10.0",
+ "type-is": "~1.6.6",
"utils-merge": "1.0.0",
- "vhost": "3.0.2"
+ "vhost": "~3.0.1"
},
"dependencies": {
"debug": {
@@ -1381,10 +1423,10 @@
"resolved": "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.2.tgz",
"integrity": "sha1-3ppexh4zoStu2qt7XwYumMWZuI4=",
"requires": {
- "debug": "2.2.0",
- "http-errors": "1.3.1",
+ "debug": "~2.2.0",
+ "http-errors": "~1.3.1",
"ms": "0.7.1",
- "on-headers": "1.0.1"
+ "on-headers": "~1.0.0"
},
"dependencies": {
"debug": {
@@ -1436,15 +1478,6 @@
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
},
- "copy-paste": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/copy-paste/-/copy-paste-1.3.0.tgz",
- "integrity": "sha1-p+bEocKP3t8rCB5yuX3y75X0ce0=",
- "requires": {
- "iconv-lite": "0.4.11",
- "sync-exec": "0.6.2"
- }
- },
"core-js": {
"version": "https://registry.cnpmjs.org/core-js/download/core-js-2.4.1.tgz",
"integrity": "sha1-TekR5mew6ukSTjQlS1OupvxhjT4="
@@ -1460,13 +1493,13 @@
"integrity": "sha1-+mIuG8OIvyVzCQgta2UgDOZwkLo="
},
"create-react-class": {
- "version": "15.6.2",
- "resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.6.2.tgz",
- "integrity": "sha1-zx7RXxKq1/FO9fLf4F5sQvke8Co=",
+ "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==",
"requires": {
- "fbjs": "0.8.16",
- "loose-envify": "https://r.cnpmjs.org/loose-envify/download/loose-envify-1.3.1.tgz",
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz"
+ "fbjs": "^0.8.9",
+ "loose-envify": "^1.3.1",
+ "object-assign": "^4.1.1"
}
},
"cross-spawn": {
@@ -1474,16 +1507,16 @@
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
"integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
"requires": {
- "lru-cache": "4.1.1",
- "shebang-command": "1.2.0",
- "which": "https://r.cnpmjs.org/which/download/which-1.2.14.tgz"
+ "lru-cache": "^4.0.1",
+ "shebang-command": "^1.2.0",
+ "which": "^1.2.9"
}
},
"cryptiles": {
"version": "https://registry.cnpmjs.org/cryptiles/download/cryptiles-2.0.5.tgz",
"integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=",
"requires": {
- "boom": "https://registry.cnpmjs.org/boom/download/boom-2.10.1.tgz"
+ "boom": "2.x.x"
}
},
"csrf": {
@@ -1508,7 +1541,7 @@
"integrity": "sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ=",
"dev": true,
"requires": {
- "cssom": "0.3.2"
+ "cssom": "0.3.x"
}
},
"csurf": {
@@ -1518,15 +1551,15 @@
"requires": {
"cookie": "0.1.3",
"cookie-signature": "1.0.6",
- "csrf": "3.0.6",
- "http-errors": "1.3.1"
+ "csrf": "~3.0.0",
+ "http-errors": "~1.3.1"
}
},
"dashdash": {
"version": "https://r.cnpmjs.org/dashdash/download/dashdash-1.14.1.tgz",
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
"requires": {
- "assert-plus": "https://registry.cnpmjs.org/assert-plus/download/assert-plus-1.0.0.tgz"
+ "assert-plus": "^1.0.0"
},
"dependencies": {
"assert-plus": {
@@ -1544,7 +1577,7 @@
"version": "https://r.cnpmjs.org/debug/download/debug-2.6.6.tgz",
"integrity": "sha1-qfpvvpykPPHnn3O3XAGJy7fW21o=",
"requires": {
- "ms": "https://r.cnpmjs.org/ms/download/ms-0.7.3.tgz"
+ "ms": "0.7.3"
}
},
"decamelize": {
@@ -1563,7 +1596,7 @@
"integrity": "sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=",
"dev": true,
"requires": {
- "strip-bom": "2.0.0"
+ "strip-bom": "^2.0.0"
}
},
"delayed-stream": {
@@ -1594,7 +1627,7 @@
"version": "https://registry.cnpmjs.org/detect-indent/download/detect-indent-4.0.0.tgz",
"integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=",
"requires": {
- "repeating": "https://registry.cnpmjs.org/repeating/download/repeating-2.0.1.tgz"
+ "repeating": "^2.0.0"
}
},
"detect-newline": {
@@ -1617,7 +1650,7 @@
"resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz",
"integrity": "sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds=",
"requires": {
- "readable-stream": "1.1.14"
+ "readable-stream": "~1.1.9"
}
},
"ecc-jsbn": {
@@ -1625,7 +1658,7 @@
"integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
"optional": true,
"requires": {
- "jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"
+ "jsbn": "~0.1.0"
}
},
"ee-first": {
@@ -1633,29 +1666,29 @@
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
+ "encodeurl": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
+ "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
+ },
"encoding": {
- "version": "https://registry.cnpmjs.org/encoding/download/encoding-0.1.12.tgz",
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
"integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
"requires": {
- "iconv-lite": "https://r.cnpmjs.org/iconv-lite/download/iconv-lite-0.4.17.tgz"
- },
- "dependencies": {
- "iconv-lite": {
- "version": "https://r.cnpmjs.org/iconv-lite/download/iconv-lite-0.4.17.tgz",
- "integrity": "sha1-T9qjs4rLwsAxsEXQ7c3+HsqxjI0="
- }
+ "iconv-lite": "0.4.21"
}
},
"envinfo": {
- "version": "3.10.0",
- "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-3.10.0.tgz",
- "integrity": "sha512-7m6zSyFfEb3lAjZI217G1XVSAkYeFJHk2EqAVeoncrt+WtHddW4nnft2qPg82Xu1aB/T8nC/DPvkGgUUahli4g==",
- "requires": {
- "copy-paste": "1.3.0",
- "glob": "7.1.2",
- "minimist": "https://registry.cnpmjs.org/minimist/download/minimist-1.2.0.tgz",
- "os-name": "2.0.1",
- "which": "https://r.cnpmjs.org/which/download/which-1.2.14.tgz"
+ "version": "3.11.1",
+ "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-3.11.1.tgz",
+ "integrity": "sha512-hKkh7aKtont6Zuv4RmE4VkOc96TkBj9NXj7Ghsd/qCA9LuJI0Dh+ImwA1N5iORB9Vg+sz5bq9CHJzs51BILNCQ==",
+ "requires": {
+ "clipboardy": "^1.2.2",
+ "glob": "^7.1.2",
+ "minimist": "^1.2.0",
+ "os-name": "^2.0.1",
+ "which": "^1.2.14"
},
"dependencies": {
"glob": {
@@ -1663,12 +1696,12 @@
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
"integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
"requires": {
- "fs.realpath": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "inflight": "https://registry.cnpmjs.org/inflight/download/inflight-1.0.6.tgz",
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "minimatch": "3.0.4",
- "once": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "path-is-absolute": "https://registry.cnpmjs.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
}
},
"minimatch": {
@@ -1676,7 +1709,7 @@
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
"requires": {
- "brace-expansion": "https://r.cnpmjs.org/brace-expansion/download/brace-expansion-1.1.7.tgz"
+ "brace-expansion": "^1.1.7"
}
}
}
@@ -1686,14 +1719,14 @@
"integrity": "sha1-uJbiOp5ei6M4cfyZar02NfyaHH0=",
"dev": true,
"requires": {
- "prr": "https://registry.cnpmjs.org/prr/download/prr-0.0.0.tgz"
+ "prr": "~0.0.0"
}
},
"error-ex": {
"version": "https://r.cnpmjs.org/error-ex/download/error-ex-1.3.1.tgz",
"integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=",
"requires": {
- "is-arrayish": "https://registry.cnpmjs.org/is-arrayish/download/is-arrayish-0.2.1.tgz"
+ "is-arrayish": "^0.2.1"
}
},
"errorhandler": {
@@ -1701,30 +1734,30 @@
"resolved": "https://registry.npmjs.org/errorhandler/-/errorhandler-1.4.3.tgz",
"integrity": "sha1-t7cO2PNZ6duICS8tIMD4MUIK2D8=",
"requires": {
- "accepts": "1.3.4",
- "escape-html": "1.0.3"
+ "accepts": "~1.3.0",
+ "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=",
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz",
+ "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=",
"requires": {
- "mime-types": "2.1.17",
+ "mime-types": "~2.1.18",
"negotiator": "0.6.1"
}
},
"mime-db": {
- "version": "1.30.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz",
- "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE="
+ "version": "1.33.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
+ "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="
},
"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=",
+ "version": "2.1.18",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
+ "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
"requires": {
- "mime-db": "1.30.0"
+ "mime-db": "~1.33.0"
}
},
"negotiator": {
@@ -1749,11 +1782,11 @@
"integrity": "sha512-v0MYvNQ32bzwoG2OSFzWAkuahDQHK92JBN0pTAALJ4RIxEZe766QJPDR8Hqy7XNUy5K3fnVL76OqYAdc4TZEIw==",
"dev": true,
"requires": {
- "esprima": "3.1.3",
- "estraverse": "4.2.0",
- "esutils": "https://registry.cnpmjs.org/esutils/download/esutils-2.0.2.tgz",
- "optionator": "0.8.2",
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz"
+ "esprima": "^3.1.3",
+ "estraverse": "^4.2.0",
+ "esutils": "^2.0.2",
+ "optionator": "^0.8.1",
+ "source-map": "~0.5.6"
},
"dependencies": {
"esprima": {
@@ -1790,11 +1823,16 @@
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-1.1.1.tgz",
"integrity": "sha1-qG5e5r2qFgVEddp5fM3fDFVphJE="
},
+ "eventemitter3": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.0.1.tgz",
+ "integrity": "sha512-QOCPu979MMWX9XNlfRZoin+Wm+bK1SP7vv3NGUniYwuSJK/+cPA10blMaeRgzg31RvoSFk6FsCDVa4vNryBTGA=="
+ },
"exec-sh": {
"version": "https://registry.cnpmjs.org/exec-sh/download/exec-sh-0.2.0.tgz",
"integrity": "sha1-FPdd4/INKG75MwmbLOUKkDWc7xA=",
"requires": {
- "merge": "https://registry.cnpmjs.org/merge/download/merge-1.2.0.tgz"
+ "merge": "^1.1.3"
}
},
"execa": {
@@ -1802,27 +1840,27 @@
"resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
"integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
"requires": {
- "cross-spawn": "5.1.0",
- "get-stream": "3.0.0",
- "is-stream": "https://registry.cnpmjs.org/is-stream/download/is-stream-1.1.0.tgz",
- "npm-run-path": "2.0.2",
- "p-finally": "1.0.0",
- "signal-exit": "3.0.2",
- "strip-eof": "1.0.0"
+ "cross-spawn": "^5.0.1",
+ "get-stream": "^3.0.0",
+ "is-stream": "^1.1.0",
+ "npm-run-path": "^2.0.0",
+ "p-finally": "^1.0.0",
+ "signal-exit": "^3.0.0",
+ "strip-eof": "^1.0.0"
}
},
"expand-brackets": {
"version": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz",
"integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=",
"requires": {
- "is-posix-bracket": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"
+ "is-posix-bracket": "^0.1.0"
}
},
"expand-range": {
"version": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
"integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=",
"requires": {
- "fill-range": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz"
+ "fill-range": "^2.1.0"
}
},
"expect": {
@@ -1831,12 +1869,12 @@
"integrity": "sha512-orfQQqFRTX0jH7znRIGi8ZMR8kTNpXklTTz8+HGTpmTKZo3Occ6JNB5FXMb8cRuiiC/GyDqsr30zUa66ACYlYw==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "jest-diff": "21.2.1",
- "jest-get-type": "21.2.0",
- "jest-matcher-utils": "21.2.1",
- "jest-message-util": "21.2.1",
- "jest-regex-util": "21.2.0"
+ "ansi-styles": "^3.2.0",
+ "jest-diff": "^21.2.1",
+ "jest-get-type": "^21.2.0",
+ "jest-matcher-utils": "^21.2.1",
+ "jest-message-util": "^21.2.1",
+ "jest-regex-util": "^21.2.0"
},
"dependencies": {
"ansi-styles": {
@@ -1845,7 +1883,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
}
}
@@ -1858,11 +1896,11 @@
"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",
+ "debug": "~2.2.0",
+ "depd": "~1.0.1",
+ "on-headers": "~1.0.0",
+ "parseurl": "~1.3.0",
+ "uid-safe": "~2.0.0",
"utils-merge": "1.0.0"
},
"dependencies": {
@@ -1894,27 +1932,20 @@
"integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ="
},
"external-editor": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz",
- "integrity": "sha512-E44iT5QVOUJBKij4IIV3uvxuNlbKS38Tw1HiupxEIHPv9qtC2PrDYohbXV5U+1jnfIXttny8gUhj+oZvflFlzA==",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz",
+ "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==",
"requires": {
- "chardet": "0.4.2",
- "iconv-lite": "0.4.19",
- "tmp": "0.0.33"
- },
- "dependencies": {
- "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=="
- }
+ "chardet": "^0.4.0",
+ "iconv-lite": "^0.4.17",
+ "tmp": "^0.0.33"
}
},
"extglob": {
"version": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz",
"integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=",
"requires": {
- "is-extglob": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"
+ "is-extglob": "^1.0.0"
}
},
"extsprintf": {
@@ -1926,9 +1957,9 @@
"resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz",
"integrity": "sha1-9BEl49hPLn2JpD0G2VjI94vha+E=",
"requires": {
- "ansi-gray": "0.1.1",
- "color-support": "1.1.3",
- "time-stamp": "1.1.0"
+ "ansi-gray": "^0.1.1",
+ "color-support": "^1.1.3",
+ "time-stamp": "^1.0.0"
}
},
"fast-levenshtein": {
@@ -1941,14 +1972,14 @@
"version": "https://r.cnpmjs.org/fb-watchman/download/fb-watchman-2.0.0.tgz",
"integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=",
"requires": {
- "bser": "https://r.cnpmjs.org/bser/download/bser-2.0.0.tgz"
+ "bser": "^2.0.0"
},
"dependencies": {
"bser": {
"version": "https://r.cnpmjs.org/bser/download/bser-2.0.0.tgz",
"integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=",
"requires": {
- "node-int64": "https://registry.cnpmjs.org/node-int64/download/node-int64-0.4.0.tgz"
+ "node-int64": "^0.4.0"
}
}
}
@@ -1958,13 +1989,13 @@
"resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz",
"integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=",
"requires": {
- "core-js": "1.2.7",
- "isomorphic-fetch": "https://registry.cnpmjs.org/isomorphic-fetch/download/isomorphic-fetch-2.2.1.tgz",
- "loose-envify": "https://r.cnpmjs.org/loose-envify/download/loose-envify-1.3.1.tgz",
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz",
- "promise": "https://registry.cnpmjs.org/promise/download/promise-7.1.1.tgz",
- "setimmediate": "https://r.cnpmjs.org/setimmediate/download/setimmediate-1.0.5.tgz",
- "ua-parser-js": "https://r.cnpmjs.org/ua-parser-js/download/ua-parser-js-0.7.12.tgz"
+ "core-js": "^1.0.0",
+ "isomorphic-fetch": "^2.1.1",
+ "loose-envify": "^1.0.0",
+ "object-assign": "^4.1.0",
+ "promise": "^7.1.1",
+ "setimmediate": "^1.0.5",
+ "ua-parser-js": "^0.7.9"
},
"dependencies": {
"core-js": {
@@ -1975,18 +2006,18 @@
}
},
"fbjs-scripts": {
- "version": "0.8.1",
- "resolved": "https://registry.npmjs.org/fbjs-scripts/-/fbjs-scripts-0.8.1.tgz",
- "integrity": "sha512-hTjqlua9YJupF8shbVRTq20xKPITnDmqBLBQyR9BttZYT+gxGeKboIzPC19T3Erp29Q0+jdMwjUiyTHR61q1Bw==",
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/fbjs-scripts/-/fbjs-scripts-0.8.2.tgz",
+ "integrity": "sha512-fViyMWfrBCJGmkN6N0CE/LRDSk9Jib+YP5YvfNAIAqjHLZ7Ey2T1oKG5wquY7PhgPVwQDHFGg7J270RNPfWptw==",
"requires": {
- "babel-core": "https://r.cnpmjs.org/babel-core/download/babel-core-6.24.1.tgz",
- "babel-preset-fbjs": "2.1.4",
- "core-js": "https://registry.cnpmjs.org/core-js/download/core-js-2.4.1.tgz",
- "cross-spawn": "5.1.0",
- "gulp-util": "3.0.8",
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz",
- "semver": "https://r.cnpmjs.org/semver/download/semver-5.3.0.tgz",
- "through2": "2.0.3"
+ "babel-core": "^6.7.2",
+ "babel-preset-fbjs": "^2.1.2",
+ "core-js": "^2.4.1",
+ "cross-spawn": "^5.1.0",
+ "gulp-util": "^3.0.4",
+ "object-assign": "^4.0.1",
+ "semver": "^5.1.0",
+ "through2": "^2.0.0"
}
},
"figures": {
@@ -1994,7 +2025,7 @@
"resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz",
"integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=",
"requires": {
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
+ "escape-string-regexp": "^1.0.5"
}
},
"filename-regex": {
@@ -2007,19 +2038,19 @@
"integrity": "sha1-jnVIqW08wjJ+5eZ0FocjozO7oqA=",
"dev": true,
"requires": {
- "glob": "https://registry.cnpmjs.org/glob/download/glob-7.1.1.tgz",
- "minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz"
+ "glob": "^7.0.3",
+ "minimatch": "^3.0.3"
}
},
"fill-range": {
"version": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz",
"integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=",
"requires": {
- "is-number": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz",
- "isobject": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
- "randomatic": "https://r.cnpmjs.org/randomatic/download/randomatic-1.1.6.tgz",
- "repeat-element": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
- "repeat-string": "https://registry.cnpmjs.org/repeat-string/download/repeat-string-1.6.1.tgz"
+ "is-number": "^2.1.0",
+ "isobject": "^2.0.0",
+ "randomatic": "^1.1.3",
+ "repeat-element": "^1.1.2",
+ "repeat-string": "^1.5.2"
}
},
"finalhandler": {
@@ -2027,10 +2058,10 @@
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz",
"integrity": "sha1-llpS2ejQXSuFdUhUH7ibU6JJfZs=",
"requires": {
- "debug": "2.2.0",
+ "debug": "~2.2.0",
"escape-html": "1.0.2",
- "on-finished": "2.3.0",
- "unpipe": "1.0.0"
+ "on-finished": "~2.3.0",
+ "unpipe": "~1.0.0"
},
"dependencies": {
"debug": {
@@ -2058,7 +2089,7 @@
"resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz",
"integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
"requires": {
- "locate-path": "https://r.cnpmjs.org/locate-path/download/locate-path-2.0.0.tgz"
+ "locate-path": "^2.0.0"
}
},
"for-in": {
@@ -2069,7 +2100,7 @@
"version": "https://r.cnpmjs.org/for-own/download/for-own-0.1.5.tgz",
"integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=",
"requires": {
- "for-in": "https://r.cnpmjs.org/for-in/download/for-in-1.0.2.tgz"
+ "for-in": "^1.0.1"
}
},
"forever-agent": {
@@ -2080,16 +2111,16 @@
"version": "https://r.cnpmjs.org/form-data/download/form-data-2.1.4.tgz",
"integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=",
"requires": {
- "asynckit": "https://registry.cnpmjs.org/asynckit/download/asynckit-0.4.0.tgz",
- "combined-stream": "https://registry.cnpmjs.org/combined-stream/download/combined-stream-1.0.5.tgz",
- "mime-types": "https://r.cnpmjs.org/mime-types/download/mime-types-2.1.15.tgz"
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.5",
+ "mime-types": "^2.1.12"
},
"dependencies": {
"mime-types": {
"version": "https://r.cnpmjs.org/mime-types/download/mime-types-2.1.15.tgz",
"integrity": "sha1-pOv1BkCUVpI3uM9wBGd20J/JKu0=",
"requires": {
- "mime-db": "https://r.cnpmjs.org/mime-db/download/mime-db-1.27.0.tgz"
+ "mime-db": "~1.27.0"
}
}
}
@@ -2104,9 +2135,9 @@
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz",
"integrity": "sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA=",
"requires": {
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "jsonfile": "2.4.0",
- "klaw": "1.3.1"
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^2.1.0",
+ "klaw": "^1.0.0"
}
},
"fs.realpath": {
@@ -2119,8 +2150,8 @@
"integrity": "sha512-WIr7iDkdmdbxu/Gh6eKEZJL6KPE74/5MEsf2whTOFNxbIoIixogroLdKYqB6FDav4Wavh/lZdzzd3b2KxIXC5Q==",
"optional": true,
"requires": {
- "nan": "2.8.0",
- "node-pre-gyp": "0.6.39"
+ "nan": "^2.3.0",
+ "node-pre-gyp": "^0.6.39"
},
"dependencies": {
"abbrev": {
@@ -2133,8 +2164,8 @@
"bundled": true,
"optional": true,
"requires": {
- "co": "4.6.0",
- "json-stable-stringify": "1.0.1"
+ "co": "^4.6.0",
+ "json-stable-stringify": "^1.0.1"
}
},
"ansi-regex": {
@@ -2151,8 +2182,8 @@
"bundled": true,
"optional": true,
"requires": {
- "delegates": "1.0.0",
- "readable-stream": "2.2.9"
+ "delegates": "^1.0.0",
+ "readable-stream": "^2.0.6"
}
},
"asn1": {
@@ -2189,28 +2220,28 @@
"bundled": true,
"optional": true,
"requires": {
- "tweetnacl": "0.14.5"
+ "tweetnacl": "^0.14.3"
}
},
"block-stream": {
"version": "0.0.9",
"bundled": true,
"requires": {
- "inherits": "2.0.3"
+ "inherits": "~2.0.0"
}
},
"boom": {
"version": "2.10.1",
"bundled": true,
"requires": {
- "hoek": "2.16.3"
+ "hoek": "2.x.x"
}
},
"brace-expansion": {
"version": "1.1.7",
"bundled": true,
"requires": {
- "balanced-match": "0.4.2",
+ "balanced-match": "^0.4.1",
"concat-map": "0.0.1"
}
},
@@ -2236,7 +2267,7 @@
"version": "1.0.5",
"bundled": true,
"requires": {
- "delayed-stream": "1.0.0"
+ "delayed-stream": "~1.0.0"
}
},
"concat-map": {
@@ -2255,7 +2286,7 @@
"version": "2.0.5",
"bundled": true,
"requires": {
- "boom": "2.10.1"
+ "boom": "2.x.x"
}
},
"dashdash": {
@@ -2263,7 +2294,7 @@
"bundled": true,
"optional": true,
"requires": {
- "assert-plus": "1.0.0"
+ "assert-plus": "^1.0.0"
},
"dependencies": {
"assert-plus": {
@@ -2305,7 +2336,7 @@
"bundled": true,
"optional": true,
"requires": {
- "jsbn": "0.1.1"
+ "jsbn": "~0.1.0"
}
},
"extend": {
@@ -2327,9 +2358,9 @@
"bundled": true,
"optional": true,
"requires": {
- "asynckit": "0.4.0",
- "combined-stream": "1.0.5",
- "mime-types": "2.1.15"
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.5",
+ "mime-types": "^2.1.12"
}
},
"fs.realpath": {
@@ -2340,10 +2371,10 @@
"version": "1.0.11",
"bundled": true,
"requires": {
- "graceful-fs": "4.1.11",
- "inherits": "2.0.3",
- "mkdirp": "0.5.1",
- "rimraf": "2.6.1"
+ "graceful-fs": "^4.1.2",
+ "inherits": "~2.0.0",
+ "mkdirp": ">=0.5 0",
+ "rimraf": "2"
}
},
"fstream-ignore": {
@@ -2351,9 +2382,9 @@
"bundled": true,
"optional": true,
"requires": {
- "fstream": "1.0.11",
- "inherits": "2.0.3",
- "minimatch": "3.0.4"
+ "fstream": "^1.0.0",
+ "inherits": "2",
+ "minimatch": "^3.0.0"
}
},
"gauge": {
@@ -2361,14 +2392,14 @@
"bundled": 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"
+ "aproba": "^1.0.3",
+ "console-control-strings": "^1.0.0",
+ "has-unicode": "^2.0.0",
+ "object-assign": "^4.1.0",
+ "signal-exit": "^3.0.0",
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1",
+ "wide-align": "^1.1.0"
}
},
"getpass": {
@@ -2376,7 +2407,7 @@
"bundled": true,
"optional": true,
"requires": {
- "assert-plus": "1.0.0"
+ "assert-plus": "^1.0.0"
},
"dependencies": {
"assert-plus": {
@@ -2390,12 +2421,12 @@
"version": "7.1.2",
"bundled": 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"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
}
},
"graceful-fs": {
@@ -2412,8 +2443,8 @@
"bundled": true,
"optional": true,
"requires": {
- "ajv": "4.11.8",
- "har-schema": "1.0.5"
+ "ajv": "^4.9.1",
+ "har-schema": "^1.0.5"
}
},
"has-unicode": {
@@ -2425,10 +2456,10 @@
"version": "3.1.3",
"bundled": true,
"requires": {
- "boom": "2.10.1",
- "cryptiles": "2.0.5",
- "hoek": "2.16.3",
- "sntp": "1.0.9"
+ "boom": "2.x.x",
+ "cryptiles": "2.x.x",
+ "hoek": "2.x.x",
+ "sntp": "1.x.x"
}
},
"hoek": {
@@ -2440,17 +2471,17 @@
"bundled": true,
"optional": true,
"requires": {
- "assert-plus": "0.2.0",
- "jsprim": "1.4.0",
- "sshpk": "1.13.0"
+ "assert-plus": "^0.2.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
}
},
"inflight": {
"version": "1.0.6",
"bundled": true,
"requires": {
- "once": "1.4.0",
- "wrappy": "1.0.2"
+ "once": "^1.3.0",
+ "wrappy": "1"
}
},
"inherits": {
@@ -2466,7 +2497,7 @@
"version": "1.0.0",
"bundled": true,
"requires": {
- "number-is-nan": "1.0.1"
+ "number-is-nan": "^1.0.0"
}
},
"is-typedarray": {
@@ -2488,7 +2519,7 @@
"bundled": true,
"optional": true,
"requires": {
- "jsbn": "0.1.1"
+ "jsbn": "~0.1.0"
}
},
"jsbn": {
@@ -2506,7 +2537,7 @@
"bundled": true,
"optional": true,
"requires": {
- "jsonify": "0.0.0"
+ "jsonify": "~0.0.0"
}
},
"json-stringify-safe": {
@@ -2545,14 +2576,14 @@
"version": "2.1.15",
"bundled": true,
"requires": {
- "mime-db": "1.27.0"
+ "mime-db": "~1.27.0"
}
},
"minimatch": {
"version": "3.0.4",
"bundled": true,
"requires": {
- "brace-expansion": "1.1.7"
+ "brace-expansion": "^1.1.7"
}
},
"minimist": {
@@ -2576,17 +2607,17 @@
"bundled": true,
"optional": true,
"requires": {
- "detect-libc": "1.0.2",
+ "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",
+ "mkdirp": "^0.5.1",
+ "nopt": "^4.0.1",
+ "npmlog": "^4.0.2",
+ "rc": "^1.1.7",
"request": "2.81.0",
- "rimraf": "2.6.1",
- "semver": "5.3.0",
- "tar": "2.2.1",
- "tar-pack": "3.4.0"
+ "rimraf": "^2.6.1",
+ "semver": "^5.3.0",
+ "tar": "^2.2.1",
+ "tar-pack": "^3.4.0"
}
},
"nopt": {
@@ -2594,8 +2625,8 @@
"bundled": true,
"optional": true,
"requires": {
- "abbrev": "1.1.0",
- "osenv": "0.1.4"
+ "abbrev": "1",
+ "osenv": "^0.1.4"
}
},
"npmlog": {
@@ -2603,10 +2634,10 @@
"bundled": 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"
+ "are-we-there-yet": "~1.1.2",
+ "console-control-strings": "~1.1.0",
+ "gauge": "~2.7.3",
+ "set-blocking": "~2.0.0"
}
},
"number-is-nan": {
@@ -2627,7 +2658,7 @@
"version": "1.4.0",
"bundled": true,
"requires": {
- "wrappy": "1.0.2"
+ "wrappy": "1"
}
},
"os-homedir": {
@@ -2645,8 +2676,8 @@
"bundled": true,
"optional": true,
"requires": {
- "os-homedir": "1.0.2",
- "os-tmpdir": "1.0.2"
+ "os-homedir": "^1.0.0",
+ "os-tmpdir": "^1.0.0"
}
},
"path-is-absolute": {
@@ -2677,10 +2708,10 @@
"bundled": true,
"optional": true,
"requires": {
- "deep-extend": "0.4.2",
- "ini": "1.3.4",
- "minimist": "1.2.0",
- "strip-json-comments": "2.0.1"
+ "deep-extend": "~0.4.0",
+ "ini": "~1.3.0",
+ "minimist": "^1.2.0",
+ "strip-json-comments": "~2.0.1"
},
"dependencies": {
"minimist": {
@@ -2694,13 +2725,13 @@
"version": "2.2.9",
"bundled": 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"
+ "buffer-shims": "~1.0.0",
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.1",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~1.0.6",
+ "string_decoder": "~1.0.0",
+ "util-deprecate": "~1.0.1"
}
},
"request": {
@@ -2708,35 +2739,35 @@
"bundled": 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"
+ "aws-sign2": "~0.6.0",
+ "aws4": "^1.2.1",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.5",
+ "extend": "~3.0.0",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.1.1",
+ "har-validator": "~4.2.1",
+ "hawk": "~3.1.3",
+ "http-signature": "~1.1.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.7",
+ "oauth-sign": "~0.8.1",
+ "performance-now": "^0.2.0",
+ "qs": "~6.4.0",
+ "safe-buffer": "^5.0.1",
+ "stringstream": "~0.0.4",
+ "tough-cookie": "~2.3.0",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.0.0"
}
},
"rimraf": {
"version": "2.6.1",
"bundled": true,
"requires": {
- "glob": "7.1.2"
+ "glob": "^7.0.5"
}
},
"safe-buffer": {
@@ -2762,7 +2793,7 @@
"version": "1.0.9",
"bundled": true,
"requires": {
- "hoek": "2.16.3"
+ "hoek": "2.x.x"
}
},
"sshpk": {
@@ -2770,15 +2801,15 @@
"bundled": 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"
+ "asn1": "~0.2.3",
+ "assert-plus": "^1.0.0",
+ "bcrypt-pbkdf": "^1.0.0",
+ "dashdash": "^1.12.0",
+ "ecc-jsbn": "~0.1.1",
+ "getpass": "^0.1.1",
+ "jodid25519": "^1.0.0",
+ "jsbn": "~0.1.0",
+ "tweetnacl": "~0.14.0"
},
"dependencies": {
"assert-plus": {
@@ -2792,16 +2823,16 @@
"version": "1.0.2",
"bundled": true,
"requires": {
- "code-point-at": "1.1.0",
- "is-fullwidth-code-point": "1.0.0",
- "strip-ansi": "3.0.1"
+ "code-point-at": "^1.0.0",
+ "is-fullwidth-code-point": "^1.0.0",
+ "strip-ansi": "^3.0.0"
}
},
"string_decoder": {
"version": "1.0.1",
"bundled": true,
"requires": {
- "safe-buffer": "5.0.1"
+ "safe-buffer": "^5.0.1"
}
},
"stringstream": {
@@ -2813,7 +2844,7 @@
"version": "3.0.1",
"bundled": true,
"requires": {
- "ansi-regex": "2.1.1"
+ "ansi-regex": "^2.0.0"
}
},
"strip-json-comments": {
@@ -2825,9 +2856,9 @@
"version": "2.2.1",
"bundled": true,
"requires": {
- "block-stream": "0.0.9",
- "fstream": "1.0.11",
- "inherits": "2.0.3"
+ "block-stream": "*",
+ "fstream": "^1.0.2",
+ "inherits": "2"
}
},
"tar-pack": {
@@ -2835,14 +2866,14 @@
"bundled": 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"
+ "debug": "^2.2.0",
+ "fstream": "^1.0.10",
+ "fstream-ignore": "^1.0.5",
+ "once": "^1.3.3",
+ "readable-stream": "^2.1.4",
+ "rimraf": "^2.5.1",
+ "tar": "^2.2.1",
+ "uid-number": "^0.0.6"
}
},
"tough-cookie": {
@@ -2850,7 +2881,7 @@
"bundled": true,
"optional": true,
"requires": {
- "punycode": "1.4.1"
+ "punycode": "^1.4.1"
}
},
"tunnel-agent": {
@@ -2858,7 +2889,7 @@
"bundled": true,
"optional": true,
"requires": {
- "safe-buffer": "5.0.1"
+ "safe-buffer": "^5.0.1"
}
},
"tweetnacl": {
@@ -2893,7 +2924,7 @@
"bundled": true,
"optional": true,
"requires": {
- "string-width": "1.0.2"
+ "string-width": "^1.0.2"
}
},
"wrappy": {
@@ -2907,11 +2938,11 @@
"resolved": "https://registry.npmjs.org/gauge/-/gauge-1.2.7.tgz",
"integrity": "sha1-6c7FSD09TuDvRLYKfZnkk14TbZM=",
"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"
+ "ansi": "^0.3.0",
+ "has-unicode": "^2.0.0",
+ "lodash.pad": "^4.1.0",
+ "lodash.padend": "^4.1.0",
+ "lodash.padstart": "^4.1.0"
}
},
"get-caller-file": {
@@ -2927,7 +2958,7 @@
"version": "https://r.cnpmjs.org/getpass/download/getpass-0.1.7.tgz",
"integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
"requires": {
- "assert-plus": "https://registry.cnpmjs.org/assert-plus/download/assert-plus-1.0.0.tgz"
+ "assert-plus": "^1.0.0"
},
"dependencies": {
"assert-plus": {
@@ -2940,35 +2971,35 @@
"version": "https://registry.cnpmjs.org/glob/download/glob-7.1.1.tgz",
"integrity": "sha1-gFIR3wT6rxxjo2ADBs31reULLsg=",
"requires": {
- "fs.realpath": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "inflight": "https://registry.cnpmjs.org/inflight/download/inflight-1.0.6.tgz",
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
- "once": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "path-is-absolute": "https://registry.cnpmjs.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.2",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
}
},
"glob-base": {
"version": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz",
"integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=",
"requires": {
- "glob-parent": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz",
- "is-glob": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz"
+ "glob-parent": "^2.0.0",
+ "is-glob": "^2.0.0"
}
},
"glob-parent": {
"version": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz",
"integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=",
"requires": {
- "is-glob": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz"
+ "is-glob": "^2.0.0"
}
},
"global": {
"version": "https://r.cnpmjs.org/global/download/global-4.3.2.tgz",
"integrity": "sha1-52mJJopsdMOJCLEwWxD8DjlOnQ8=",
"requires": {
- "min-document": "https://registry.cnpmjs.org/min-document/download/min-document-2.19.0.tgz",
- "process": "https://registry.cnpmjs.org/process/download/process-0.5.2.tgz"
+ "min-document": "^2.19.0",
+ "process": "~0.5.1"
}
},
"globals": {
@@ -2976,11 +3007,11 @@
"integrity": "sha1-DAymltm5u2lNLlRwvTd3fKrVAoY="
},
"glogg": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz",
- "integrity": "sha1-f+DxmfV6yQbPUS/urY+Q7kooT8U=",
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz",
+ "integrity": "sha512-ynYqXLoluBKf9XGR1gA59yEJisIL7YHEH4xr3ZziHB5/yl4qWfaK8Js9jGe6gBGCSCKVqiyO30WnRZADvemUNw==",
"requires": {
- "sparkles": "1.0.0"
+ "sparkles": "^1.0.0"
}
},
"graceful-fs": {
@@ -2996,24 +3027,24 @@
"resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz",
"integrity": "sha1-AFTh50RQLifATBh8PsxQXdVLu08=",
"requires": {
- "array-differ": "1.0.0",
- "array-uniq": "1.0.3",
- "beeper": "1.1.1",
- "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
- "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": "https://registry.cnpmjs.org/minimist/download/minimist-1.2.0.tgz",
- "multipipe": "0.1.2",
- "object-assign": "3.0.0",
+ "array-differ": "^1.0.0",
+ "array-uniq": "^1.0.2",
+ "beeper": "^1.0.0",
+ "chalk": "^1.0.0",
+ "dateformat": "^2.0.0",
+ "fancy-log": "^1.1.0",
+ "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.0.0",
+ "minimist": "^1.1.0",
+ "multipipe": "^0.1.2",
+ "object-assign": "^3.0.0",
"replace-ext": "0.0.1",
- "through2": "2.0.3",
- "vinyl": "0.5.3"
+ "through2": "^2.0.0",
+ "vinyl": "^0.5.0"
},
"dependencies": {
"object-assign": {
@@ -3028,7 +3059,7 @@
"resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz",
"integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=",
"requires": {
- "glogg": "1.0.0"
+ "glogg": "^1.0.0"
}
},
"handlebars": {
@@ -3037,10 +3068,10 @@
"integrity": "sha1-Ywo13+ApS8KB7a5v/F0yn8eYLcw=",
"dev": true,
"requires": {
- "async": "1.5.2",
- "optimist": "https://registry.cnpmjs.org/optimist/download/optimist-0.6.1.tgz",
- "source-map": "0.4.4",
- "uglify-js": "2.8.29"
+ "async": "^1.4.0",
+ "optimist": "^0.6.1",
+ "source-map": "^0.4.4",
+ "uglify-js": "^2.6"
},
"dependencies": {
"async": {
@@ -3055,7 +3086,7 @@
"integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=",
"dev": true,
"requires": {
- "amdefine": "1.0.1"
+ "amdefine": ">=0.0.4"
}
}
}
@@ -3068,28 +3099,29 @@
"version": "https://r.cnpmjs.org/har-validator/download/har-validator-4.2.1.tgz",
"integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=",
"requires": {
- "ajv": "https://r.cnpmjs.org/ajv/download/ajv-4.11.8.tgz",
- "har-schema": "https://r.cnpmjs.org/har-schema/download/har-schema-1.0.5.tgz"
+ "ajv": "^4.9.1",
+ "har-schema": "^1.0.5"
}
},
"has-ansi": {
"version": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
"integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=",
"requires": {
- "ansi-regex": "https://r.cnpmjs.org/ansi-regex/download/ansi-regex-2.1.1.tgz"
+ "ansi-regex": "^2.0.0"
}
},
"has-flag": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz",
- "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE="
+ "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=",
"requires": {
- "sparkles": "1.0.0"
+ "sparkles": "^1.0.0"
}
},
"has-unicode": {
@@ -3101,10 +3133,10 @@
"version": "https://registry.cnpmjs.org/hawk/download/hawk-3.1.3.tgz",
"integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=",
"requires": {
- "boom": "https://registry.cnpmjs.org/boom/download/boom-2.10.1.tgz",
- "cryptiles": "https://registry.cnpmjs.org/cryptiles/download/cryptiles-2.0.5.tgz",
- "hoek": "https://registry.cnpmjs.org/hoek/download/hoek-2.16.3.tgz",
- "sntp": "https://registry.cnpmjs.org/sntp/download/sntp-1.0.9.tgz"
+ "boom": "2.x.x",
+ "cryptiles": "2.x.x",
+ "hoek": "2.x.x",
+ "sntp": "1.x.x"
}
},
"hoek": {
@@ -3115,8 +3147,8 @@
"version": "https://registry.cnpmjs.org/home-or-tmp/download/home-or-tmp-2.0.0.tgz",
"integrity": "sha1-42w/LSyufXRqhX440Y1fMqeILbg=",
"requires": {
- "os-homedir": "https://registry.cnpmjs.org/os-homedir/download/os-homedir-1.0.2.tgz",
- "os-tmpdir": "https://registry.cnpmjs.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz"
+ "os-homedir": "^1.0.0",
+ "os-tmpdir": "^1.0.1"
}
},
"hosted-git-info": {
@@ -3129,7 +3161,7 @@
"integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==",
"dev": true,
"requires": {
- "whatwg-encoding": "1.0.3"
+ "whatwg-encoding": "^1.0.1"
}
},
"http-errors": {
@@ -3137,23 +3169,26 @@
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz",
"integrity": "sha1-GX4izevUGYWF6GlO9nhhl7ke2UI=",
"requires": {
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "statuses": "1.4.0"
+ "inherits": "~2.0.1",
+ "statuses": "1"
}
},
"http-signature": {
"version": "https://registry.cnpmjs.org/http-signature/download/http-signature-1.1.1.tgz",
"integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=",
"requires": {
- "assert-plus": "https://registry.cnpmjs.org/assert-plus/download/assert-plus-0.2.0.tgz",
- "jsprim": "https://r.cnpmjs.org/jsprim/download/jsprim-1.4.0.tgz",
- "sshpk": "https://r.cnpmjs.org/sshpk/download/sshpk-1.13.0.tgz"
+ "assert-plus": "^0.2.0",
+ "jsprim": "^1.2.2",
+ "sshpk": "^1.7.0"
}
},
"iconv-lite": {
- "version": "0.4.11",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz",
- "integrity": "sha1-LstC/SlHRJIiCaLnxATayHk9it4="
+ "version": "0.4.21",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.21.tgz",
+ "integrity": "sha512-En5V9za5mBt2oUA03WGD3TwDv0MKAruqsuxstbMUZaj9W9k/m1CV/9py3l0L5kw9Bln8fdHQmzHSYtvpvTLpKw==",
+ "requires": {
+ "safer-buffer": "^2.1.0"
+ }
},
"image-size": {
"version": "0.6.2",
@@ -3169,8 +3204,8 @@
"version": "https://registry.cnpmjs.org/inflight/download/inflight-1.0.6.tgz",
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
"requires": {
- "once": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "wrappy": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
+ "once": "^1.3.0",
+ "wrappy": "1"
}
},
"inherits": {
@@ -3182,20 +3217,20 @@
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz",
"integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==",
"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": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
+ "ansi-escapes": "^3.0.0",
+ "chalk": "^2.0.0",
+ "cli-cursor": "^2.1.0",
+ "cli-width": "^2.0.0",
+ "external-editor": "^2.0.4",
+ "figures": "^2.0.0",
+ "lodash": "^4.3.0",
"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"
+ "run-async": "^2.2.0",
+ "rx-lite": "^4.0.8",
+ "rx-lite-aggregates": "^4.0.8",
+ "string-width": "^2.1.0",
+ "strip-ansi": "^4.0.0",
+ "through": "^2.3.6"
},
"dependencies": {
"ansi-regex": {
@@ -3204,23 +3239,28 @@
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
},
"ansi-styles": {
- "version": "3.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz",
- "integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz",
- "integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz",
+ "integrity": "sha512-ZM4j2/ld/YZDc3Ma8PgN7gyAk+kHMMMyzLNryCPGhWrsfAuDVeuid5bpRFTDgMH9JBK2lA4dyyAkkZYF/WcqDQ==",
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
}
},
+ "has-flag": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
+ },
"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",
@@ -3231,8 +3271,8 @@
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
"requires": {
- "is-fullwidth-code-point": "2.0.0",
- "strip-ansi": "4.0.0"
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
}
},
"strip-ansi": {
@@ -3240,15 +3280,15 @@
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"requires": {
- "ansi-regex": "3.0.0"
+ "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=",
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.3.0.tgz",
+ "integrity": "sha512-0aP01LLIskjKs3lq52EC0aGBAJhLq7B2Rd8HC/DR/PtNNpcLilNmHC12O+hu0usQpo7wtHNRqtrhBwtDb0+dNg==",
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^3.0.0"
}
}
}
@@ -3257,7 +3297,7 @@
"version": "https://r.cnpmjs.org/invariant/download/invariant-2.2.2.tgz",
"integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=",
"requires": {
- "loose-envify": "https://r.cnpmjs.org/loose-envify/download/loose-envify-1.3.1.tgz"
+ "loose-envify": "^1.0.0"
}
},
"invert-kv": {
@@ -3276,7 +3316,7 @@
"version": "https://registry.cnpmjs.org/is-builtin-module/download/is-builtin-module-1.0.0.tgz",
"integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=",
"requires": {
- "builtin-modules": "https://registry.cnpmjs.org/builtin-modules/download/builtin-modules-1.1.1.tgz"
+ "builtin-modules": "^1.0.0"
}
},
"is-ci": {
@@ -3285,7 +3325,7 @@
"integrity": "sha1-9zkzayYyNlBhqdSCcM1WrjNpMY4=",
"dev": true,
"requires": {
- "ci-info": "1.1.2"
+ "ci-info": "^1.0.0"
}
},
"is-dotfile": {
@@ -3296,7 +3336,7 @@
"version": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz",
"integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=",
"requires": {
- "is-primitive": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz"
+ "is-primitive": "^2.0.0"
}
},
"is-extendable": {
@@ -3311,28 +3351,28 @@
"version": "https://registry.cnpmjs.org/is-finite/download/is-finite-1.0.2.tgz",
"integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=",
"requires": {
- "number-is-nan": "https://registry.cnpmjs.org/number-is-nan/download/number-is-nan-1.0.1.tgz"
+ "number-is-nan": "^1.0.0"
}
},
"is-fullwidth-code-point": {
"version": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
"integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
"requires": {
- "number-is-nan": "https://registry.cnpmjs.org/number-is-nan/download/number-is-nan-1.0.1.tgz"
+ "number-is-nan": "^1.0.0"
}
},
"is-glob": {
"version": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
"integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=",
"requires": {
- "is-extglob": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"
+ "is-extglob": "^1.0.0"
}
},
"is-number": {
"version": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz",
"integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=",
"requires": {
- "kind-of": "https://r.cnpmjs.org/kind-of/download/kind-of-3.2.0.tgz"
+ "kind-of": "^3.0.2"
}
},
"is-posix-bracket": {
@@ -3374,15 +3414,16 @@
"version": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz",
"integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=",
"requires": {
- "isarray": "https://r.cnpmjs.org/isarray/download/isarray-1.0.0.tgz"
+ "isarray": "1.0.0"
}
},
"isomorphic-fetch": {
- "version": "https://registry.cnpmjs.org/isomorphic-fetch/download/isomorphic-fetch-2.2.1.tgz",
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
"integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=",
"requires": {
- "node-fetch": "https://registry.cnpmjs.org/node-fetch/download/node-fetch-1.6.3.tgz",
- "whatwg-fetch": "https://r.cnpmjs.org/whatwg-fetch/download/whatwg-fetch-1.1.1.tgz"
+ "node-fetch": "1.7.3",
+ "whatwg-fetch": "2.0.4"
}
},
"isstream": {
@@ -3395,17 +3436,17 @@
"integrity": "sha512-oFCwXvd65amgaPCzqrR+a2XjanS1MvpXN6l/MlMUTv6uiA1NOgGX+I0uyq8Lg3GDxsxPsaP1049krz3hIJ5+KA==",
"dev": true,
"requires": {
- "async": "https://r.cnpmjs.org/async/download/async-2.4.0.tgz",
- "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": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "once": "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
+ "async": "^2.1.4",
+ "fileset": "^2.0.2",
+ "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.7.0",
+ "mkdirp": "^0.5.1",
+ "once": "^1.4.0"
}
},
"istanbul-lib-coverage": {
@@ -3420,7 +3461,7 @@
"integrity": "sha512-U3qEgwVDUerZ0bt8cfl3dSP3S6opBoOtk3ROO5f2EfBr/SRiD9FQqzwaZBqFORu8W7O0EXpai+k7kxHK13beRg==",
"dev": true,
"requires": {
- "append-transform": "0.4.0"
+ "append-transform": "^0.4.0"
}
},
"istanbul-lib-instrument": {
@@ -3429,13 +3470,13 @@
"integrity": "sha512-RQmXeQ7sphar7k7O1wTNzVczF9igKpaeGQAG9qR2L+BS4DCJNTI9nytRmIVYevwO0bbq+2CXvJmYDuz0gMrywA==",
"dev": true,
"requires": {
- "babel-generator": "https://r.cnpmjs.org/babel-generator/download/babel-generator-6.24.1.tgz",
- "babel-template": "https://r.cnpmjs.org/babel-template/download/babel-template-6.24.1.tgz",
- "babel-traverse": "https://r.cnpmjs.org/babel-traverse/download/babel-traverse-6.24.1.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "babylon": "6.18.0",
- "istanbul-lib-coverage": "1.1.1",
- "semver": "https://r.cnpmjs.org/semver/download/semver-5.3.0.tgz"
+ "babel-generator": "^6.18.0",
+ "babel-template": "^6.16.0",
+ "babel-traverse": "^6.18.0",
+ "babel-types": "^6.18.0",
+ "babylon": "^6.18.0",
+ "istanbul-lib-coverage": "^1.1.1",
+ "semver": "^5.3.0"
},
"dependencies": {
"babylon": {
@@ -3452,10 +3493,10 @@
"integrity": "sha512-UTv4VGx+HZivJQwAo1wnRwe1KTvFpfi/NYwN7DcsrdzMXwpRT/Yb6r4SBPoHWj4VuQPakR32g4PUUeyKkdDkBA==",
"dev": true,
"requires": {
- "istanbul-lib-coverage": "1.1.1",
- "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "path-parse": "1.0.5",
- "supports-color": "3.2.3"
+ "istanbul-lib-coverage": "^1.1.1",
+ "mkdirp": "^0.5.1",
+ "path-parse": "^1.0.5",
+ "supports-color": "^3.1.2"
},
"dependencies": {
"has-flag": {
@@ -3470,7 +3511,7 @@
"integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=",
"dev": true,
"requires": {
- "has-flag": "1.0.0"
+ "has-flag": "^1.0.0"
}
}
}
@@ -3481,11 +3522,11 @@
"integrity": "sha512-8BfdqSfEdtip7/wo1RnrvLpHVEd8zMZEDmOFEnpC6dg0vXflHt9nvoAyQUzig2uMSXfF2OBEYBV3CVjIL9JvaQ==",
"dev": true,
"requires": {
- "debug": "3.1.0",
- "istanbul-lib-coverage": "1.1.1",
- "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "rimraf": "https://r.cnpmjs.org/rimraf/download/rimraf-2.6.1.tgz",
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz"
+ "debug": "^3.1.0",
+ "istanbul-lib-coverage": "^1.1.1",
+ "mkdirp": "^0.5.1",
+ "rimraf": "^2.6.1",
+ "source-map": "^0.5.3"
},
"dependencies": {
"debug": {
@@ -3511,7 +3552,7 @@
"integrity": "sha512-ZEelkHh8hrZNI5xDaKwPMFwDsUf5wIEI2bXAFGp1e6deR2mnEKBPhLJEgr4ZBt8Gi6Mj38E/C8kcy9XLggVO2Q==",
"dev": true,
"requires": {
- "handlebars": "4.0.11"
+ "handlebars": "^4.0.3"
}
},
"jest": {
@@ -3520,7 +3561,7 @@
"integrity": "sha512-mXN0ppPvWYoIcC+R+ctKxAJ28xkt/Z5Js875padm4GbgUn6baeR5N4Ng6LjatIRpUQDZVJABT7Y4gucFjPryfw==",
"dev": true,
"requires": {
- "jest-cli": "21.2.1"
+ "jest-cli": "^21.2.1"
},
"dependencies": {
"ansi-regex": {
@@ -3535,7 +3576,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -3544,9 +3585,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"glob": {
@@ -3555,12 +3596,12 @@
"integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
"dev": true,
"requires": {
- "fs.realpath": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "inflight": "https://registry.cnpmjs.org/inflight/download/inflight-1.0.6.tgz",
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "minimatch": "3.0.4",
- "once": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "path-is-absolute": "https://registry.cnpmjs.org/path-is-absolute/download/path-is-absolute-1.0.1.tgz"
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.0.4",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
}
},
"jest-cli": {
@@ -3569,35 +3610,35 @@
"integrity": "sha512-T1BzrbFxDIW/LLYQqVfo94y/hhaj1NzVQkZgBumAC+sxbjMROI7VkihOdxNR758iYbQykL2ZOWUBurFgkQrzdg==",
"dev": true,
"requires": {
- "ansi-escapes": "3.0.0",
- "chalk": "2.3.0",
- "glob": "7.1.2",
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "is-ci": "1.0.10",
- "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": "21.2.0",
- "jest-config": "21.2.1",
- "jest-environment-jsdom": "21.2.1",
- "jest-haste-map": "21.2.0",
- "jest-message-util": "21.2.1",
- "jest-regex-util": "21.2.0",
- "jest-resolve-dependencies": "21.2.0",
- "jest-runner": "21.2.1",
- "jest-runtime": "21.2.1",
- "jest-snapshot": "21.2.1",
- "jest-util": "21.2.1",
- "micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
- "node-notifier": "https://r.cnpmjs.org/node-notifier/download/node-notifier-5.1.2.tgz",
- "pify": "3.0.0",
- "slash": "https://registry.cnpmjs.org/slash/download/slash-1.0.0.tgz",
- "string-length": "2.0.0",
- "strip-ansi": "4.0.0",
- "which": "https://r.cnpmjs.org/which/download/which-1.2.14.tgz",
- "worker-farm": "https://registry.cnpmjs.org/worker-farm/download/worker-farm-1.3.1.tgz",
- "yargs": "9.0.1"
+ "ansi-escapes": "^3.0.0",
+ "chalk": "^2.0.1",
+ "glob": "^7.1.2",
+ "graceful-fs": "^4.1.11",
+ "is-ci": "^1.0.10",
+ "istanbul-api": "^1.1.1",
+ "istanbul-lib-coverage": "^1.0.1",
+ "istanbul-lib-instrument": "^1.4.2",
+ "istanbul-lib-source-maps": "^1.1.0",
+ "jest-changed-files": "^21.2.0",
+ "jest-config": "^21.2.1",
+ "jest-environment-jsdom": "^21.2.1",
+ "jest-haste-map": "^21.2.0",
+ "jest-message-util": "^21.2.1",
+ "jest-regex-util": "^21.2.0",
+ "jest-resolve-dependencies": "^21.2.0",
+ "jest-runner": "^21.2.1",
+ "jest-runtime": "^21.2.1",
+ "jest-snapshot": "^21.2.1",
+ "jest-util": "^21.2.1",
+ "micromatch": "^2.3.11",
+ "node-notifier": "^5.0.2",
+ "pify": "^3.0.0",
+ "slash": "^1.0.0",
+ "string-length": "^2.0.0",
+ "strip-ansi": "^4.0.0",
+ "which": "^1.2.12",
+ "worker-farm": "^1.3.1",
+ "yargs": "^9.0.0"
}
},
"minimatch": {
@@ -3606,7 +3647,7 @@
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
"dev": true,
"requires": {
- "brace-expansion": "https://r.cnpmjs.org/brace-expansion/download/brace-expansion-1.1.7.tgz"
+ "brace-expansion": "^1.1.7"
}
},
"pify": {
@@ -3621,7 +3662,7 @@
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
- "ansi-regex": "3.0.0"
+ "ansi-regex": "^3.0.0"
}
},
"supports-color": {
@@ -3630,7 +3671,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -3641,7 +3682,7 @@
"integrity": "sha512-+lCNP1IZLwN1NOIvBcV5zEL6GENK6TXrDj4UxWIeLvIsIDa+gf6J7hkqsW2qVVt/wvH65rVvcPwqXdps5eclTQ==",
"dev": true,
"requires": {
- "throat": "4.1.0"
+ "throat": "^4.0.0"
}
},
"jest-config": {
@@ -3650,17 +3691,17 @@
"integrity": "sha512-fJru5HtlD/5l2o25eY9xT0doK3t2dlglrqoGpbktduyoI0T5CwuB++2YfoNZCrgZipTwPuAGonYv0q7+8yDc/A==",
"dev": true,
"requires": {
- "chalk": "2.3.0",
- "glob": "https://registry.cnpmjs.org/glob/download/glob-7.1.1.tgz",
- "jest-environment-jsdom": "21.2.1",
- "jest-environment-node": "21.2.1",
- "jest-get-type": "21.2.0",
- "jest-jasmine2": "21.2.1",
- "jest-regex-util": "21.2.0",
- "jest-resolve": "21.2.0",
- "jest-util": "21.2.1",
- "jest-validate": "21.2.1",
- "pretty-format": "21.2.1"
+ "chalk": "^2.0.1",
+ "glob": "^7.1.1",
+ "jest-environment-jsdom": "^21.2.1",
+ "jest-environment-node": "^21.2.1",
+ "jest-get-type": "^21.2.0",
+ "jest-jasmine2": "^21.2.1",
+ "jest-regex-util": "^21.2.0",
+ "jest-resolve": "^21.2.0",
+ "jest-util": "^21.2.1",
+ "jest-validate": "^21.2.1",
+ "pretty-format": "^21.2.1"
},
"dependencies": {
"ansi-regex": {
@@ -3675,7 +3716,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -3684,9 +3725,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"pretty-format": {
@@ -3695,8 +3736,8 @@
"integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==",
"dev": true,
"requires": {
- "ansi-regex": "3.0.0",
- "ansi-styles": "3.2.0"
+ "ansi-regex": "^3.0.0",
+ "ansi-styles": "^3.2.0"
}
},
"supports-color": {
@@ -3705,7 +3746,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -3716,10 +3757,10 @@
"integrity": "sha512-E5fu6r7PvvPr5qAWE1RaUwIh/k6Zx/3OOkZ4rk5dBJkEWRrUuSgbMt2EO8IUTPTd6DOqU3LW6uTIwX5FRvXoFA==",
"dev": true,
"requires": {
- "chalk": "2.3.0",
- "diff": "3.4.0",
- "jest-get-type": "21.2.0",
- "pretty-format": "21.2.1"
+ "chalk": "^2.0.1",
+ "diff": "^3.2.0",
+ "jest-get-type": "^21.2.0",
+ "pretty-format": "^21.2.1"
},
"dependencies": {
"ansi-regex": {
@@ -3734,7 +3775,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -3743,9 +3784,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"pretty-format": {
@@ -3754,8 +3795,8 @@
"integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==",
"dev": true,
"requires": {
- "ansi-regex": "3.0.0",
- "ansi-styles": "3.2.0"
+ "ansi-regex": "^3.0.0",
+ "ansi-styles": "^3.2.0"
}
},
"supports-color": {
@@ -3764,7 +3805,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -3781,9 +3822,9 @@
"integrity": "sha512-mecaeNh0eWmzNrUNMWARysc0E9R96UPBamNiOCYL28k7mksb1d0q6DD38WKP7ABffjnXyUWJPVaWRgUOivwXwg==",
"dev": true,
"requires": {
- "jest-mock": "21.2.0",
- "jest-util": "21.2.1",
- "jsdom": "9.12.0"
+ "jest-mock": "^21.2.0",
+ "jest-util": "^21.2.1",
+ "jsdom": "^9.12.0"
}
},
"jest-environment-node": {
@@ -3792,8 +3833,8 @@
"integrity": "sha512-R211867wx9mVBVHzrjGRGTy5cd05K7eqzQl/WyZixR/VkJ4FayS8qkKXZyYnwZi6Rxo6WEV81cDbiUx/GfuLNw==",
"dev": true,
"requires": {
- "jest-mock": "21.2.0",
- "jest-util": "21.2.1"
+ "jest-mock": "^21.2.0",
+ "jest-util": "^21.2.1"
}
},
"jest-get-type": {
@@ -3808,12 +3849,12 @@
"integrity": "sha512-5LhsY/loPH7wwOFRMs+PT4aIAORJ2qwgbpMFlbWbxfN0bk3ZCwxJ530vrbSiTstMkYLao6JwBkLhCJ5XbY7ZHw==",
"dev": true,
"requires": {
- "fb-watchman": "https://r.cnpmjs.org/fb-watchman/download/fb-watchman-2.0.0.tgz",
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "jest-docblock": "21.2.0",
- "micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
- "sane": "2.2.0",
- "worker-farm": "https://registry.cnpmjs.org/worker-farm/download/worker-farm-1.3.1.tgz"
+ "fb-watchman": "^2.0.0",
+ "graceful-fs": "^4.1.11",
+ "jest-docblock": "^21.2.0",
+ "micromatch": "^2.3.11",
+ "sane": "^2.0.0",
+ "worker-farm": "^1.3.1"
}
},
"jest-jasmine2": {
@@ -3822,14 +3863,14 @@
"integrity": "sha512-lw8FXXIEekD+jYNlStfgNsUHpfMWhWWCgHV7n0B7mA/vendH7vBFs8xybjQsDzJSduptBZJHqQX9SMssya9+3A==",
"dev": true,
"requires": {
- "chalk": "2.3.0",
- "expect": "21.2.1",
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "jest-diff": "21.2.1",
- "jest-matcher-utils": "21.2.1",
- "jest-message-util": "21.2.1",
- "jest-snapshot": "21.2.1",
- "p-cancelable": "0.3.0"
+ "chalk": "^2.0.1",
+ "expect": "^21.2.1",
+ "graceful-fs": "^4.1.11",
+ "jest-diff": "^21.2.1",
+ "jest-matcher-utils": "^21.2.1",
+ "jest-message-util": "^21.2.1",
+ "jest-snapshot": "^21.2.1",
+ "p-cancelable": "^0.3.0"
},
"dependencies": {
"ansi-styles": {
@@ -3838,7 +3879,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -3847,9 +3888,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"supports-color": {
@@ -3858,7 +3899,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -3869,9 +3910,9 @@
"integrity": "sha512-kn56My+sekD43dwQPrXBl9Zn9tAqwoy25xxe7/iY4u+mG8P3ALj5IK7MLHZ4Mi3xW7uWVCjGY8cm4PqgbsqMCg==",
"dev": true,
"requires": {
- "chalk": "2.3.0",
- "jest-get-type": "21.2.0",
- "pretty-format": "21.2.1"
+ "chalk": "^2.0.1",
+ "jest-get-type": "^21.2.0",
+ "pretty-format": "^21.2.1"
},
"dependencies": {
"ansi-regex": {
@@ -3886,7 +3927,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -3895,9 +3936,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"pretty-format": {
@@ -3906,8 +3947,8 @@
"integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==",
"dev": true,
"requires": {
- "ansi-regex": "3.0.0",
- "ansi-styles": "3.2.0"
+ "ansi-regex": "^3.0.0",
+ "ansi-styles": "^3.2.0"
}
},
"supports-color": {
@@ -3916,7 +3957,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -3927,9 +3968,9 @@
"integrity": "sha512-EbC1X2n0t9IdeMECJn2BOg7buOGivCvVNjqKMXTzQOu7uIfLml+keUfCALDh8o4rbtndIeyGU8/BKfoTr/LVDQ==",
"dev": true,
"requires": {
- "chalk": "2.3.0",
- "micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
- "slash": "https://registry.cnpmjs.org/slash/download/slash-1.0.0.tgz"
+ "chalk": "^2.0.1",
+ "micromatch": "^2.3.11",
+ "slash": "^1.0.0"
},
"dependencies": {
"ansi-styles": {
@@ -3938,7 +3979,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -3947,9 +3988,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"supports-color": {
@@ -3958,7 +3999,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -3981,9 +4022,9 @@
"integrity": "sha512-vefQ/Lr+VdNvHUZFQXWtOqHX3HEdOc2MtSahBO89qXywEbUxGPB9ZLP9+BHinkxb60UT2Q/tTDOS6rYc6Mwigw==",
"dev": true,
"requires": {
- "browser-resolve": "1.11.2",
- "chalk": "2.3.0",
- "is-builtin-module": "https://registry.cnpmjs.org/is-builtin-module/download/is-builtin-module-1.0.0.tgz"
+ "browser-resolve": "^1.11.2",
+ "chalk": "^2.0.1",
+ "is-builtin-module": "^1.0.0"
},
"dependencies": {
"ansi-styles": {
@@ -3992,7 +4033,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -4001,9 +4042,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"supports-color": {
@@ -4012,7 +4053,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -4023,7 +4064,7 @@
"integrity": "sha512-ok8ybRFU5ScaAcfufIQrCbdNJSRZ85mkxJ1EhUp8Bhav1W1/jv/rl1Q6QoVQHObNxmKnbHVKrfLZbCbOsXQ+bQ==",
"dev": true,
"requires": {
- "jest-regex-util": "21.2.0"
+ "jest-regex-util": "^21.2.0"
}
},
"jest-runner": {
@@ -4032,16 +4073,16 @@
"integrity": "sha512-Anb72BOQlHqF/zETqZ2K20dbYsnqW/nZO7jV8BYENl+3c44JhMrA8zd1lt52+N7ErnsQMd2HHKiVwN9GYSXmrg==",
"dev": true,
"requires": {
- "jest-config": "21.2.1",
- "jest-docblock": "21.2.0",
- "jest-haste-map": "21.2.0",
- "jest-jasmine2": "21.2.1",
- "jest-message-util": "21.2.1",
- "jest-runtime": "21.2.1",
- "jest-util": "21.2.1",
- "pify": "3.0.0",
- "throat": "4.1.0",
- "worker-farm": "https://registry.cnpmjs.org/worker-farm/download/worker-farm-1.3.1.tgz"
+ "jest-config": "^21.2.1",
+ "jest-docblock": "^21.2.0",
+ "jest-haste-map": "^21.2.0",
+ "jest-jasmine2": "^21.2.1",
+ "jest-message-util": "^21.2.1",
+ "jest-runtime": "^21.2.1",
+ "jest-util": "^21.2.1",
+ "pify": "^3.0.0",
+ "throat": "^4.0.0",
+ "worker-farm": "^1.3.1"
},
"dependencies": {
"pify": {
@@ -4058,23 +4099,23 @@
"integrity": "sha512-6omlpA3+NSE+rHwD0PQjNEjZeb2z+oRmuehMfM1tWQVum+E0WV3pFt26Am0DUfQkkPyTABvxITRjCUclYgSOsA==",
"dev": true,
"requires": {
- "babel-core": "https://r.cnpmjs.org/babel-core/download/babel-core-6.24.1.tgz",
- "babel-jest": "21.2.0",
- "babel-plugin-istanbul": "4.1.5",
- "chalk": "2.3.0",
- "convert-source-map": "https://r.cnpmjs.org/convert-source-map/download/convert-source-map-1.5.0.tgz",
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "jest-config": "21.2.1",
- "jest-haste-map": "21.2.0",
- "jest-regex-util": "21.2.0",
- "jest-resolve": "21.2.0",
- "jest-util": "21.2.1",
- "json-stable-stringify": "https://registry.cnpmjs.org/json-stable-stringify/download/json-stable-stringify-1.0.1.tgz",
- "micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
- "slash": "https://registry.cnpmjs.org/slash/download/slash-1.0.0.tgz",
+ "babel-core": "^6.0.0",
+ "babel-jest": "^21.2.0",
+ "babel-plugin-istanbul": "^4.0.0",
+ "chalk": "^2.0.1",
+ "convert-source-map": "^1.4.0",
+ "graceful-fs": "^4.1.11",
+ "jest-config": "^21.2.1",
+ "jest-haste-map": "^21.2.0",
+ "jest-regex-util": "^21.2.0",
+ "jest-resolve": "^21.2.0",
+ "jest-util": "^21.2.1",
+ "json-stable-stringify": "^1.0.1",
+ "micromatch": "^2.3.11",
+ "slash": "^1.0.0",
"strip-bom": "3.0.0",
- "write-file-atomic": "2.3.0",
- "yargs": "9.0.1"
+ "write-file-atomic": "^2.1.0",
+ "yargs": "^9.0.0"
},
"dependencies": {
"ansi-styles": {
@@ -4083,7 +4124,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -4092,9 +4133,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"strip-bom": {
@@ -4109,7 +4150,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
},
"write-file-atomic": {
@@ -4118,9 +4159,9 @@
"integrity": "sha512-xuPeK4OdjWqtfi59ylvVL0Yn35SF3zgcAcv7rBPFHVaEapaDr4GdGgm3j7ckTwH9wHL7fGmgfAnb0+THrHb8tA==",
"dev": true,
"requires": {
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "imurmurhash": "0.1.4",
- "signal-exit": "3.0.2"
+ "graceful-fs": "^4.1.11",
+ "imurmurhash": "^0.1.4",
+ "signal-exit": "^3.0.2"
}
}
}
@@ -4131,12 +4172,12 @@
"integrity": "sha512-bpaeBnDpdqaRTzN8tWg0DqOTo2DvD3StOemxn67CUd1p1Po+BUpvePAp44jdJ7Pxcjfg+42o4NHw1SxdCA2rvg==",
"dev": true,
"requires": {
- "chalk": "2.3.0",
- "jest-diff": "21.2.1",
- "jest-matcher-utils": "21.2.1",
- "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "natural-compare": "1.4.0",
- "pretty-format": "21.2.1"
+ "chalk": "^2.0.1",
+ "jest-diff": "^21.2.1",
+ "jest-matcher-utils": "^21.2.1",
+ "mkdirp": "^0.5.1",
+ "natural-compare": "^1.4.0",
+ "pretty-format": "^21.2.1"
},
"dependencies": {
"ansi-regex": {
@@ -4151,7 +4192,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -4160,9 +4201,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"pretty-format": {
@@ -4171,8 +4212,8 @@
"integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==",
"dev": true,
"requires": {
- "ansi-regex": "3.0.0",
- "ansi-styles": "3.2.0"
+ "ansi-regex": "^3.0.0",
+ "ansi-styles": "^3.2.0"
}
},
"supports-color": {
@@ -4181,7 +4222,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -4192,13 +4233,13 @@
"integrity": "sha512-r20W91rmHY3fnCoO7aOAlyfC51x2yeV3xF+prGsJAUsYhKeV670ZB8NO88Lwm7ASu8SdH0S+U+eFf498kjhA4g==",
"dev": true,
"requires": {
- "callsites": "2.0.0",
- "chalk": "2.3.0",
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "jest-message-util": "21.2.1",
- "jest-mock": "21.2.0",
- "jest-validate": "21.2.1",
- "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"
+ "callsites": "^2.0.0",
+ "chalk": "^2.0.1",
+ "graceful-fs": "^4.1.11",
+ "jest-message-util": "^21.2.1",
+ "jest-mock": "^21.2.0",
+ "jest-validate": "^21.2.1",
+ "mkdirp": "^0.5.1"
},
"dependencies": {
"ansi-styles": {
@@ -4207,7 +4248,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -4216,9 +4257,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"supports-color": {
@@ -4227,7 +4268,7 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
@@ -4238,10 +4279,10 @@
"integrity": "sha512-k4HLI1rZQjlU+EC682RlQ6oZvLrE5SCh3brseQc24vbZTxzT/k/3urar5QMCVgjadmSO7lECeGdc6YxnM3yEGg==",
"dev": true,
"requires": {
- "chalk": "2.3.0",
- "jest-get-type": "21.2.0",
- "leven": "2.1.0",
- "pretty-format": "21.2.1"
+ "chalk": "^2.0.1",
+ "jest-get-type": "^21.2.0",
+ "leven": "^2.1.0",
+ "pretty-format": "^21.2.1"
},
"dependencies": {
"ansi-regex": {
@@ -4256,7 +4297,7 @@
"integrity": "sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==",
"dev": true,
"requires": {
- "color-convert": "https://r.cnpmjs.org/color-convert/download/color-convert-1.9.0.tgz"
+ "color-convert": "^1.9.0"
}
},
"chalk": {
@@ -4265,9 +4306,9 @@
"integrity": "sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==",
"dev": true,
"requires": {
- "ansi-styles": "3.2.0",
- "escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "supports-color": "4.5.0"
+ "ansi-styles": "^3.1.0",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^4.0.0"
}
},
"pretty-format": {
@@ -4276,8 +4317,8 @@
"integrity": "sha512-ZdWPGYAnYfcVP8yKA3zFjCn8s4/17TeYH28MXuC8vTp0o21eXjbFGcOAXZEaDaOFJjc3h2qa7HQNHNshhvoh2A==",
"dev": true,
"requires": {
- "ansi-regex": "3.0.0",
- "ansi-styles": "3.2.0"
+ "ansi-regex": "^3.0.0",
+ "ansi-styles": "^3.2.0"
}
},
"supports-color": {
@@ -4286,17 +4327,17 @@
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
- "has-flag": "2.0.0"
+ "has-flag": "^2.0.0"
}
}
}
},
"jest-worker": {
- "version": "22.0.3",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-22.0.3.tgz",
- "integrity": "sha512-fPdCTnogFQiR0CP6whEsIly2RfcHxvalqyLjhui6qa1SnOmHiX7L8k4Umo8CBIp5ndWY0+ej1o7OTE5MlzPabg==",
+ "version": "22.1.0",
+ "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-22.1.0.tgz",
+ "integrity": "sha512-ezLueYAQowk5N6g2J7bNZfq4NWZvMNB5Qd24EmOZLcM5SXTdiFvxykZIoNiMj9C98cCbPaojX8tfR7b1LJwNig==",
"requires": {
- "merge-stream": "1.0.1"
+ "merge-stream": "^1.0.1"
}
},
"jodid25519": {
@@ -4304,7 +4345,7 @@
"integrity": "sha1-BtSRIlUJNBlHfUJWM2BuDpB4KWc=",
"optional": true,
"requires": {
- "jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"
+ "jsbn": "~0.1.0"
}
},
"js-tokens": {
@@ -4317,8 +4358,8 @@
"integrity": "sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==",
"dev": true,
"requires": {
- "argparse": "1.0.9",
- "esprima": "4.0.0"
+ "argparse": "^1.0.7",
+ "esprima": "^4.0.0"
}
},
"jsbn": {
@@ -4332,25 +4373,25 @@
"integrity": "sha1-6MVG//ywbADUgzyoRBD+1/igl9Q=",
"dev": true,
"requires": {
- "abab": "1.0.4",
- "acorn": "4.0.13",
- "acorn-globals": "3.1.0",
- "array-equal": "1.0.0",
- "content-type-parser": "1.0.2",
- "cssom": "0.3.2",
- "cssstyle": "0.2.37",
- "escodegen": "1.9.0",
- "html-encoding-sniffer": "1.0.2",
- "nwmatcher": "1.4.3",
- "parse5": "1.5.1",
- "request": "https://r.cnpmjs.org/request/download/request-2.81.0.tgz",
- "sax": "1.2.4",
- "symbol-tree": "3.2.2",
- "tough-cookie": "https://registry.cnpmjs.org/tough-cookie/download/tough-cookie-2.3.2.tgz",
- "webidl-conversions": "4.0.2",
- "whatwg-encoding": "1.0.3",
- "whatwg-url": "4.8.0",
- "xml-name-validator": "2.0.1"
+ "abab": "^1.0.3",
+ "acorn": "^4.0.4",
+ "acorn-globals": "^3.1.0",
+ "array-equal": "^1.0.0",
+ "content-type-parser": "^1.0.1",
+ "cssom": ">= 0.3.2 < 0.4.0",
+ "cssstyle": ">= 0.2.37 < 0.3.0",
+ "escodegen": "^1.6.1",
+ "html-encoding-sniffer": "^1.0.1",
+ "nwmatcher": ">= 1.3.9 < 2.0.0",
+ "parse5": "^1.5.1",
+ "request": "^2.79.0",
+ "sax": "^1.2.1",
+ "symbol-tree": "^3.2.1",
+ "tough-cookie": "^2.3.2",
+ "webidl-conversions": "^4.0.0",
+ "whatwg-encoding": "^1.0.1",
+ "whatwg-url": "^4.3.0",
+ "xml-name-validator": "^2.0.1"
},
"dependencies": {
"sax": {
@@ -4373,7 +4414,7 @@
"version": "https://registry.cnpmjs.org/json-stable-stringify/download/json-stable-stringify-1.0.1.tgz",
"integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
"requires": {
- "jsonify": "https://registry.cnpmjs.org/jsonify/download/jsonify-0.0.0.tgz"
+ "jsonify": "~0.0.0"
}
},
"json-stringify-safe": {
@@ -4390,7 +4431,7 @@
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz",
"integrity": "sha1-NzaitCi4e72gzIO1P6PWM6NcKug=",
"requires": {
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz"
+ "graceful-fs": "^4.1.6"
}
},
"jsonify": {
@@ -4401,10 +4442,10 @@
"version": "https://r.cnpmjs.org/jsprim/download/jsprim-1.4.0.tgz",
"integrity": "sha1-o7h+QCmNjDgFUtjMdiigu5WiKRg=",
"requires": {
- "assert-plus": "https://registry.cnpmjs.org/assert-plus/download/assert-plus-1.0.0.tgz",
- "extsprintf": "https://registry.cnpmjs.org/extsprintf/download/extsprintf-1.0.2.tgz",
- "json-schema": "https://registry.cnpmjs.org/json-schema/download/json-schema-0.2.3.tgz",
- "verror": "https://registry.cnpmjs.org/verror/download/verror-1.3.6.tgz"
+ "assert-plus": "1.0.0",
+ "extsprintf": "1.0.2",
+ "json-schema": "0.2.3",
+ "verror": "1.3.6"
},
"dependencies": {
"assert-plus": {
@@ -4417,7 +4458,7 @@
"version": "https://r.cnpmjs.org/kind-of/download/kind-of-3.2.0.tgz",
"integrity": "sha1-tYq+TVwEStM3JqjBUltIz4kb/wc=",
"requires": {
- "is-buffer": "https://r.cnpmjs.org/is-buffer/download/is-buffer-1.1.5.tgz"
+ "is-buffer": "^1.1.5"
}
},
"klaw": {
@@ -4425,7 +4466,7 @@
"resolved": "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz",
"integrity": "sha1-QIhDO0azsbolnXh4XY6W9zugJDk=",
"requires": {
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz"
+ "graceful-fs": "^4.1.9"
}
},
"lazy-cache": {
@@ -4439,7 +4480,7 @@
"version": "https://registry.cnpmjs.org/lcid/download/lcid-1.0.0.tgz",
"integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
"requires": {
- "invert-kv": "https://registry.cnpmjs.org/invert-kv/download/invert-kv-1.0.0.tgz"
+ "invert-kv": "^1.0.0"
}
},
"left-pad": {
@@ -4459,8 +4500,8 @@
"integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
"dev": true,
"requires": {
- "prelude-ls": "1.1.2",
- "type-check": "0.3.2"
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2"
}
},
"load-json-file": {
@@ -4469,19 +4510,19 @@
"integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
"dev": true,
"requires": {
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "parse-json": "https://registry.cnpmjs.org/parse-json/download/parse-json-2.2.0.tgz",
- "pify": "https://registry.cnpmjs.org/pify/download/pify-2.3.0.tgz",
- "pinkie-promise": "2.0.1",
- "strip-bom": "2.0.0"
+ "graceful-fs": "^4.1.2",
+ "parse-json": "^2.2.0",
+ "pify": "^2.0.0",
+ "pinkie-promise": "^2.0.0",
+ "strip-bom": "^2.0.0"
}
},
"locate-path": {
"version": "https://r.cnpmjs.org/locate-path/download/locate-path-2.0.0.tgz",
"integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
"requires": {
- "p-locate": "https://r.cnpmjs.org/p-locate/download/p-locate-2.0.0.tgz",
- "path-exists": "https://r.cnpmjs.org/path-exists/download/path-exists-3.0.0.tgz"
+ "p-locate": "^2.0.0",
+ "path-exists": "^3.0.0"
},
"dependencies": {
"path-exists": {
@@ -4544,7 +4585,7 @@
"resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz",
"integrity": "sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg=",
"requires": {
- "lodash._root": "3.0.1"
+ "lodash._root": "^3.0.0"
}
},
"lodash.isarguments": {
@@ -4562,9 +4603,9 @@
"resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz",
"integrity": "sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo=",
"requires": {
- "lodash._getnative": "3.9.1",
- "lodash.isarguments": "3.1.0",
- "lodash.isarray": "3.0.4"
+ "lodash._getnative": "^3.0.0",
+ "lodash.isarguments": "^3.0.0",
+ "lodash.isarray": "^3.0.0"
}
},
"lodash.pad": {
@@ -4592,15 +4633,15 @@
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz",
"integrity": "sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8=",
"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._basecopy": "^3.0.0",
+ "lodash._basetostring": "^3.0.0",
+ "lodash._basevalues": "^3.0.0",
+ "lodash._isiterateecall": "^3.0.0",
+ "lodash._reinterpolate": "^3.0.0",
+ "lodash.escape": "^3.0.0",
+ "lodash.keys": "^3.0.0",
+ "lodash.restparam": "^3.0.0",
+ "lodash.templatesettings": "^3.0.0"
}
},
"lodash.templatesettings": {
@@ -4608,10 +4649,15 @@
"resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz",
"integrity": "sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU=",
"requires": {
- "lodash._reinterpolate": "3.0.0",
- "lodash.escape": "3.2.0"
+ "lodash._reinterpolate": "^3.0.0",
+ "lodash.escape": "^3.0.0"
}
},
+ "lodash.throttle": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz",
+ "integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ="
+ },
"longest": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
@@ -4622,7 +4668,7 @@
"version": "https://r.cnpmjs.org/loose-envify/download/loose-envify-1.3.1.tgz",
"integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=",
"requires": {
- "js-tokens": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.1.tgz"
+ "js-tokens": "^3.0.0"
}
},
"lru-cache": {
@@ -4630,8 +4676,8 @@
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz",
"integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==",
"requires": {
- "pseudomap": "1.0.2",
- "yallist": "2.1.2"
+ "pseudomap": "^1.0.2",
+ "yallist": "^2.1.2"
}
},
"macos-release": {
@@ -4643,7 +4689,7 @@
"version": "https://registry.cnpmjs.org/makeerror/download/makeerror-1.0.11.tgz",
"integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=",
"requires": {
- "tmpl": "https://registry.cnpmjs.org/tmpl/download/tmpl-1.0.4.tgz"
+ "tmpl": "1.0.x"
}
},
"media-typer": {
@@ -4656,7 +4702,7 @@
"resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz",
"integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=",
"requires": {
- "mimic-fn": "1.1.0"
+ "mimic-fn": "^1.0.0"
}
},
"merge": {
@@ -4668,21 +4714,21 @@
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz",
"integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=",
"requires": {
- "readable-stream": "2.3.3"
+ "readable-stream": "^2.0.1"
},
"dependencies": {
"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==",
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
"requires": {
- "core-util-is": "1.0.2",
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "isarray": "https://r.cnpmjs.org/isarray/download/isarray-1.0.0.tgz",
- "process-nextick-args": "1.0.7",
- "safe-buffer": "5.1.1",
- "string_decoder": "1.0.3",
- "util-deprecate": "1.0.2"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
"safe-buffer": {
@@ -4691,11 +4737,11 @@
"integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="
},
"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==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"requires": {
- "safe-buffer": "5.1.1"
+ "safe-buffer": "~5.1.0"
}
}
}
@@ -4706,9 +4752,9 @@
"integrity": "sha1-49r41d7hDdLc59SuiNYrvud0drQ=",
"requires": {
"debug": "2.6.9",
- "methods": "1.1.2",
- "parseurl": "1.3.2",
- "vary": "1.1.2"
+ "methods": "~1.1.2",
+ "parseurl": "~1.3.2",
+ "vary": "~1.1.2"
},
"dependencies": {
"debug": {
@@ -4737,67 +4783,77 @@
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
},
"metro": {
- "version": "0.24.4",
- "resolved": "https://registry.npmjs.org/metro/-/metro-0.24.4.tgz",
- "integrity": "sha512-XWAKE1J7D+BmriaylC/DyP55gE1Aevg9lHd7XZ3oG7QDrb+lgt8hbicQj1sphXxYJ6Rxbu6mzgGtBAL2ENzW+Q==",
- "requires": {
- "absolute-path": "0.0.0",
- "async": "https://r.cnpmjs.org/async/download/async-2.4.0.tgz",
- "babel-core": "https://r.cnpmjs.org/babel-core/download/babel-core-6.24.1.tgz",
- "babel-generator": "6.26.0",
- "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": "https://r.cnpmjs.org/babel-register/download/babel-register-6.24.1.tgz",
- "babylon": "6.18.0",
- "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
- "concat-stream": "1.6.0",
- "connect": "2.30.2",
- "core-js": "https://registry.cnpmjs.org/core-js/download/core-js-2.4.1.tgz",
- "debug": "https://r.cnpmjs.org/debug/download/debug-2.6.6.tgz",
- "denodeify": "1.2.1",
- "fbjs": "0.8.16",
- "fs-extra": "1.0.0",
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "image-size": "0.6.2",
- "jest-docblock": "22.0.3",
- "jest-haste-map": "22.0.3",
- "jest-worker": "22.0.3",
- "json-stable-stringify": "https://registry.cnpmjs.org/json-stable-stringify/download/json-stable-stringify-1.0.1.tgz",
- "json5": "0.4.0",
- "left-pad": "1.2.0",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "merge-stream": "1.0.1",
- "metro-core": "0.24.4",
- "metro-source-map": "0.24.4",
- "mime-types": "https://r.cnpmjs.org/mime-types/download/mime-types-2.1.11.tgz",
- "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "request": "https://r.cnpmjs.org/request/download/request-2.81.0.tgz",
- "rimraf": "https://r.cnpmjs.org/rimraf/download/rimraf-2.6.1.tgz",
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz",
+ "version": "0.24.7",
+ "resolved": "https://registry.npmjs.org/metro/-/metro-0.24.7.tgz",
+ "integrity": "sha512-9Fr3PDPPCTR3WJUHPLZL2nvyEWyvqyyxH9649OmA2TOF7VEtRzWedZlc6PAcl/rDOzwDOu2/c98NRFxnS1CYlw==",
+ "requires": {
+ "absolute-path": "^0.0.0",
+ "async": "^2.4.0",
+ "babel-core": "^6.24.1",
+ "babel-generator": "^6.26.0",
+ "babel-plugin-external-helpers": "^6.18.0",
+ "babel-preset-es2015-node": "^6.1.1",
+ "babel-preset-fbjs": "^2.1.4",
+ "babel-preset-react-native": "^4.0.0",
+ "babel-register": "^6.24.1",
+ "babylon": "^6.18.0",
+ "chalk": "^1.1.1",
+ "concat-stream": "^1.6.0",
+ "connect": "^3.6.5",
+ "core-js": "^2.2.2",
+ "debug": "^2.2.0",
+ "denodeify": "^1.2.1",
+ "eventemitter3": "^3.0.0",
+ "fbjs": "^0.8.14",
+ "fs-extra": "^1.0.0",
+ "graceful-fs": "^4.1.3",
+ "image-size": "^0.6.0",
+ "jest-docblock": "22.1.0",
+ "jest-haste-map": "22.1.0",
+ "jest-worker": "22.1.0",
+ "json-stable-stringify": "^1.0.1",
+ "json5": "^0.4.0",
+ "left-pad": "^1.1.3",
+ "lodash.throttle": "^4.1.1",
+ "merge-stream": "^1.0.1",
+ "metro-core": "0.24.7",
+ "metro-source-map": "0.24.7",
+ "mime-types": "2.1.11",
+ "mkdirp": "^0.5.1",
+ "request": "^2.79.0",
+ "rimraf": "^2.5.4",
+ "serialize-error": "^2.1.0",
+ "source-map": "^0.5.6",
"temp": "0.8.3",
- "throat": "4.1.0",
- "uglify-es": "3.3.7",
- "wordwrap": "https://registry.cnpmjs.org/wordwrap/download/wordwrap-1.0.0.tgz",
- "write-file-atomic": "1.3.4",
- "xpipe": "1.0.5",
- "yargs": "9.0.1"
+ "throat": "^4.1.0",
+ "uglify-es": "^3.1.9",
+ "wordwrap": "^1.0.0",
+ "write-file-atomic": "^1.2.0",
+ "ws": "^1.1.0",
+ "xpipe": "^1.0.5",
+ "yargs": "^9.0.0"
},
"dependencies": {
"babel-generator": {
- "version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz",
- "integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=",
- "requires": {
- "babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "babel-runtime": "6.26.0",
- "babel-types": "6.26.0",
- "detect-indent": "https://registry.cnpmjs.org/detect-indent/download/detect-indent-4.0.0.tgz",
- "jsesc": "https://registry.cnpmjs.org/jsesc/download/jsesc-1.3.0.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz",
- "trim-right": "https://r.cnpmjs.org/trim-right/download/trim-right-1.0.1.tgz"
+ "version": "6.26.1",
+ "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
+ "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
+ "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.4",
+ "source-map": "^0.5.7",
+ "trim-right": "^1.0.1"
+ },
+ "dependencies": {
+ "source-map": {
+ "version": "0.5.7",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
+ "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
+ }
}
},
"babel-runtime": {
@@ -4805,8 +4861,8 @@
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"requires": {
- "core-js": "https://registry.cnpmjs.org/core-js/download/core-js-2.4.1.tgz",
- "regenerator-runtime": "0.11.1"
+ "core-js": "^2.4.0",
+ "regenerator-runtime": "^0.11.0"
}
},
"babel-types": {
@@ -4814,10 +4870,10 @@
"resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
"requires": {
- "babel-runtime": "6.26.0",
- "esutils": "https://registry.cnpmjs.org/esutils/download/esutils-2.0.2.tgz",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "to-fast-properties": "https://r.cnpmjs.org/to-fast-properties/download/to-fast-properties-1.0.3.tgz"
+ "babel-runtime": "^6.26.0",
+ "esutils": "^2.0.2",
+ "lodash": "^4.17.4",
+ "to-fast-properties": "^1.0.3"
}
},
"babylon": {
@@ -4825,34 +4881,94 @@
"resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
"integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="
},
+ "commander": {
+ "version": "2.13.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz",
+ "integrity": "sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA=="
+ },
+ "connect": {
+ "version": "3.6.6",
+ "resolved": "https://registry.npmjs.org/connect/-/connect-3.6.6.tgz",
+ "integrity": "sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=",
+ "requires": {
+ "debug": "2.6.9",
+ "finalhandler": "1.1.0",
+ "parseurl": "~1.3.2",
+ "utils-merge": "1.0.1"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ }
+ }
+ },
+ "finalhandler": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz",
+ "integrity": "sha1-zgtoVbRYU+eRsvzGgARtiCU91/U=",
+ "requires": {
+ "debug": "2.6.9",
+ "encodeurl": "~1.0.1",
+ "escape-html": "~1.0.3",
+ "on-finished": "~2.3.0",
+ "parseurl": "~1.3.2",
+ "statuses": "~1.3.1",
+ "unpipe": "~1.0.0"
+ },
+ "dependencies": {
+ "debug": {
+ "version": "2.6.9",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
+ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
+ "requires": {
+ "ms": "2.0.0"
+ }
+ }
+ }
+ },
"jest-docblock": {
- "version": "22.0.3",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-22.0.3.tgz",
- "integrity": "sha512-LhviP2rqIg2IzS6m97W7T032oMrT699Tr6Njjhhl4FCLj+75BUy9CsSmGgfoVEql1uc+myBkssvcbn7T9xDR+A==",
+ "version": "22.1.0",
+ "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-22.1.0.tgz",
+ "integrity": "sha512-/+OGgBVRJb5wCbXrB1LQvibQBz2SdrvDdKRNzY1gL+OISQJZCR9MOewbygdT5rVzbbkfhC4AR2x+qWmNUdJfjw==",
"requires": {
- "detect-newline": "2.1.0"
+ "detect-newline": "^2.1.0"
}
},
"jest-haste-map": {
- "version": "22.0.3",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-22.0.3.tgz",
- "integrity": "sha512-VosIMOFQFu1rTF+MvOWVuv2KVmZ9eTkRgfwW2yUAs6/AhwmIfXRl/tih+fIOYcHzU4Auu1G8Fvl2kkF5g0k6/A==",
+ "version": "22.1.0",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-22.1.0.tgz",
+ "integrity": "sha512-vETdC6GboGlZX6+9SMZkXtYRQSKBbQ47sFF7NGglbMN4eyIZBODply8rlcO01KwBiAeiNCKdjUyfonZzJ93JEg==",
"requires": {
- "fb-watchman": "https://r.cnpmjs.org/fb-watchman/download/fb-watchman-2.0.0.tgz",
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "jest-docblock": "22.0.3",
- "jest-worker": "22.0.3",
- "micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
- "sane": "2.2.0"
+ "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.0.0"
}
},
+ "ms": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
+ "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
+ },
+ "statuses": {
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz",
+ "integrity": "sha1-+vUbnrdKrvOzrPStX2Gr8ky3uT4="
+ },
"uglify-es": {
- "version": "3.3.7",
- "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.7.tgz",
- "integrity": "sha512-fGMnE6SsDRsCjxm78C+lv7MuXsse/dtF7QuTUT43BYf4jlxPjd+XTnGB8YjaCQJ3sv2LT4zk0mwpp9+QJocU6g==",
+ "version": "3.3.9",
+ "resolved": "https://registry.npmjs.org/uglify-es/-/uglify-es-3.3.9.tgz",
+ "integrity": "sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==",
"requires": {
- "commander": "2.13.0",
- "source-map": "0.6.1"
+ "commander": "~2.13.0",
+ "source-map": "~0.6.1"
},
"dependencies": {
"source-map": {
@@ -4861,39 +4977,47 @@
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
}
}
+ },
+ "utils-merge": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
+ "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
}
}
},
"metro-core": {
- "version": "0.24.4",
- "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.24.4.tgz",
- "integrity": "sha512-ul1nNQgF8T/zivrK/deKdF74zgU0eUiooiIM8cqEY/bISmbbkENFJpcBW8BvznQGuYOkbF4HoqJprAcpU+HqgA=="
+ "version": "0.24.7",
+ "resolved": "https://registry.npmjs.org/metro-core/-/metro-core-0.24.7.tgz",
+ "integrity": "sha512-Qheab9Wmc8T2m3Ax9COyKUk8LxRb1fHWe13CpoEgPIjwFBd6ILNXaq7ZzoWg0OoAbpMsNzvUOnOJNHvfRuJqJg==",
+ "requires": {
+ "lodash.throttle": "^4.1.1"
+ }
},
"metro-source-map": {
- "version": "0.24.4",
- "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.24.4.tgz",
- "integrity": "sha512-05QGyTC87rI52HR4dKcYqnI8Jm8DUAIXUtdglXsGVPEZl0JoVEJ0dRxnbwGczWImalwjEI/D7fshauxKS6l3sg==",
+ "version": "0.24.7",
+ "resolved": "https://registry.npmjs.org/metro-source-map/-/metro-source-map-0.24.7.tgz",
+ "integrity": "sha512-12WEgolY5CGvHeHkF5QlM2qatdQC1DyjWkXLK9LzCqzd8YhUZww1+ZCM6E67rJwpeuCU9o1Mkiwd1h7dS+RBvA==",
"requires": {
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz"
+ "source-map": "^0.5.6"
}
},
"micromatch": {
"version": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
"integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=",
"requires": {
- "arr-diff": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
- "array-unique": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
- "braces": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz",
- "expand-brackets": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz",
- "extglob": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz",
- "filename-regex": "https://r.cnpmjs.org/filename-regex/download/filename-regex-2.0.1.tgz",
- "is-extglob": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
- "is-glob": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz",
- "kind-of": "https://r.cnpmjs.org/kind-of/download/kind-of-3.2.0.tgz",
- "normalize-path": "https://r.cnpmjs.org/normalize-path/download/normalize-path-2.1.1.tgz",
- "object.omit": "https://registry.cnpmjs.org/object.omit/download/object.omit-2.0.1.tgz",
- "parse-glob": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz",
- "regex-cache": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz"
+ "arr-diff": "^2.0.0",
+ "array-unique": "^0.2.1",
+ "braces": "^1.8.2",
+ "expand-brackets": "^0.1.4",
+ "extglob": "^0.3.1",
+ "filename-regex": "^2.0.0",
+ "is-extglob": "^1.0.0",
+ "is-glob": "^2.0.1",
+ "kind-of": "^3.0.2",
+ "normalize-path": "^2.0.1",
+ "object.omit": "^2.0.0",
+ "parse-glob": "^3.0.4",
+ "regex-cache": "^0.4.2"
}
},
"mime": {
@@ -4909,7 +5033,7 @@
"version": "https://r.cnpmjs.org/mime-types/download/mime-types-2.1.11.tgz",
"integrity": "sha1-wlnEcb2oCKhdbNGTtDCl+uRHOzw=",
"requires": {
- "mime-db": "https://registry.cnpmjs.org/mime-db/download/mime-db-1.23.0.tgz"
+ "mime-db": "~1.23.0"
},
"dependencies": {
"mime-db": {
@@ -4927,14 +5051,14 @@
"version": "https://registry.cnpmjs.org/min-document/download/min-document-2.19.0.tgz",
"integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=",
"requires": {
- "dom-walk": "https://registry.cnpmjs.org/dom-walk/download/dom-walk-0.1.1.tgz"
+ "dom-walk": "^0.1.0"
}
},
"minimatch": {
"version": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
"integrity": "sha1-Kk5AkLlrLbBqnX3wEFWmKnfJt3Q=",
"requires": {
- "brace-expansion": "https://r.cnpmjs.org/brace-expansion/download/brace-expansion-1.1.7.tgz"
+ "brace-expansion": "^1.0.0"
}
},
"minimist": {
@@ -4945,7 +5069,7 @@
"version": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
"requires": {
- "minimist": "https://r.cnpmjs.org/minimist/download/minimist-0.0.8.tgz"
+ "minimist": "0.0.8"
},
"dependencies": {
"minimist": {
@@ -4959,11 +5083,11 @@
"resolved": "https://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz",
"integrity": "sha1-X9gYOYxoGcuiinzWZk8pL+HAu/I=",
"requires": {
- "basic-auth": "1.0.4",
- "debug": "2.2.0",
- "depd": "1.0.1",
- "on-finished": "2.3.0",
- "on-headers": "1.0.1"
+ "basic-auth": "~1.0.3",
+ "debug": "~2.2.0",
+ "depd": "~1.0.1",
+ "on-finished": "~2.3.0",
+ "on-headers": "~1.0.0"
},
"dependencies": {
"debug": {
@@ -4990,8 +5114,8 @@
"resolved": "https://registry.npmjs.org/multiparty/-/multiparty-3.3.2.tgz",
"integrity": "sha1-Nd5oBNwZZD5SSfPT473GyM4wHT8=",
"requires": {
- "readable-stream": "1.1.14",
- "stream-counter": "0.2.0"
+ "readable-stream": "~1.1.9",
+ "stream-counter": "~0.2.0"
}
},
"multipipe": {
@@ -5025,11 +5149,12 @@
"integrity": "sha1-Jp1cR2gQ7JLtvntsLygxY4T5p+g="
},
"node-fetch": {
- "version": "https://registry.cnpmjs.org/node-fetch/download/node-fetch-1.6.3.tgz",
- "integrity": "sha1-3CNO3WSJmC1Y6PDbT2lQKavNjAQ=",
+ "version": "1.7.3",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
+ "integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
"requires": {
- "encoding": "https://registry.cnpmjs.org/encoding/download/encoding-0.1.12.tgz",
- "is-stream": "https://registry.cnpmjs.org/is-stream/download/is-stream-1.1.0.tgz"
+ "encoding": "^0.1.11",
+ "is-stream": "^1.0.1"
}
},
"node-int64": {
@@ -5040,27 +5165,27 @@
"version": "https://r.cnpmjs.org/node-notifier/download/node-notifier-5.1.2.tgz",
"integrity": "sha1-L6nhJgX6EACdRFSdb82KY93g5P8=",
"requires": {
- "growly": "https://registry.cnpmjs.org/growly/download/growly-1.3.0.tgz",
- "semver": "https://r.cnpmjs.org/semver/download/semver-5.3.0.tgz",
- "shellwords": "https://registry.cnpmjs.org/shellwords/download/shellwords-0.1.0.tgz",
- "which": "https://r.cnpmjs.org/which/download/which-1.2.14.tgz"
+ "growly": "^1.3.0",
+ "semver": "^5.3.0",
+ "shellwords": "^0.1.0",
+ "which": "^1.2.12"
}
},
"normalize-package-data": {
"version": "https://r.cnpmjs.org/normalize-package-data/download/normalize-package-data-2.3.8.tgz",
"integrity": "sha1-2Bntoqne29H/pWPqQHHZNngilbs=",
"requires": {
- "hosted-git-info": "https://r.cnpmjs.org/hosted-git-info/download/hosted-git-info-2.4.2.tgz",
- "is-builtin-module": "https://registry.cnpmjs.org/is-builtin-module/download/is-builtin-module-1.0.0.tgz",
- "semver": "https://r.cnpmjs.org/semver/download/semver-5.3.0.tgz",
- "validate-npm-package-license": "https://registry.cnpmjs.org/validate-npm-package-license/download/validate-npm-package-license-3.0.1.tgz"
+ "hosted-git-info": "^2.1.4",
+ "is-builtin-module": "^1.0.0",
+ "semver": "2 || 3 || 4 || 5",
+ "validate-npm-package-license": "^3.0.1"
}
},
"normalize-path": {
"version": "https://r.cnpmjs.org/normalize-path/download/normalize-path-2.1.1.tgz",
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
"requires": {
- "remove-trailing-separator": "https://r.cnpmjs.org/remove-trailing-separator/download/remove-trailing-separator-1.0.1.tgz"
+ "remove-trailing-separator": "^1.0.1"
}
},
"npm-run-path": {
@@ -5068,7 +5193,7 @@
"resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz",
"integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=",
"requires": {
- "path-key": "2.0.1"
+ "path-key": "^2.0.0"
}
},
"npmlog": {
@@ -5076,9 +5201,9 @@
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-2.0.4.tgz",
"integrity": "sha1-mLUlMPJRTKkNCexbIsiEZyI3VpI=",
"requires": {
- "ansi": "0.3.1",
- "are-we-there-yet": "1.1.4",
- "gauge": "1.2.7"
+ "ansi": "~0.3.1",
+ "are-we-there-yet": "~1.1.2",
+ "gauge": "~1.2.5"
}
},
"number-is-nan": {
@@ -5103,8 +5228,8 @@
"version": "https://registry.cnpmjs.org/object.omit/download/object.omit-2.0.1.tgz",
"integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=",
"requires": {
- "for-own": "https://r.cnpmjs.org/for-own/download/for-own-0.1.5.tgz",
- "is-extendable": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"
+ "for-own": "^0.1.4",
+ "is-extendable": "^0.1.1"
}
},
"on-finished": {
@@ -5124,7 +5249,7 @@
"version": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
"requires": {
- "wrappy": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
+ "wrappy": "1"
}
},
"onetime": {
@@ -5132,7 +5257,7 @@
"resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz",
"integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=",
"requires": {
- "mimic-fn": "1.1.0"
+ "mimic-fn": "^1.0.0"
}
},
"opn": {
@@ -5140,15 +5265,15 @@
"resolved": "https://registry.npmjs.org/opn/-/opn-3.0.3.tgz",
"integrity": "sha1-ttmec5n3jWXDuq/+8fsojpuFJDo=",
"requires": {
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz"
+ "object-assign": "^4.0.1"
}
},
"optimist": {
"version": "https://registry.cnpmjs.org/optimist/download/optimist-0.6.1.tgz",
"integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=",
"requires": {
- "minimist": "https://registry.cnpmjs.org/minimist/download/minimist-0.0.10.tgz",
- "wordwrap": "https://registry.cnpmjs.org/wordwrap/download/wordwrap-0.0.3.tgz"
+ "minimist": "~0.0.1",
+ "wordwrap": "~0.0.2"
},
"dependencies": {
"minimist": {
@@ -5167,12 +5292,12 @@
"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": "https://registry.cnpmjs.org/wordwrap/download/wordwrap-1.0.0.tgz"
+ "deep-is": "~0.1.3",
+ "fast-levenshtein": "~2.0.4",
+ "levn": "~0.3.0",
+ "prelude-ls": "~1.1.2",
+ "type-check": "~0.3.2",
+ "wordwrap": "~1.0.0"
}
},
"options": {
@@ -5189,9 +5314,9 @@
"resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz",
"integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==",
"requires": {
- "execa": "0.7.0",
- "lcid": "https://registry.cnpmjs.org/lcid/download/lcid-1.0.0.tgz",
- "mem": "1.1.0"
+ "execa": "^0.7.0",
+ "lcid": "^1.0.0",
+ "mem": "^1.1.0"
}
},
"os-name": {
@@ -5199,8 +5324,8 @@
"resolved": "https://registry.npmjs.org/os-name/-/os-name-2.0.1.tgz",
"integrity": "sha1-uaOGNhwXrjohc27wWZQFyajF3F4=",
"requires": {
- "macos-release": "1.1.0",
- "win-release": "1.1.1"
+ "macos-release": "^1.0.0",
+ "win-release": "^1.0.0"
}
},
"os-tmpdir": {
@@ -5226,24 +5351,24 @@
"version": "https://r.cnpmjs.org/p-locate/download/p-locate-2.0.0.tgz",
"integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
"requires": {
- "p-limit": "https://r.cnpmjs.org/p-limit/download/p-limit-1.1.0.tgz"
+ "p-limit": "^1.1.0"
}
},
"parse-glob": {
"version": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz",
"integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=",
"requires": {
- "glob-base": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz",
- "is-dotfile": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz",
- "is-extglob": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz",
- "is-glob": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz"
+ "glob-base": "^0.3.0",
+ "is-dotfile": "^1.0.0",
+ "is-extglob": "^1.0.0",
+ "is-glob": "^2.0.0"
}
},
"parse-json": {
"version": "https://registry.cnpmjs.org/parse-json/download/parse-json-2.2.0.tgz",
"integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=",
"requires": {
- "error-ex": "https://r.cnpmjs.org/error-ex/download/error-ex-1.3.1.tgz"
+ "error-ex": "^1.2.0"
}
},
"parse5": {
@@ -5263,7 +5388,7 @@
"integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
"dev": true,
"requires": {
- "pinkie-promise": "2.0.1"
+ "pinkie-promise": "^2.0.0"
}
},
"path-is-absolute": {
@@ -5287,9 +5412,9 @@
"integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
"dev": true,
"requires": {
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "pify": "https://registry.cnpmjs.org/pify/download/pify-2.3.0.tgz",
- "pinkie-promise": "2.0.1"
+ "graceful-fs": "^4.1.2",
+ "pify": "^2.0.0",
+ "pinkie-promise": "^2.0.0"
}
},
"pause": {
@@ -5322,7 +5447,7 @@
"integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
"dev": true,
"requires": {
- "pinkie": "2.0.4"
+ "pinkie": "^2.0.0"
}
},
"plist": {
@@ -5333,7 +5458,7 @@
"base64-js": "0.0.8",
"util-deprecate": "1.0.2",
"xmlbuilder": "4.0.0",
- "xmldom": "0.1.27"
+ "xmldom": "0.1.x"
},
"dependencies": {
"base64-js": {
@@ -5367,46 +5492,26 @@
"integrity": "sha1-FjjYqONML0QKkduVq5rrZ3/Bhc8="
},
"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="
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
+ "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
},
"promise": {
- "version": "https://registry.cnpmjs.org/promise/download/promise-7.1.1.tgz",
- "integrity": "sha1-SJZUxpJha4qlWwck+oCbt9tJxb8=",
+ "version": "7.3.1",
+ "resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
+ "integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
"requires": {
- "asap": "https://registry.cnpmjs.org/asap/download/asap-2.0.5.tgz"
+ "asap": "~2.0.3"
}
},
"prop-types": {
- "version": "15.6.0",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.0.tgz",
- "integrity": "sha1-zq8IMCL8RrSjX2nhPvda7Q1jmFY=",
+ "version": "15.6.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.1.tgz",
+ "integrity": "sha512-4ec7bY1Y66LymSUOH/zARVYObB23AT2h8cf6e/O6ZALB/N0sqZFEx7rq6EYPX2MkOdKORuooI/H5k9TlR4q7kQ==",
"requires": {
- "fbjs": "0.8.16",
- "loose-envify": "https://r.cnpmjs.org/loose-envify/download/loose-envify-1.3.1.tgz",
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz"
- },
- "dependencies": {
- "core-js": {
- "version": "1.2.7",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz",
- "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY="
- },
- "fbjs": {
- "version": "0.8.16",
- "resolved": "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz",
- "integrity": "sha1-XmdDL1UNxBtXK/VYR7ispk5TN9s=",
- "requires": {
- "core-js": "1.2.7",
- "isomorphic-fetch": "https://registry.cnpmjs.org/isomorphic-fetch/download/isomorphic-fetch-2.2.1.tgz",
- "loose-envify": "https://r.cnpmjs.org/loose-envify/download/loose-envify-1.3.1.tgz",
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz",
- "promise": "https://registry.cnpmjs.org/promise/download/promise-7.1.1.tgz",
- "setimmediate": "https://r.cnpmjs.org/setimmediate/download/setimmediate-1.0.5.tgz",
- "ua-parser-js": "https://r.cnpmjs.org/ua-parser-js/download/ua-parser-js-0.7.12.tgz"
- }
- }
+ "fbjs": "^0.8.16",
+ "loose-envify": "^1.3.1",
+ "object-assign": "^4.1.1"
}
},
"prr": {
@@ -5437,8 +5542,8 @@
"version": "https://r.cnpmjs.org/randomatic/download/randomatic-1.1.6.tgz",
"integrity": "sha1-EQ3Kv/OX6dz/fAeJzMCkmt8exbs=",
"requires": {
- "is-number": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz",
- "kind-of": "https://r.cnpmjs.org/kind-of/download/kind-of-3.2.0.tgz"
+ "is-number": "^2.0.2",
+ "kind-of": "^3.0.2"
}
},
"range-parser": {
@@ -5469,14 +5574,14 @@
}
},
"react": {
- "version": "16.2.0",
- "resolved": "https://registry.npmjs.org/react/-/react-16.2.0.tgz",
- "integrity": "sha512-ZmIomM7EE1DvPEnSFAHZn9Vs9zJl5A9H7el0EGTE6ZbW9FKe/14IYAlPbC8iH25YarEQxZL+E8VW7Mi7kfQrDQ==",
+ "version": "16.3.1",
+ "resolved": "https://registry.npmjs.org/react/-/react-16.3.1.tgz",
+ "integrity": "sha512-NbkxN9jsZ6+G+ICsLdC7/wUD26uNbvKU/RAxEWgc9kcdKvROt+5d5j2cNQm5PSFTQ4WNGsR3pa4qL2Q0/WSy1w==",
"requires": {
- "fbjs": "0.8.16",
- "loose-envify": "https://r.cnpmjs.org/loose-envify/download/loose-envify-1.3.1.tgz",
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz",
- "prop-types": "15.6.0"
+ "fbjs": "^0.8.16",
+ "loose-envify": "^1.1.0",
+ "object-assign": "^4.1.1",
+ "prop-types": "^15.6.0"
}
},
"react-clone-referenced-element": {
@@ -5493,80 +5598,98 @@
"resolved": "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-3.0.0.tgz",
"integrity": "sha512-24oLTwNqZJceQXfAfKRp3PwCyg2agXAQhgGwe/x6V6CvjLmnMmba4/ut9S8JTIJq7pS9fpPaRDGo5u3923RLFA==",
"requires": {
- "shell-quote": "1.6.1",
- "ws": "2.3.1"
+ "shell-quote": "^1.6.1",
+ "ws": "^2.0.3"
},
"dependencies": {
+ "ultron": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz",
+ "integrity": "sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og=="
+ },
"ws": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/ws/-/ws-2.3.1.tgz",
"integrity": "sha1-a5Sz5EfLajY/eF6vlK9jWejoHIA=",
"requires": {
- "safe-buffer": "https://r.cnpmjs.org/safe-buffer/download/safe-buffer-5.0.1.tgz",
- "ultron": "1.1.1"
+ "safe-buffer": "~5.0.1",
+ "ultron": "~1.1.0"
}
}
}
},
+ "react-is": {
+ "version": "16.3.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.3.1.tgz",
+ "integrity": "sha512-3XpazGqS5DEOLiuR6JQ2Sg6URq/33d1BHJVaUvtMz579KRhd2D0pqabNEe5czv785yzKBPZimOf0UNIXa3jw1A==",
+ "dev": true
+ },
"react-native": {
- "version": "0.52.0",
- "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.52.0.tgz",
- "integrity": "sha512-2Z/1IIA+0PhgzW/r2qfTIWuDWpA8i+pKud/Ygp6JqoMnbFK79JYPkYSAMEkL7uz+oiQ+4bkKqbbUbVkwgF9ZOg==",
- "requires": {
- "absolute-path": "0.0.0",
- "art": "0.10.1",
- "babel-core": "https://r.cnpmjs.org/babel-core/download/babel-core-6.24.1.tgz",
- "babel-plugin-syntax-trailing-function-commas": "https://r.cnpmjs.org/babel-plugin-syntax-trailing-function-commas/download/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz",
+ "version": "0.52.3",
+ "resolved": "https://registry.npmjs.org/react-native/-/react-native-0.52.3.tgz",
+ "integrity": "sha512-0GFnmxtkUk0KRkB61JTBv5pkj1JsnKxa0jH8vtM0wa+WSKHLuRCDmEERtk09KOMgJ+esKZO+ZO30nhHup+ZPYg==",
+ "requires": {
+ "absolute-path": "^0.0.0",
+ "art": "^0.10.0",
+ "babel-core": "^6.24.1",
+ "babel-plugin-syntax-trailing-function-commas": "^6.20.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
- "babel-plugin-transform-class-properties": "https://r.cnpmjs.org/babel-plugin-transform-class-properties/download/babel-plugin-transform-class-properties-6.24.1.tgz",
- "babel-plugin-transform-exponentiation-operator": "6.24.1",
- "babel-plugin-transform-flow-strip-types": "https://r.cnpmjs.org/babel-plugin-transform-flow-strip-types/download/babel-plugin-transform-flow-strip-types-6.22.0.tgz",
- "babel-plugin-transform-object-rest-spread": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.23.0.tgz",
- "babel-register": "https://r.cnpmjs.org/babel-register/download/babel-register-6.24.1.tgz",
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "base64-js": "1.2.1",
- "chalk": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
- "commander": "2.13.0",
- "connect": "2.30.2",
- "create-react-class": "15.6.2",
- "debug": "https://r.cnpmjs.org/debug/download/debug-2.6.6.tgz",
- "denodeify": "1.2.1",
- "envinfo": "3.10.0",
- "event-target-shim": "1.1.1",
- "fbjs": "0.8.16",
- "fbjs-scripts": "0.8.1",
- "fs-extra": "1.0.0",
- "glob": "https://registry.cnpmjs.org/glob/download/glob-7.1.1.tgz",
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "inquirer": "3.3.0",
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "metro": "0.24.4",
- "metro-core": "0.24.4",
- "mime": "1.6.0",
- "minimist": "https://registry.cnpmjs.org/minimist/download/minimist-1.2.0.tgz",
- "mkdirp": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
- "node-fetch": "https://registry.cnpmjs.org/node-fetch/download/node-fetch-1.6.3.tgz",
- "node-notifier": "https://r.cnpmjs.org/node-notifier/download/node-notifier-5.1.2.tgz",
- "npmlog": "2.0.4",
- "opn": "3.0.3",
- "optimist": "https://registry.cnpmjs.org/optimist/download/optimist-0.6.1.tgz",
- "plist": "1.2.0",
- "pretty-format": "4.3.1",
- "promise": "https://registry.cnpmjs.org/promise/download/promise-7.1.1.tgz",
- "prop-types": "15.6.0",
- "react-clone-referenced-element": "1.0.1",
+ "babel-plugin-transform-class-properties": "^6.18.0",
+ "babel-plugin-transform-exponentiation-operator": "^6.5.0",
+ "babel-plugin-transform-flow-strip-types": "^6.21.0",
+ "babel-plugin-transform-object-rest-spread": "^6.20.2",
+ "babel-register": "^6.24.1",
+ "babel-runtime": "^6.23.0",
+ "base64-js": "^1.1.2",
+ "chalk": "^1.1.1",
+ "commander": "^2.9.0",
+ "connect": "^2.8.3",
+ "create-react-class": "^15.5.2",
+ "debug": "^2.2.0",
+ "denodeify": "^1.2.1",
+ "envinfo": "^3.0.0",
+ "event-target-shim": "^1.0.5",
+ "fbjs": "^0.8.14",
+ "fbjs-scripts": "^0.8.1",
+ "fs-extra": "^1.0.0",
+ "glob": "^7.1.1",
+ "graceful-fs": "^4.1.3",
+ "inquirer": "^3.0.6",
+ "lodash": "^4.16.6",
+ "metro": "^0.24.1",
+ "metro-core": "^0.24.1",
+ "mime": "^1.3.4",
+ "minimist": "^1.2.0",
+ "mkdirp": "^0.5.1",
+ "node-fetch": "^1.3.3",
+ "node-notifier": "^5.1.2",
+ "npmlog": "^2.0.4",
+ "opn": "^3.0.2",
+ "optimist": "^0.6.1",
+ "plist": "^1.2.0",
+ "pretty-format": "^4.2.1",
+ "promise": "^7.1.1",
+ "prop-types": "^15.5.8",
+ "react-clone-referenced-element": "^1.0.1",
"react-devtools-core": "3.0.0",
- "react-timer-mixin": "0.13.3",
- "regenerator-runtime": "0.11.1",
- "rimraf": "https://r.cnpmjs.org/rimraf/download/rimraf-2.6.1.tgz",
- "semver": "https://r.cnpmjs.org/semver/download/semver-5.3.0.tgz",
+ "react-timer-mixin": "^0.13.2",
+ "regenerator-runtime": "^0.11.0",
+ "rimraf": "^2.5.4",
+ "semver": "^5.0.3",
"shell-quote": "1.6.1",
- "stacktrace-parser": "0.1.4",
- "whatwg-fetch": "https://r.cnpmjs.org/whatwg-fetch/download/whatwg-fetch-1.1.1.tgz",
- "ws": "1.1.5",
- "xcode": "0.9.3",
- "xmldoc": "0.4.0",
- "yargs": "9.0.1"
+ "stacktrace-parser": "^0.1.3",
+ "whatwg-fetch": "^1.0.0",
+ "ws": "^1.1.0",
+ "xcode": "^0.9.1",
+ "xmldoc": "^0.4.0",
+ "yargs": "^9.0.0"
+ },
+ "dependencies": {
+ "whatwg-fetch": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-1.1.1.tgz",
+ "integrity": "sha1-rDydOfMgxtzlM5lp0FTvQ90zMxk="
+ }
}
},
"react-native-xinge-push": {
@@ -5576,19 +5699,20 @@
"version": "https://registry.cnpmjs.org/react-proxy/download/react-proxy-1.1.8.tgz",
"integrity": "sha1-nb/Z2SdSjDqp9ETkVYw3gwq4wmo=",
"requires": {
- "lodash": "https://r.cnpmjs.org/lodash/download/lodash-4.17.4.tgz",
- "react-deep-force-update": "https://registry.cnpmjs.org/react-deep-force-update/download/react-deep-force-update-1.0.1.tgz"
+ "lodash": "^4.6.1",
+ "react-deep-force-update": "^1.0.0"
}
},
"react-test-renderer": {
- "version": "16.2.0",
- "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.2.0.tgz",
- "integrity": "sha512-Kd4gJFtpNziR9ElOE/C23LeflKLZPRpNQYWP3nQBY43SJ5a+xyEGSeMrm2zxNKXcnCbBS/q1UpD9gqd5Dv+rew==",
+ "version": "16.3.1",
+ "resolved": "https://registry.npmjs.org/react-test-renderer/-/react-test-renderer-16.3.1.tgz",
+ "integrity": "sha512-emEcIPUowMjT5EQ+rrb0FAwVCzuJ+LKDweoYDh073v2/jHxrBDPUk8nzI5dofG3R+140+Bb9TMcT2Ez5OP6pQw==",
"dev": true,
"requires": {
- "fbjs": "0.8.16",
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz",
- "prop-types": "15.6.0"
+ "fbjs": "^0.8.16",
+ "object-assign": "^4.1.1",
+ "prop-types": "^15.6.0",
+ "react-is": "^16.3.1"
}
},
"react-timer-mixin": {
@@ -5600,8 +5724,8 @@
"version": "https://registry.cnpmjs.org/react-transform-hmr/download/react-transform-hmr-1.0.4.tgz",
"integrity": "sha1-4aQL0Krvxy6N/Xp82gmvhQZjl7s=",
"requires": {
- "global": "https://r.cnpmjs.org/global/download/global-4.3.2.tgz",
- "react-proxy": "https://registry.cnpmjs.org/react-proxy/download/react-proxy-1.1.8.tgz"
+ "global": "^4.3.0",
+ "react-proxy": "^1.1.7"
}
},
"read-pkg": {
@@ -5610,9 +5734,9 @@
"integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
"dev": true,
"requires": {
- "load-json-file": "1.1.0",
- "normalize-package-data": "https://r.cnpmjs.org/normalize-package-data/download/normalize-package-data-2.3.8.tgz",
- "path-type": "1.1.0"
+ "load-json-file": "^1.0.0",
+ "normalize-package-data": "^2.3.2",
+ "path-type": "^1.0.0"
}
},
"read-pkg-up": {
@@ -5621,8 +5745,8 @@
"integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
"dev": true,
"requires": {
- "find-up": "1.1.2",
- "read-pkg": "1.1.0"
+ "find-up": "^1.0.0",
+ "read-pkg": "^1.0.0"
},
"dependencies": {
"find-up": {
@@ -5631,8 +5755,8 @@
"integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
"dev": true,
"requires": {
- "path-exists": "2.1.0",
- "pinkie-promise": "2.0.1"
+ "path-exists": "^2.0.0",
+ "pinkie-promise": "^2.0.0"
}
}
}
@@ -5642,10 +5766,10 @@
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz",
"integrity": "sha1-fPTFTvZI44EwhMY23SB54WbAgdk=",
"requires": {
- "core-util-is": "1.0.2",
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.1",
"isarray": "0.0.1",
- "string_decoder": "0.10.31"
+ "string_decoder": "~0.10.x"
},
"dependencies": {
"isarray": {
@@ -5669,17 +5793,17 @@
"version": "https://r.cnpmjs.org/regenerator-transform/download/regenerator-transform-0.9.11.tgz",
"integrity": "sha1-On0GdSDLe3F2dp61/4aGkb7+EoM=",
"requires": {
- "babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.23.0.tgz",
- "babel-types": "https://r.cnpmjs.org/babel-types/download/babel-types-6.24.1.tgz",
- "private": "https://registry.npmjs.org/private/-/private-0.1.7.tgz"
+ "babel-runtime": "^6.18.0",
+ "babel-types": "^6.19.0",
+ "private": "^0.1.6"
}
},
"regex-cache": {
"version": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz",
"integrity": "sha1-mxpsNdTQ3871cRrmUejp09cRQUU=",
"requires": {
- "is-equal-shallow": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz",
- "is-primitive": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz"
+ "is-equal-shallow": "^0.1.3",
+ "is-primitive": "^2.0.0"
}
},
"regexpu-core": {
@@ -5687,9 +5811,9 @@
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz",
"integrity": "sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA=",
"requires": {
- "regenerate": "1.3.3",
- "regjsgen": "0.2.0",
- "regjsparser": "0.1.5"
+ "regenerate": "^1.2.1",
+ "regjsgen": "^0.2.0",
+ "regjsparser": "^0.1.4"
}
},
"regjsgen": {
@@ -5702,7 +5826,7 @@
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz",
"integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=",
"requires": {
- "jsesc": "0.5.0"
+ "jsesc": "~0.5.0"
},
"dependencies": {
"jsesc": {
@@ -5728,7 +5852,7 @@
"version": "https://registry.cnpmjs.org/repeating/download/repeating-2.0.1.tgz",
"integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=",
"requires": {
- "is-finite": "https://registry.cnpmjs.org/is-finite/download/is-finite-1.0.2.tgz"
+ "is-finite": "^1.0.0"
}
},
"replace-ext": {
@@ -5740,28 +5864,28 @@
"version": "https://r.cnpmjs.org/request/download/request-2.81.0.tgz",
"integrity": "sha1-xpKJRqDgbF+Nb4qTM0af/aRimKA=",
"requires": {
- "aws-sign2": "https://registry.cnpmjs.org/aws-sign2/download/aws-sign2-0.6.0.tgz",
- "aws4": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
- "caseless": "https://r.cnpmjs.org/caseless/download/caseless-0.12.0.tgz",
- "combined-stream": "https://registry.cnpmjs.org/combined-stream/download/combined-stream-1.0.5.tgz",
- "extend": "https://r.cnpmjs.org/extend/download/extend-3.0.1.tgz",
- "forever-agent": "https://registry.cnpmjs.org/forever-agent/download/forever-agent-0.6.1.tgz",
- "form-data": "https://r.cnpmjs.org/form-data/download/form-data-2.1.4.tgz",
- "har-validator": "https://r.cnpmjs.org/har-validator/download/har-validator-4.2.1.tgz",
- "hawk": "https://registry.cnpmjs.org/hawk/download/hawk-3.1.3.tgz",
- "http-signature": "https://registry.cnpmjs.org/http-signature/download/http-signature-1.1.1.tgz",
- "is-typedarray": "https://registry.cnpmjs.org/is-typedarray/download/is-typedarray-1.0.0.tgz",
- "isstream": "https://registry.cnpmjs.org/isstream/download/isstream-0.1.2.tgz",
- "json-stringify-safe": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
- "mime-types": "https://r.cnpmjs.org/mime-types/download/mime-types-2.1.11.tgz",
- "oauth-sign": "https://registry.cnpmjs.org/oauth-sign/download/oauth-sign-0.8.2.tgz",
- "performance-now": "https://r.cnpmjs.org/performance-now/download/performance-now-0.2.0.tgz",
- "qs": "https://r.cnpmjs.org/qs/download/qs-6.4.0.tgz",
- "safe-buffer": "https://r.cnpmjs.org/safe-buffer/download/safe-buffer-5.0.1.tgz",
- "stringstream": "https://registry.cnpmjs.org/stringstream/download/stringstream-0.0.5.tgz",
- "tough-cookie": "https://registry.cnpmjs.org/tough-cookie/download/tough-cookie-2.3.2.tgz",
- "tunnel-agent": "https://r.cnpmjs.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz",
- "uuid": "https://r.cnpmjs.org/uuid/download/uuid-3.0.1.tgz"
+ "aws-sign2": "~0.6.0",
+ "aws4": "^1.2.1",
+ "caseless": "~0.12.0",
+ "combined-stream": "~1.0.5",
+ "extend": "~3.0.0",
+ "forever-agent": "~0.6.1",
+ "form-data": "~2.1.1",
+ "har-validator": "~4.2.1",
+ "hawk": "~3.1.3",
+ "http-signature": "~1.1.0",
+ "is-typedarray": "~1.0.0",
+ "isstream": "~0.1.2",
+ "json-stringify-safe": "~5.0.1",
+ "mime-types": "~2.1.7",
+ "oauth-sign": "~0.8.1",
+ "performance-now": "^0.2.0",
+ "qs": "~6.4.0",
+ "safe-buffer": "^5.0.1",
+ "stringstream": "~0.0.4",
+ "tough-cookie": "~2.3.0",
+ "tunnel-agent": "^0.6.0",
+ "uuid": "^3.0.0"
},
"dependencies": {
"qs": {
@@ -5789,8 +5913,8 @@
"resolved": "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz",
"integrity": "sha1-/6cbq5UtYvfB1Jt0NDVfvGjf/Fo=",
"requires": {
- "depd": "1.1.2",
- "on-headers": "1.0.1"
+ "depd": "~1.1.0",
+ "on-headers": "~1.0.1"
},
"dependencies": {
"depd": {
@@ -5805,8 +5929,8 @@
"resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz",
"integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=",
"requires": {
- "onetime": "2.0.1",
- "signal-exit": "3.0.2"
+ "onetime": "^2.0.0",
+ "signal-exit": "^3.0.2"
}
},
"right-align": {
@@ -5816,14 +5940,14 @@
"dev": true,
"optional": true,
"requires": {
- "align-text": "0.1.4"
+ "align-text": "^0.1.1"
}
},
"rimraf": {
"version": "https://r.cnpmjs.org/rimraf/download/rimraf-2.6.1.tgz",
"integrity": "sha1-wjOOxkPfeht/5cVPqG9XQopV8z0=",
"requires": {
- "glob": "https://registry.cnpmjs.org/glob/download/glob-7.1.1.tgz"
+ "glob": "^7.0.5"
}
},
"rndm": {
@@ -5836,7 +5960,7 @@
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz",
"integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=",
"requires": {
- "is-promise": "2.1.0"
+ "is-promise": "^2.1.0"
}
},
"rx-lite": {
@@ -5849,26 +5973,31 @@
"resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz",
"integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=",
"requires": {
- "rx-lite": "4.0.8"
+ "rx-lite": "*"
}
},
"safe-buffer": {
"version": "https://r.cnpmjs.org/safe-buffer/download/safe-buffer-5.0.1.tgz",
"integrity": "sha1-0mPKVGls2KMGtcplUekt5XkY++c="
},
+ "safer-buffer": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.0.tgz",
+ "integrity": "sha512-HQhCIIl7TrF1aa7d352EXG+xumPERvoIWxOqq2CagDId0FVGtlG/fuQ7kZT+wZ7ytyGiP3pnYUVni5otBzOVmA=="
+ },
"sane": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/sane/-/sane-2.2.0.tgz",
"integrity": "sha512-OSJxhHO0CgPUw3lUm3GhfREAfza45smvEI9ozuFrxKG10GHVo0ryW9FK5VYlLvxj0SV7HVKHW0voYJIRu27GWg==",
"requires": {
- "anymatch": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz",
- "exec-sh": "https://registry.cnpmjs.org/exec-sh/download/exec-sh-0.2.0.tgz",
- "fb-watchman": "https://r.cnpmjs.org/fb-watchman/download/fb-watchman-2.0.0.tgz",
- "fsevents": "1.1.3",
- "minimatch": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz",
- "minimist": "https://registry.cnpmjs.org/minimist/download/minimist-1.2.0.tgz",
- "walker": "https://registry.cnpmjs.org/walker/download/walker-1.0.7.tgz",
- "watch": "0.18.0"
+ "anymatch": "^1.3.0",
+ "exec-sh": "^0.2.0",
+ "fb-watchman": "^2.0.0",
+ "fsevents": "^1.1.1",
+ "minimatch": "^3.0.2",
+ "minimist": "^1.1.1",
+ "walker": "~1.0.5",
+ "watch": "~0.18.0"
},
"dependencies": {
"watch": {
@@ -5876,8 +6005,8 @@
"resolved": "https://registry.npmjs.org/watch/-/watch-0.18.0.tgz",
"integrity": "sha1-KAlUdsbffJDJYxOJkMClQj60uYY=",
"requires": {
- "exec-sh": "https://registry.cnpmjs.org/exec-sh/download/exec-sh-0.2.0.tgz",
- "minimist": "https://registry.cnpmjs.org/minimist/download/minimist-1.2.0.tgz"
+ "exec-sh": "^0.2.0",
+ "minimist": "^1.2.0"
}
}
}
@@ -5896,18 +6025,18 @@
"resolved": "https://registry.npmjs.org/send/-/send-0.13.2.tgz",
"integrity": "sha1-dl52B8gFVFK7pvCwUllTUJhgNt4=",
"requires": {
- "debug": "2.2.0",
- "depd": "1.1.2",
- "destroy": "1.0.4",
- "escape-html": "1.0.3",
- "etag": "1.7.0",
+ "debug": "~2.2.0",
+ "depd": "~1.1.0",
+ "destroy": "~1.0.4",
+ "escape-html": "~1.0.3",
+ "etag": "~1.7.0",
"fresh": "0.3.0",
- "http-errors": "1.3.1",
+ "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"
+ "on-finished": "~2.3.0",
+ "range-parser": "~1.0.3",
+ "statuses": "~1.2.1"
},
"dependencies": {
"debug": {
@@ -5940,15 +6069,20 @@
}
}
},
+ "serialize-error": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-2.1.0.tgz",
+ "integrity": "sha1-ULZ51WNc34Rme9yOWa9OW4HV9go="
+ },
"serve-favicon": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.3.2.tgz",
"integrity": "sha1-3UGeJo3gEqtysxnTN/IQUBP5OB8=",
"requires": {
- "etag": "1.7.0",
+ "etag": "~1.7.0",
"fresh": "0.3.0",
"ms": "0.7.2",
- "parseurl": "1.3.2"
+ "parseurl": "~1.3.1"
},
"dependencies": {
"ms": {
@@ -5963,13 +6097,13 @@
"resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.7.3.tgz",
"integrity": "sha1-egV/xu4o3GP2RWbl+lexEahq7NI=",
"requires": {
- "accepts": "1.2.13",
+ "accepts": "~1.2.13",
"batch": "0.5.3",
- "debug": "2.2.0",
- "escape-html": "1.0.3",
- "http-errors": "1.3.1",
- "mime-types": "https://r.cnpmjs.org/mime-types/download/mime-types-2.1.11.tgz",
- "parseurl": "1.3.2"
+ "debug": "~2.2.0",
+ "escape-html": "~1.0.3",
+ "http-errors": "~1.3.1",
+ "mime-types": "~2.1.9",
+ "parseurl": "~1.3.1"
},
"dependencies": {
"debug": {
@@ -5992,8 +6126,8 @@
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.10.3.tgz",
"integrity": "sha1-zlpuzTEB/tXsCYJ9rCKpwpv7BTU=",
"requires": {
- "escape-html": "1.0.3",
- "parseurl": "1.3.2",
+ "escape-html": "~1.0.3",
+ "parseurl": "~1.3.1",
"send": "0.13.2"
}
},
@@ -6002,7 +6136,8 @@
"integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc="
},
"setimmediate": {
- "version": "https://r.cnpmjs.org/setimmediate/download/setimmediate-1.0.5.tgz",
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz",
"integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU="
},
"shebang-command": {
@@ -6010,7 +6145,7 @@
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
"integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
"requires": {
- "shebang-regex": "1.0.0"
+ "shebang-regex": "^1.0.0"
}
},
"shebang-regex": {
@@ -6023,10 +6158,10 @@
"resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz",
"integrity": "sha1-9HgZSczkAmlxJ0MOo7PFR29IF2c=",
"requires": {
- "array-filter": "0.0.1",
- "array-map": "0.0.0",
- "array-reduce": "0.0.0",
- "jsonify": "https://registry.cnpmjs.org/jsonify/download/jsonify-0.0.0.tgz"
+ "array-filter": "~0.0.0",
+ "array-map": "~0.0.0",
+ "array-reduce": "~0.0.0",
+ "jsonify": "~0.0.0"
}
},
"shellwords": {
@@ -6060,7 +6195,7 @@
"requires": {
"base64-js": "1.1.2",
"xmlbuilder": "8.2.2",
- "xmldom": "0.1.27"
+ "xmldom": "0.1.x"
}
},
"xmlbuilder": {
@@ -6083,7 +6218,7 @@
"version": "https://registry.cnpmjs.org/sntp/download/sntp-1.0.9.tgz",
"integrity": "sha1-ZUEYTMkK7qbG57NeJlkIJEPGYZg=",
"requires": {
- "hoek": "https://registry.cnpmjs.org/hoek/download/hoek-2.16.3.tgz"
+ "hoek": "2.x.x"
}
},
"source-map": {
@@ -6094,7 +6229,7 @@
"version": "https://r.cnpmjs.org/source-map-support/download/source-map-support-0.4.15.tgz",
"integrity": "sha1-AyAt9lwG0r2MfsI2KhkwVv7407E=",
"requires": {
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz"
+ "source-map": "^0.5.6"
}
},
"sparkles": {
@@ -6106,7 +6241,7 @@
"version": "https://registry.cnpmjs.org/spdx-correct/download/spdx-correct-1.0.2.tgz",
"integrity": "sha1-SzBz2TP/UfORLwOsVRlJikFQ20A=",
"requires": {
- "spdx-license-ids": "https://registry.cnpmjs.org/spdx-license-ids/download/spdx-license-ids-1.2.2.tgz"
+ "spdx-license-ids": "^1.0.2"
}
},
"spdx-expression-parse": {
@@ -6127,15 +6262,15 @@
"version": "https://r.cnpmjs.org/sshpk/download/sshpk-1.13.0.tgz",
"integrity": "sha1-/yo+T9BEl1Vf7Zezmg/YL6+zozw=",
"requires": {
- "asn1": "https://registry.cnpmjs.org/asn1/download/asn1-0.2.3.tgz",
- "assert-plus": "https://registry.cnpmjs.org/assert-plus/download/assert-plus-1.0.0.tgz",
- "bcrypt-pbkdf": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
- "dashdash": "https://r.cnpmjs.org/dashdash/download/dashdash-1.14.1.tgz",
- "ecc-jsbn": "https://registry.cnpmjs.org/ecc-jsbn/download/ecc-jsbn-0.1.1.tgz",
- "getpass": "https://r.cnpmjs.org/getpass/download/getpass-0.1.7.tgz",
- "jodid25519": "https://registry.cnpmjs.org/jodid25519/download/jodid25519-1.0.2.tgz",
- "jsbn": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
- "tweetnacl": "https://r.cnpmjs.org/tweetnacl/download/tweetnacl-0.14.5.tgz"
+ "asn1": "~0.2.3",
+ "assert-plus": "^1.0.0",
+ "bcrypt-pbkdf": "^1.0.0",
+ "dashdash": "^1.12.0",
+ "ecc-jsbn": "~0.1.1",
+ "getpass": "^0.1.1",
+ "jodid25519": "^1.0.0",
+ "jsbn": "~0.1.0",
+ "tweetnacl": "~0.14.0"
},
"dependencies": {
"assert-plus": {
@@ -6150,9 +6285,9 @@
"integrity": "sha1-ATl5IuX2Ls8whFUiyVxP4dJefU4="
},
"statuses": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz",
- "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew=="
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
+ "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow="
},
"stream-buffers": {
"version": "2.2.0",
@@ -6164,7 +6299,7 @@
"resolved": "https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz",
"integrity": "sha1-3tJmVWMZyLDiIoErnPOyb6fZR94=",
"requires": {
- "readable-stream": "1.1.14"
+ "readable-stream": "~1.1.8"
}
},
"string-length": {
@@ -6173,8 +6308,8 @@
"integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=",
"dev": true,
"requires": {
- "astral-regex": "1.0.0",
- "strip-ansi": "4.0.0"
+ "astral-regex": "^1.0.0",
+ "strip-ansi": "^4.0.0"
},
"dependencies": {
"ansi-regex": {
@@ -6189,7 +6324,7 @@
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
- "ansi-regex": "3.0.0"
+ "ansi-regex": "^3.0.0"
}
}
}
@@ -6198,9 +6333,9 @@
"version": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
"integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
"requires": {
- "code-point-at": "https://r.cnpmjs.org/code-point-at/download/code-point-at-1.1.0.tgz",
- "is-fullwidth-code-point": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
- "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
+ "code-point-at": "^1.0.0",
+ "is-fullwidth-code-point": "^1.0.0",
+ "strip-ansi": "^3.0.0"
}
},
"string_decoder": {
@@ -6216,7 +6351,7 @@
"version": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
"requires": {
- "ansi-regex": "https://r.cnpmjs.org/ansi-regex/download/ansi-regex-2.1.1.tgz"
+ "ansi-regex": "^2.0.0"
}
},
"strip-bom": {
@@ -6225,7 +6360,7 @@
"integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
"dev": true,
"requires": {
- "is-utf8": "0.2.1"
+ "is-utf8": "^0.2.0"
}
},
"strip-eof": {
@@ -6243,19 +6378,13 @@
"integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=",
"dev": true
},
- "sync-exec": {
- "version": "0.6.2",
- "resolved": "https://registry.npmjs.org/sync-exec/-/sync-exec-0.6.2.tgz",
- "integrity": "sha1-cX0izFPwzh3vVZQ2LzqJouu5EQU=",
- "optional": true
- },
"temp": {
"version": "0.8.3",
"resolved": "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz",
"integrity": "sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=",
"requires": {
- "os-tmpdir": "https://registry.cnpmjs.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz",
- "rimraf": "2.2.8"
+ "os-tmpdir": "^1.0.0",
+ "rimraf": "~2.2.6"
},
"dependencies": {
"rimraf": {
@@ -6271,11 +6400,11 @@
"integrity": "sha512-35+Asrsk3XHJDBgf/VRFexPgh3UyETv8IAn/LRTiZjVy6rjPVqdEk8dJcJYBzl1w0XCJM48lvTy8SfEsCWS4nA==",
"dev": true,
"requires": {
- "arrify": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
- "micromatch": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz",
- "object-assign": "https://r.cnpmjs.org/object-assign/download/object-assign-4.1.1.tgz",
- "read-pkg-up": "1.0.1",
- "require-main-filename": "https://registry.cnpmjs.org/require-main-filename/download/require-main-filename-1.0.1.tgz"
+ "arrify": "^1.0.1",
+ "micromatch": "^2.3.11",
+ "object-assign": "^4.1.0",
+ "read-pkg-up": "^1.0.1",
+ "require-main-filename": "^1.0.1"
}
},
"throat": {
@@ -6293,22 +6422,22 @@
"resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz",
"integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=",
"requires": {
- "readable-stream": "2.3.3",
- "xtend": "https://registry.cnpmjs.org/xtend/download/xtend-4.0.1.tgz"
+ "readable-stream": "^2.1.5",
+ "xtend": "~4.0.1"
},
"dependencies": {
"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==",
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+ "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
"requires": {
- "core-util-is": "1.0.2",
- "inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
- "isarray": "https://r.cnpmjs.org/isarray/download/isarray-1.0.0.tgz",
- "process-nextick-args": "1.0.7",
- "safe-buffer": "5.1.1",
- "string_decoder": "1.0.3",
- "util-deprecate": "1.0.2"
+ "core-util-is": "~1.0.0",
+ "inherits": "~2.0.3",
+ "isarray": "~1.0.0",
+ "process-nextick-args": "~2.0.0",
+ "safe-buffer": "~5.1.1",
+ "string_decoder": "~1.1.1",
+ "util-deprecate": "~1.0.1"
}
},
"safe-buffer": {
@@ -6317,11 +6446,11 @@
"integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="
},
"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==",
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
+ "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"requires": {
- "safe-buffer": "5.1.1"
+ "safe-buffer": "~5.1.0"
}
}
}
@@ -6336,7 +6465,7 @@
"resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
"integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
"requires": {
- "os-tmpdir": "https://registry.cnpmjs.org/os-tmpdir/download/os-tmpdir-1.0.2.tgz"
+ "os-tmpdir": "~1.0.2"
}
},
"tmpl": {
@@ -6351,7 +6480,7 @@
"version": "https://registry.cnpmjs.org/tough-cookie/download/tough-cookie-2.3.2.tgz",
"integrity": "sha1-8IH3bkyFcg5sN6X6ztc3FQ2EByo=",
"requires": {
- "punycode": "https://registry.cnpmjs.org/punycode/download/punycode-1.4.1.tgz"
+ "punycode": "^1.4.1"
}
},
"tr46": {
@@ -6373,7 +6502,7 @@
"version": "https://r.cnpmjs.org/tunnel-agent/download/tunnel-agent-0.6.0.tgz",
"integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
"requires": {
- "safe-buffer": "https://r.cnpmjs.org/safe-buffer/download/safe-buffer-5.0.1.tgz"
+ "safe-buffer": "^5.0.1"
}
},
"tweetnacl": {
@@ -6387,29 +6516,29 @@
"integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=",
"dev": true,
"requires": {
- "prelude-ls": "1.1.2"
+ "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=",
+ "version": "1.6.16",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz",
+ "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==",
"requires": {
"media-typer": "0.3.0",
- "mime-types": "2.1.17"
+ "mime-types": "~2.1.18"
},
"dependencies": {
"mime-db": {
- "version": "1.30.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz",
- "integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE="
+ "version": "1.33.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz",
+ "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ=="
},
"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=",
+ "version": "2.1.18",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz",
+ "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==",
"requires": {
- "mime-db": "1.30.0"
+ "mime-db": "~1.33.0"
}
}
}
@@ -6420,8 +6549,9 @@
"integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c="
},
"ua-parser-js": {
- "version": "https://r.cnpmjs.org/ua-parser-js/download/ua-parser-js-0.7.12.tgz",
- "integrity": "sha1-BMgamb3V3FImPqKdJMa/jUgYpLs="
+ "version": "0.7.17",
+ "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz",
+ "integrity": "sha512-uRdSdu1oA1rncCQL7sCj8vSyZkgtL7faaw9Tc9rZ3mGgraQ7+Pdx7w5mnOSF3gw9ZNG6oc+KXfkon3bKuROm0g=="
},
"uglify-js": {
"version": "2.8.29",
@@ -6430,9 +6560,9 @@
"dev": true,
"optional": true,
"requires": {
- "source-map": "https://registry.cnpmjs.org/source-map/download/source-map-0.5.6.tgz",
- "uglify-to-browserify": "1.0.2",
- "yargs": "3.10.0"
+ "source-map": "~0.5.1",
+ "uglify-to-browserify": "~1.0.0",
+ "yargs": "~3.10.0"
},
"dependencies": {
"yargs": {
@@ -6442,9 +6572,9 @@
"dev": true,
"optional": true,
"requires": {
- "camelcase": "1.2.1",
- "cliui": "2.1.0",
- "decamelize": "https://registry.cnpmjs.org/decamelize/download/decamelize-1.2.0.tgz",
+ "camelcase": "^1.0.2",
+ "cliui": "^2.1.0",
+ "decamelize": "^1.0.0",
"window-size": "0.1.0"
}
}
@@ -6462,13 +6592,13 @@
"resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz",
"integrity": "sha1-Otbzg2jG1MjHXsF2I/t5qh0HHYE=",
"requires": {
- "random-bytes": "1.0.0"
+ "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=="
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz",
+ "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po="
},
"unpipe": {
"version": "1.0.0",
@@ -6493,8 +6623,8 @@
"version": "https://registry.cnpmjs.org/validate-npm-package-license/download/validate-npm-package-license-3.0.1.tgz",
"integrity": "sha1-KAS6vnEq0zeUWaz74kdGqywwP7w=",
"requires": {
- "spdx-correct": "https://registry.cnpmjs.org/spdx-correct/download/spdx-correct-1.0.2.tgz",
- "spdx-expression-parse": "https://registry.cnpmjs.org/spdx-expression-parse/download/spdx-expression-parse-1.0.4.tgz"
+ "spdx-correct": "~1.0.0",
+ "spdx-expression-parse": "~1.0.0"
}
},
"vary": {
@@ -6506,7 +6636,7 @@
"version": "https://registry.cnpmjs.org/verror/download/verror-1.3.6.tgz",
"integrity": "sha1-z/XfEpRtKX0rqu+qJoniW+AcAFw=",
"requires": {
- "extsprintf": "https://registry.cnpmjs.org/extsprintf/download/extsprintf-1.0.2.tgz"
+ "extsprintf": "1.0.2"
}
},
"vhost": {
@@ -6519,8 +6649,8 @@
"resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz",
"integrity": "sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4=",
"requires": {
- "clone": "1.0.3",
- "clone-stats": "0.0.1",
+ "clone": "^1.0.0",
+ "clone-stats": "^0.0.1",
"replace-ext": "0.0.1"
}
},
@@ -6528,7 +6658,7 @@
"version": "https://registry.cnpmjs.org/walker/download/walker-1.0.7.tgz",
"integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=",
"requires": {
- "makeerror": "https://registry.cnpmjs.org/makeerror/download/makeerror-1.0.11.tgz"
+ "makeerror": "1.0.x"
}
},
"webidl-conversions": {
@@ -6555,8 +6685,9 @@
}
},
"whatwg-fetch": {
- "version": "https://r.cnpmjs.org/whatwg-fetch/download/whatwg-fetch-1.1.1.tgz",
- "integrity": "sha1-rDydOfMgxtzlM5lp0FTvQ90zMxk="
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz",
+ "integrity": "sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng=="
},
"whatwg-url": {
"version": "4.8.0",
@@ -6564,8 +6695,8 @@
"integrity": "sha1-0pgaqRSMHgCkHFphMRZqtGg7vMA=",
"dev": true,
"requires": {
- "tr46": "0.0.3",
- "webidl-conversions": "3.0.1"
+ "tr46": "~0.0.3",
+ "webidl-conversions": "^3.0.0"
},
"dependencies": {
"webidl-conversions": {
@@ -6580,7 +6711,7 @@
"version": "https://r.cnpmjs.org/which/download/which-1.2.14.tgz",
"integrity": "sha1-mofEN48D6CfOyvGs31bHNsAcFOU=",
"requires": {
- "isexe": "https://r.cnpmjs.org/isexe/download/isexe-2.0.0.tgz"
+ "isexe": "^2.0.0"
}
},
"which-module": {
@@ -6593,7 +6724,7 @@
"resolved": "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz",
"integrity": "sha1-X6VeAr58qTTt/BJmVjLoSbcuUgk=",
"requires": {
- "semver": "https://r.cnpmjs.org/semver/download/semver-5.3.0.tgz"
+ "semver": "^5.0.1"
}
},
"window-size": {
@@ -6612,16 +6743,16 @@
"integrity": "sha1-QzMRK7SbF6oFC4eJXKayys9A5f8=",
"dev": true,
"requires": {
- "errno": "https://registry.cnpmjs.org/errno/download/errno-0.1.4.tgz",
- "xtend": "https://registry.cnpmjs.org/xtend/download/xtend-4.0.1.tgz"
+ "errno": ">=0.1.1 <0.2.0-0",
+ "xtend": ">=4.0.0 <4.1.0-0"
}
},
"wrap-ansi": {
"version": "https://r.cnpmjs.org/wrap-ansi/download/wrap-ansi-2.1.0.tgz",
"integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
"requires": {
- "string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
- "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1"
}
},
"wrappy": {
@@ -6633,9 +6764,9 @@
"resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz",
"integrity": "sha1-+Aek8LHZ6ROuekgRLmzDrxmRtF8=",
"requires": {
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "imurmurhash": "0.1.4",
- "slide": "1.1.6"
+ "graceful-fs": "^4.1.11",
+ "imurmurhash": "^0.1.4",
+ "slide": "^1.1.5"
}
},
"ws": {
@@ -6643,15 +6774,8 @@
"resolved": "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz",
"integrity": "sha512-o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w==",
"requires": {
- "options": "0.0.6",
- "ultron": "1.0.2"
- },
- "dependencies": {
- "ultron": {
- "version": "1.0.2",
- "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz",
- "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po="
- }
+ "options": ">=0.0.5",
+ "ultron": "1.0.x"
}
},
"xcode": {
@@ -6659,9 +6783,9 @@
"resolved": "https://registry.npmjs.org/xcode/-/xcode-0.9.3.tgz",
"integrity": "sha1-kQqJwWrubMC0LKgFptC0z4chHPM=",
"requires": {
- "pegjs": "0.10.0",
- "simple-plist": "0.2.1",
- "uuid": "https://r.cnpmjs.org/uuid/download/uuid-3.0.1.tgz"
+ "pegjs": "^0.10.0",
+ "simple-plist": "^0.2.1",
+ "uuid": "3.0.1"
}
},
"xml-name-validator": {
@@ -6675,7 +6799,7 @@
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz",
"integrity": "sha1-mLj2UcowqmJANvEn0RzGbce5B6M=",
"requires": {
- "lodash": "3.10.1"
+ "lodash": "^3.5.0"
},
"dependencies": {
"lodash": {
@@ -6690,7 +6814,7 @@
"resolved": "https://registry.npmjs.org/xmldoc/-/xmldoc-0.4.0.tgz",
"integrity": "sha1-0lciS+g5PqrL+DfvIn/Y7CWzaIg=",
"requires": {
- "sax": "1.1.6"
+ "sax": "~1.1.1"
}
},
"xmldom": {
@@ -6721,19 +6845,19 @@
"resolved": "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz",
"integrity": "sha1-UqzCP+7Kw0BCB47njAwAf1CF20w=",
"requires": {
- "camelcase": "4.1.0",
- "cliui": "3.2.0",
- "decamelize": "https://registry.cnpmjs.org/decamelize/download/decamelize-1.2.0.tgz",
- "get-caller-file": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz",
- "os-locale": "2.1.0",
- "read-pkg-up": "2.0.0",
- "require-directory": "https://registry.cnpmjs.org/require-directory/download/require-directory-2.1.1.tgz",
- "require-main-filename": "https://registry.cnpmjs.org/require-main-filename/download/require-main-filename-1.0.1.tgz",
- "set-blocking": "https://registry.cnpmjs.org/set-blocking/download/set-blocking-2.0.0.tgz",
- "string-width": "2.1.1",
- "which-module": "2.0.0",
- "y18n": "https://registry.cnpmjs.org/y18n/download/y18n-3.2.1.tgz",
- "yargs-parser": "7.0.0"
+ "camelcase": "^4.1.0",
+ "cliui": "^3.2.0",
+ "decamelize": "^1.1.1",
+ "get-caller-file": "^1.0.1",
+ "os-locale": "^2.0.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.0.0",
+ "which-module": "^2.0.0",
+ "y18n": "^3.2.1",
+ "yargs-parser": "^7.0.0"
},
"dependencies": {
"ansi-regex": {
@@ -6751,9 +6875,9 @@
"resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
"integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
"requires": {
- "string-width": "1.0.2",
- "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
- "wrap-ansi": "https://r.cnpmjs.org/wrap-ansi/download/wrap-ansi-2.1.0.tgz"
+ "string-width": "^1.0.1",
+ "strip-ansi": "^3.0.1",
+ "wrap-ansi": "^2.0.0"
},
"dependencies": {
"string-width": {
@@ -6761,9 +6885,9 @@
"resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
"integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
"requires": {
- "code-point-at": "https://r.cnpmjs.org/code-point-at/download/code-point-at-1.1.0.tgz",
- "is-fullwidth-code-point": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
- "strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"
+ "code-point-at": "^1.0.0",
+ "is-fullwidth-code-point": "^1.0.0",
+ "strip-ansi": "^3.0.0"
}
}
}
@@ -6773,10 +6897,10 @@
"resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz",
"integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=",
"requires": {
- "graceful-fs": "https://r.cnpmjs.org/graceful-fs/download/graceful-fs-4.1.11.tgz",
- "parse-json": "https://registry.cnpmjs.org/parse-json/download/parse-json-2.2.0.tgz",
- "pify": "https://registry.cnpmjs.org/pify/download/pify-2.3.0.tgz",
- "strip-bom": "3.0.0"
+ "graceful-fs": "^4.1.2",
+ "parse-json": "^2.2.0",
+ "pify": "^2.0.0",
+ "strip-bom": "^3.0.0"
}
},
"path-type": {
@@ -6784,7 +6908,7 @@
"resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz",
"integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=",
"requires": {
- "pify": "https://registry.cnpmjs.org/pify/download/pify-2.3.0.tgz"
+ "pify": "^2.0.0"
}
},
"read-pkg": {
@@ -6792,9 +6916,9 @@
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz",
"integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=",
"requires": {
- "load-json-file": "2.0.0",
- "normalize-package-data": "https://r.cnpmjs.org/normalize-package-data/download/normalize-package-data-2.3.8.tgz",
- "path-type": "2.0.0"
+ "load-json-file": "^2.0.0",
+ "normalize-package-data": "^2.3.2",
+ "path-type": "^2.0.0"
}
},
"read-pkg-up": {
@@ -6802,8 +6926,8 @@
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz",
"integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=",
"requires": {
- "find-up": "2.1.0",
- "read-pkg": "2.0.0"
+ "find-up": "^2.0.0",
+ "read-pkg": "^2.0.0"
}
},
"string-width": {
@@ -6811,8 +6935,8 @@
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
"requires": {
- "is-fullwidth-code-point": "2.0.0",
- "strip-ansi": "4.0.0"
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^4.0.0"
},
"dependencies": {
"is-fullwidth-code-point": {
@@ -6825,7 +6949,7 @@
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"requires": {
- "ansi-regex": "3.0.0"
+ "ansi-regex": "^3.0.0"
}
}
}
@@ -6842,7 +6966,7 @@
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz",
"integrity": "sha1-jQrELxbqVd69MyyvTEA4s+P139k=",
"requires": {
- "camelcase": "4.1.0"
+ "camelcase": "^4.1.0"
},
"dependencies": {
"camelcase": {
diff --git a/example/package.json b/example/package.json
index 00c0da0..cd47516 100644
--- a/example/package.json
+++ b/example/package.json
@@ -12,15 +12,15 @@
"log-android": "react-native log-android"
},
"dependencies": {
- "react": "^16.2.0",
- "react-native": "^0.52.0",
+ "react": "^16.3.1",
+ "react-native": "^0.52.3",
"react-native-xinge-push": "file:.."
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-preset-react-native": "^4.0.0",
"jest": "^21.2.1",
- "react-test-renderer": "^16.2.0"
+ "react-test-renderer": "^16.3.1"
},
"jest": {
"preset": "react-native"
diff --git a/index.js b/index.js
index c01f757..1077d4d 100644
--- a/index.js
+++ b/index.js
@@ -52,7 +52,11 @@ class XGPush {
sound: true
});
} else {
- return XGPushManager.registerPush(account);
+ if (account) {
+ return XGPushManager.bindAccount(account);
+ } else {
+ return XGPushManager.registerPush();
+ }
}
}
diff --git a/package.json b/package.json
index 44fa1d9..91d9f6c 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "react-native-xinge-push",
- "version": "0.6.0",
+ "version": "0.7.0",
"description": "Xinge push for react-native",
"main": "index.js",
"scripts": {