diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/APIUtil.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/APIUtil.java index 5d5831893c..a9d65a947b 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/APIUtil.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/APIUtil.java @@ -29,6 +29,7 @@ import org.wso2.carbon.device.application.mgt.common.services.ApplicationStorage import org.wso2.carbon.device.application.mgt.common.services.LifecycleStateManager; import org.wso2.carbon.device.application.mgt.common.services.PlatformManager; import org.wso2.carbon.device.application.mgt.common.services.SubscriptionManager; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; import javax.ws.rs.core.Response; diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/ApplicationManagementAPI.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/ApplicationManagementAPI.java index 722c79974a..087dc847d9 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/ApplicationManagementAPI.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/ApplicationManagementAPI.java @@ -272,7 +272,7 @@ public interface ApplicationManagementAPI { @Valid Application application); @POST - @Path("upload-artifacts/{uuid}") + @Path("/upload-artifacts/{uuid}") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.MULTIPART_FORM_DATA) @ApiOperation( @@ -309,7 +309,7 @@ public interface ApplicationManagementAPI { @Multipart(value = "screenshot") List screenshots); @PUT - @Path("upload-artifacts/{uuid}") + @Path("/upload-artifacts/{uuid}") @Produces(MediaType.APPLICATION_JSON) @Consumes(MediaType.MULTIPART_FORM_DATA) @ApiOperation( diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/impl/ApplicationManagementAPIImpl.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/impl/ApplicationManagementAPIImpl.java index c73e2a8487..c5e820eae5 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/impl/ApplicationManagementAPIImpl.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/impl/ApplicationManagementAPIImpl.java @@ -184,7 +184,7 @@ public class ApplicationManagementAPIImpl implements ApplicationManagementAPI { @Override @POST - @Path("upload-image-artifacts/{uuid}") + @Path("/upload-image-artifacts/{uuid}") public Response uploadApplicationArtifacts(@PathParam("uuid") String applicationUUID, @Multipart("icon") Attachment iconFile, @Multipart("banner") Attachment bannerFile, @Multipart ("screenshot") List attachmentList) { @@ -234,7 +234,7 @@ public class ApplicationManagementAPIImpl implements ApplicationManagementAPI { @Override @PUT - @Path("upload-image-artifacts/{uuid}") + @Path("/upload-image-artifacts/{uuid}") public Response updateApplicationArtifacts(@PathParam("uuid") String applicationUUID, @Multipart("icon") Attachment iconFile, @Multipart("banner") Attachment bannerFile, @Multipart ("screenshot") List attachmentList) { diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/impl/SubscriptionManagementAPIImpl.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/impl/SubscriptionManagementAPIImpl.java index 09b46f0444..cf0de355b5 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/impl/SubscriptionManagementAPIImpl.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.api/src/main/java/org/wso2/carbon/device/application/mgt/api/services/impl/SubscriptionManagementAPIImpl.java @@ -28,6 +28,7 @@ import org.wso2.carbon.device.application.mgt.common.exception.ApplicationManage import org.wso2.carbon.device.application.mgt.common.services.SubscriptionManager; import javax.validation.Valid; +import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.Response; @@ -44,21 +45,24 @@ public class SubscriptionManagementAPIImpl implements SubscriptionManagementAPI{ private static Log log = LogFactory.getLog(SubscriptionManagementAPIImpl.class); @Override + @POST + @Path("/install-application") public Response installApplication(@ApiParam(name = "installationDetails", value = "The application ID and list" + " the devices/users/roles", required = true) @Valid InstallationDetails installationDetails) { Object result; SubscriptionManager subscriptionManager = APIUtil.getSubscriptionManager(); try { - String applicationUUID = installationDetails.getApplicationUUID(); + String applicationUUTD = installationDetails.getApplicationUUID(); + String versionName = installationDetails.getVersionName(); if (!installationDetails.getDeviceIdentifiers().isEmpty()) { List deviceList = installationDetails.getDeviceIdentifiers(); - result = subscriptionManager.installApplicationForDevices(applicationUUID, deviceList); + result = subscriptionManager.installApplicationForDevices(applicationUUTD, versionName, deviceList); } else if (!installationDetails.getUserNameList().isEmpty()) { List userList = installationDetails.getUserNameList(); - result = subscriptionManager.installApplicationForUsers(applicationUUID, userList); + result = subscriptionManager.installApplicationForUsers(applicationUUTD, userList); } else if (!installationDetails.getRoleNameList().isEmpty()) { List roleList = installationDetails.getRoleNameList(); - result = subscriptionManager.installApplicationForRoles(applicationUUID, roleList); + result = subscriptionManager.installApplicationForRoles(applicationUUTD, roleList); } else { result = "Missing request data!"; return Response.status(Response.Status.BAD_REQUEST).entity(result).build(); diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.common/src/main/java/org/wso2/carbon/device/application/mgt/common/InstallationDetails.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.common/src/main/java/org/wso2/carbon/device/application/mgt/common/InstallationDetails.java index 51b068efa1..75b484920a 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.common/src/main/java/org/wso2/carbon/device/application/mgt/common/InstallationDetails.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.common/src/main/java/org/wso2/carbon/device/application/mgt/common/InstallationDetails.java @@ -27,6 +27,11 @@ public class InstallationDetails { value = "Application ID", required = true) private String applicationUUID; + @ApiModelProperty( + name = "versionName", + value = "Version name", + required = true) + private String versionName; @ApiModelProperty( name = "userNameList", value = "List of user names.", @@ -54,6 +59,14 @@ public class InstallationDetails { this.applicationUUID = applicationUUID; } + public String getVersionName() { + return versionName; + } + + public void setVersionName(String versionName) { + this.versionName = versionName; + } + public List getUserNameList() { return userNameList; } diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.common/src/main/java/org/wso2/carbon/device/application/mgt/common/services/SubscriptionManager.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.common/src/main/java/org/wso2/carbon/device/application/mgt/common/services/SubscriptionManager.java index fbfa32a2c8..5f21cb2a98 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.common/src/main/java/org/wso2/carbon/device/application/mgt/common/services/SubscriptionManager.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.common/src/main/java/org/wso2/carbon/device/application/mgt/common/services/SubscriptionManager.java @@ -34,7 +34,7 @@ public interface SubscriptionManager { * @return Failed Device List which the application was unable to install * @throws ApplicationManagementException Application Management Exception */ - List installApplicationForDevices(String applicationUUID, + List installApplicationForDevices(String applicationUUID, String versionName, List deviceList) throws ApplicationManagementException; diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/impl/SubscriptionManagerImpl.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/impl/SubscriptionManagerImpl.java index 31c4817bf4..6fc19346fd 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/impl/SubscriptionManagerImpl.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/impl/SubscriptionManagerImpl.java @@ -25,14 +25,23 @@ import org.wso2.carbon.device.application.mgt.common.exception.ApplicationManage import org.wso2.carbon.device.application.mgt.common.services.SubscriptionManager; import org.wso2.carbon.device.application.mgt.core.dao.common.DAOFactory; import org.wso2.carbon.device.application.mgt.core.internal.DataHolder; +import org.wso2.carbon.device.application.mgt.core.util.HelperUtil; import org.wso2.carbon.device.mgt.common.Device; +import org.wso2.carbon.device.mgt.common.DeviceManagementConstants; import org.wso2.carbon.device.mgt.common.DeviceManagementException; +import org.wso2.carbon.device.mgt.common.InvalidDeviceException; +import org.wso2.carbon.device.mgt.common.app.mgt.DeviceApplicationMapping; +import org.wso2.carbon.device.mgt.common.operation.mgt.Operation; +import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementException; import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException; import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory; +import org.wso2.carbon.device.mgt.core.operation.mgt.ProfileOperation; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; +import java.util.Map; /** * This is the default implementation for the Subscription Manager. @@ -42,12 +51,58 @@ public class SubscriptionManagerImpl implements SubscriptionManager { private static final Log log = LogFactory.getLog(SubscriptionManagerImpl.class); @Override - public List installApplicationForDevices(String applicationUUID, + public List installApplicationForDevices(String applicationUUID, String versionName, List deviceList) throws ApplicationManagementException { + + // Todo: try whether we can optimise this by sending bulk inserts to db + // Todo: atomicity is not maintained as deveice managment provider service uses separate db connection. fix this?? log.info("Install application: " + applicationUUID + " to: " + deviceList.size() + " devices."); - List failedDevices = installApplication(applicationUUID, deviceList); - return failedDevices; + List failedDeviceList = new ArrayList<>(deviceList); + for (DeviceIdentifier device : deviceList) { + org.wso2.carbon.device.mgt.common.DeviceIdentifier deviceIdentifier = new org.wso2.carbon.device.mgt + .common.DeviceIdentifier(device.getId(), device.getType()); + try { + DeviceManagementDAOFactory.openConnection(); + // todo: replace this with boolean:deviceExsits(deviceId) operation + Map currentDevices = DeviceManagementDAOFactory.getDeviceDAO().getDevice(deviceIdentifier); + DeviceManagementDAOFactory.closeConnection(); + + if (currentDevices.isEmpty()) { + log.error("Device with ID: " + device.getId() + " not found to install the application."); + } else { + if (log.isDebugEnabled()) { + log.debug("Installing application to : " + device.getId()); + } + //Todo: generating one time download link for the application and put install operation to device. + + // put app install operation to the device + ProfileOperation operation = new ProfileOperation(); + operation.setCode("INSTALL_APPLICATION"); + operation.setType(Operation.Type.PROFILE); + operation.setPayLoad("{'type':'enterprise', 'url':'http://10.100.5.76:8000/app-debug.apk', 'app':'" + applicationUUID + "'}"); + List deviceIdentifiers = new ArrayList<>(); + deviceIdentifiers.add(deviceIdentifier); + DeviceManagementProviderService deviceManagementProviderService = HelperUtil.getDeviceManagementProviderService(); + deviceManagementProviderService.addOperation(DeviceManagementConstants.MobileDeviceTypes.MOBILE_DEVICE_TYPE_ANDROID, + operation, deviceIdentifiers); + + DeviceApplicationMapping deviceApp = new DeviceApplicationMapping(); + deviceApp.setDeviceIdentifier(device.getId()); + deviceApp.setApplicationUUID(applicationUUID); + deviceApp.setVersionName(versionName); + deviceApp.setInstalled(false); + deviceManagementProviderService.addDeviceApplicationMapping(deviceApp); +// DAOFactory.getSubscriptionDAO().addDeviceApplicationMapping(device.getId(), applicationUUID, false); + failedDeviceList.remove(device); + } + } catch (DeviceManagementException | DeviceManagementDAOException | OperationManagementException | InvalidDeviceException | SQLException e) { + throw new ApplicationManagementException("Failed to install application " + applicationUUID + " on device " + deviceIdentifier, e); + } finally { + DeviceManagementDAOFactory.closeConnection(); + } + } + return failedDeviceList; } @Override diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/util/HelperUtil.java b/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/util/HelperUtil.java index aabb38c055..b1297dfa8b 100644 --- a/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/util/HelperUtil.java +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.core/src/main/java/org/wso2/carbon/device/application/mgt/core/util/HelperUtil.java @@ -18,6 +18,11 @@ */ package org.wso2.carbon.device.application.mgt.core.util; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.wso2.carbon.context.PrivilegedCarbonContext; +import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService; + import java.util.UUID; /** @@ -25,8 +30,30 @@ import java.util.UUID; */ public class HelperUtil { + private static Log log = LogFactory.getLog(HelperUtil.class); + + private static DeviceManagementProviderService deviceManagementProviderService; + public static String generateApplicationUuid() { return UUID.randomUUID().toString(); } + public static DeviceManagementProviderService getDeviceManagementProviderService() { + if (deviceManagementProviderService == null) { + synchronized (HelperUtil.class) { + if (deviceManagementProviderService == null) { + PrivilegedCarbonContext ctx = PrivilegedCarbonContext.getThreadLocalCarbonContext(); + deviceManagementProviderService = (DeviceManagementProviderService) ctx + .getOSGiService(DeviceManagementProviderService.class, null); + if (deviceManagementProviderService == null) { + String msg = "Device management provider service has not initialized."; + log.error(msg); + throw new IllegalStateException(msg); + } + } + } + } + return deviceManagementProviderService; + } + } diff --git a/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/src/main/resources/publisher/npm-debug.log b/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/src/main/resources/publisher/npm-debug.log new file mode 100644 index 0000000000..b95aa7213c --- /dev/null +++ b/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/src/main/resources/publisher/npm-debug.log @@ -0,0 +1,25523 @@ +4002 verbose afterAdd /home/wso2/.npm/babel-generator/6.26.0/package/package.json not in flight; writing +4003 http 200 https://registry.npmjs.org/babel-register +4004 verbose headers { server: 'nginx/1.10.3', +4004 verbose headers 'content-type': 'application/json', +4004 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:22 GMT', +4004 verbose headers etag: 'W/"59ca6f46-11519"', +4004 verbose headers 'content-encoding': 'gzip', +4004 verbose headers 'cache-control': 'max-age=300', +4004 verbose headers 'content-length': '8158', +4004 verbose headers 'accept-ranges': 'bytes', +4004 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4004 verbose headers via: '1.1 varnish', +4004 verbose headers age: '224', +4004 verbose headers connection: 'keep-alive', +4004 verbose headers 'x-served-by': 'cache-sin18027-SIN', +4004 verbose headers 'x-cache': 'HIT', +4004 verbose headers 'x-cache-hits': '2', +4004 verbose headers 'x-timer': 'S1506936832.044343,VS0,VE0', +4004 verbose headers vary: 'Accept-Encoding, Accept' } +4005 silly get cb [ 200, +4005 silly get { server: 'nginx/1.10.3', +4005 silly get 'content-type': 'application/json', +4005 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:22 GMT', +4005 silly get etag: 'W/"59ca6f46-11519"', +4005 silly get 'content-encoding': 'gzip', +4005 silly get 'cache-control': 'max-age=300', +4005 silly get 'content-length': '8158', +4005 silly get 'accept-ranges': 'bytes', +4005 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4005 silly get via: '1.1 varnish', +4005 silly get age: '224', +4005 silly get connection: 'keep-alive', +4005 silly get 'x-served-by': 'cache-sin18027-SIN', +4005 silly get 'x-cache': 'HIT', +4005 silly get 'x-cache-hits': '2', +4005 silly get 'x-timer': 'S1506936832.044343,VS0,VE0', +4005 silly get vary: 'Accept-Encoding, Accept' } ] +4006 verbose get saving babel-register to /home/wso2/.npm/registry.npmjs.org/babel-register/.cache.json +4007 verbose get https://registry.npmjs.org/babel-template not expired, no request +4008 silly addNameRange number 2 { name: 'babel-template', +4008 silly addNameRange range: '>=6.26.0 <7.0.0', +4008 silly addNameRange hasData: true } +4009 silly addNameRange versions [ 'babel-template', +4009 silly addNameRange [ '6.0.2', +4009 silly addNameRange '6.0.12', +4009 silly addNameRange '6.0.14', +4009 silly addNameRange '6.0.15', +4009 silly addNameRange '6.0.16', +4009 silly addNameRange '6.1.17', +4009 silly addNameRange '6.1.18', +4009 silly addNameRange '6.2.0', +4009 silly addNameRange '6.2.4', +4009 silly addNameRange '6.3.0', +4009 silly addNameRange '6.3.13', +4009 silly addNameRange '6.5.0', +4009 silly addNameRange '6.5.0-1', +4009 silly addNameRange '6.6.0', +4009 silly addNameRange '6.6.4', +4009 silly addNameRange '6.6.5', +4009 silly addNameRange '6.7.0', +4009 silly addNameRange '6.8.0', +4009 silly addNameRange '6.9.0', +4009 silly addNameRange '6.14.0', +4009 silly addNameRange '6.15.0', +4009 silly addNameRange '6.16.0', +4009 silly addNameRange '6.22.0', +4009 silly addNameRange '6.23.0', +4009 silly addNameRange '7.0.0-alpha.1', +4009 silly addNameRange '7.0.0-alpha.3', +4009 silly addNameRange '7.0.0-alpha.7', +4009 silly addNameRange '6.24.1', +4009 silly addNameRange '7.0.0-alpha.8', +4009 silly addNameRange '7.0.0-alpha.9', +4009 silly addNameRange '7.0.0-alpha.10', +4009 silly addNameRange '7.0.0-alpha.11', +4009 silly addNameRange '7.0.0-alpha.12', +4009 silly addNameRange '6.25.0', +4009 silly addNameRange '7.0.0-alpha.14', +4009 silly addNameRange '7.0.0-alpha.15', +4009 silly addNameRange '7.0.0-alpha.16', +4009 silly addNameRange '7.0.0-alpha.17', +4009 silly addNameRange '7.0.0-alpha.18', +4009 silly addNameRange '7.0.0-alpha.19', +4009 silly addNameRange '6.26.0', +4009 silly addNameRange '7.0.0-alpha.20', +4009 silly addNameRange '7.0.0-beta.0', +4009 silly addNameRange '7.0.0-beta.1', +4009 silly addNameRange '7.0.0-beta.2' ] ] +4010 silly addNamed babel-template@6.26.0 +4011 verbose addNamed "6.26.0" is a plain semver version for babel-template +4012 http 200 https://registry.npmjs.org/babel-traverse +4013 verbose headers { server: 'nginx/1.10.3', +4013 verbose headers 'content-type': 'application/json', +4013 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:00 GMT', +4013 verbose headers etag: 'W/"59ca6f30-1a895"', +4013 verbose headers 'content-encoding': 'gzip', +4013 verbose headers 'cache-control': 'max-age=300', +4013 verbose headers 'content-length': '9667', +4013 verbose headers 'accept-ranges': 'bytes', +4013 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4013 verbose headers via: '1.1 varnish', +4013 verbose headers age: '267', +4013 verbose headers connection: 'keep-alive', +4013 verbose headers 'x-served-by': 'cache-sin18025-SIN', +4013 verbose headers 'x-cache': 'HIT', +4013 verbose headers 'x-cache-hits': '4', +4013 verbose headers 'x-timer': 'S1506936832.043008,VS0,VE0', +4013 verbose headers vary: 'Accept-Encoding, Accept' } +4014 silly get cb [ 200, +4014 silly get { server: 'nginx/1.10.3', +4014 silly get 'content-type': 'application/json', +4014 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:00 GMT', +4014 silly get etag: 'W/"59ca6f30-1a895"', +4014 silly get 'content-encoding': 'gzip', +4014 silly get 'cache-control': 'max-age=300', +4014 silly get 'content-length': '9667', +4014 silly get 'accept-ranges': 'bytes', +4014 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4014 silly get via: '1.1 varnish', +4014 silly get age: '267', +4014 silly get connection: 'keep-alive', +4014 silly get 'x-served-by': 'cache-sin18025-SIN', +4014 silly get 'x-cache': 'HIT', +4014 silly get 'x-cache-hits': '4', +4014 silly get 'x-timer': 'S1506936832.043008,VS0,VE0', +4014 silly get vary: 'Accept-Encoding, Accept' } ] +4015 verbose get saving babel-traverse to /home/wso2/.npm/registry.npmjs.org/babel-traverse/.cache.json +4016 silly resolveWithNewModule convert-source-map@1.5.0 checking installable status +4017 silly cache add args [ 'convert-source-map@^1.5.0', null ] +4018 verbose cache add spec convert-source-map@^1.5.0 +4019 silly cache add parsed spec Result { +4019 silly cache add raw: 'convert-source-map@^1.5.0', +4019 silly cache add scope: null, +4019 silly cache add name: 'convert-source-map', +4019 silly cache add rawSpec: '^1.5.0', +4019 silly cache add spec: '>=1.5.0 <2.0.0', +4019 silly cache add type: 'range' } +4020 silly addNamed convert-source-map@>=1.5.0 <2.0.0 +4021 verbose addNamed ">=1.5.0 <2.0.0" is a valid semver range for convert-source-map +4022 silly addNameRange { name: 'convert-source-map', +4022 silly addNameRange range: '>=1.5.0 <2.0.0', +4022 silly addNameRange hasData: false } +4023 silly mapToRegistry name convert-source-map +4024 silly mapToRegistry using default registry +4025 silly mapToRegistry registry https://registry.npmjs.org/ +4026 silly mapToRegistry uri https://registry.npmjs.org/convert-source-map +4027 verbose addNameRange registry:https://registry.npmjs.org/convert-source-map not in flight; fetching +4028 verbose afterAdd /home/wso2/.npm/babel-generator/6.26.0/package/package.json written +4029 silly cache afterAdd babel-template@6.26.0 +4030 verbose afterAdd /home/wso2/.npm/babel-template/6.26.0/package/package.json not in flight; writing +4031 verbose get https://registry.npmjs.org/convert-source-map not expired, no request +4032 silly addNameRange number 2 { name: 'convert-source-map', +4032 silly addNameRange range: '>=1.5.0 <2.0.0', +4032 silly addNameRange hasData: true } +4033 silly addNameRange versions [ 'convert-source-map', +4033 silly addNameRange [ '0.1.0', +4033 silly addNameRange '0.2.0', +4033 silly addNameRange '0.2.1', +4033 silly addNameRange '0.2.2', +4033 silly addNameRange '0.2.3', +4033 silly addNameRange '0.2.4', +4033 silly addNameRange '0.2.5', +4033 silly addNameRange '0.2.6', +4033 silly addNameRange '0.3.0', +4033 silly addNameRange '0.3.1', +4033 silly addNameRange '0.3.2', +4033 silly addNameRange '0.3.3', +4033 silly addNameRange '0.3.4', +4033 silly addNameRange '0.3.5', +4033 silly addNameRange '0.4.0', +4033 silly addNameRange '0.4.1', +4033 silly addNameRange '0.5.0', +4033 silly addNameRange '0.5.1', +4033 silly addNameRange '0.6.0', +4033 silly addNameRange '0.7.0', +4033 silly addNameRange '0.7.1', +4033 silly addNameRange '1.0.0', +4033 silly addNameRange '1.1.0', +4033 silly addNameRange '1.1.1', +4033 silly addNameRange '1.1.2', +4033 silly addNameRange '1.1.3', +4033 silly addNameRange '1.2.0', +4033 silly addNameRange '1.3.0', +4033 silly addNameRange '1.4.0', +4033 silly addNameRange '1.5.0' ] ] +4034 silly addNamed convert-source-map@1.5.0 +4035 verbose addNamed "1.5.0" is a plain semver version for convert-source-map +4036 silly resolveWithNewModule babel-register@6.26.0 checking installable status +4037 silly cache add args [ 'babel-register@^6.26.0', null ] +4038 verbose cache add spec babel-register@^6.26.0 +4039 silly cache add parsed spec Result { +4039 silly cache add raw: 'babel-register@^6.26.0', +4039 silly cache add scope: null, +4039 silly cache add name: 'babel-register', +4039 silly cache add rawSpec: '^6.26.0', +4039 silly cache add spec: '>=6.26.0 <7.0.0', +4039 silly cache add type: 'range' } +4040 silly addNamed babel-register@>=6.26.0 <7.0.0 +4041 verbose addNamed ">=6.26.0 <7.0.0" is a valid semver range for babel-register +4042 silly addNameRange { name: 'babel-register', +4042 silly addNameRange range: '>=6.26.0 <7.0.0', +4042 silly addNameRange hasData: false } +4043 silly mapToRegistry name babel-register +4044 silly mapToRegistry using default registry +4045 silly mapToRegistry registry https://registry.npmjs.org/ +4046 silly mapToRegistry uri https://registry.npmjs.org/babel-register +4047 verbose addNameRange registry:https://registry.npmjs.org/babel-register not in flight; fetching +4048 silly resolveWithNewModule babel-traverse@6.26.0 checking installable status +4049 silly cache add args [ 'babel-traverse@^6.26.0', null ] +4050 verbose cache add spec babel-traverse@^6.26.0 +4051 silly cache add parsed spec Result { +4051 silly cache add raw: 'babel-traverse@^6.26.0', +4051 silly cache add scope: null, +4051 silly cache add name: 'babel-traverse', +4051 silly cache add rawSpec: '^6.26.0', +4051 silly cache add spec: '>=6.26.0 <7.0.0', +4051 silly cache add type: 'range' } +4052 silly addNamed babel-traverse@>=6.26.0 <7.0.0 +4053 verbose addNamed ">=6.26.0 <7.0.0" is a valid semver range for babel-traverse +4054 silly addNameRange { name: 'babel-traverse', +4054 silly addNameRange range: '>=6.26.0 <7.0.0', +4054 silly addNameRange hasData: false } +4055 silly mapToRegistry name babel-traverse +4056 silly mapToRegistry using default registry +4057 silly mapToRegistry registry https://registry.npmjs.org/ +4058 silly mapToRegistry uri https://registry.npmjs.org/babel-traverse +4059 verbose addNameRange registry:https://registry.npmjs.org/babel-traverse not in flight; fetching +4060 verbose afterAdd /home/wso2/.npm/babel-template/6.26.0/package/package.json written +4061 verbose get https://registry.npmjs.org/babel-register not expired, no request +4062 silly addNameRange number 2 { name: 'babel-register', +4062 silly addNameRange range: '>=6.26.0 <7.0.0', +4062 silly addNameRange hasData: true } +4063 silly addNameRange versions [ 'babel-register', +4063 silly addNameRange [ '6.1.4', +4063 silly addNameRange '6.1.17', +4063 silly addNameRange '6.1.18', +4063 silly addNameRange '6.2.0', +4063 silly addNameRange '6.2.4', +4063 silly addNameRange '6.3.2', +4063 silly addNameRange '6.3.13', +4063 silly addNameRange '6.4.3', +4063 silly addNameRange '6.5.0', +4063 silly addNameRange '6.5.0-1', +4063 silly addNameRange '6.5.1', +4063 silly addNameRange '6.5.2', +4063 silly addNameRange '6.6.0', +4063 silly addNameRange '6.6.5', +4063 silly addNameRange '6.7.2', +4063 silly addNameRange '6.8.0', +4063 silly addNameRange '6.9.0', +4063 silly addNameRange '6.11.5', +4063 silly addNameRange '6.11.6', +4063 silly addNameRange '6.14.0', +4063 silly addNameRange '6.16.0', +4063 silly addNameRange '6.16.3', +4063 silly addNameRange '6.18.0', +4063 silly addNameRange '6.22.0', +4063 silly addNameRange '6.23.0', +4063 silly addNameRange '7.0.0-alpha.1', +4063 silly addNameRange '7.0.0-alpha.2', +4063 silly addNameRange '6.24.0', +4063 silly addNameRange '7.0.0-alpha.3', +4063 silly addNameRange '7.0.0-alpha.4', +4063 silly addNameRange '7.0.0-alpha.6', +4063 silly addNameRange '7.0.0-alpha.7', +4063 silly addNameRange '6.24.1', +4063 silly addNameRange '7.0.0-alpha.8', +4063 silly addNameRange '7.0.0-alpha.9', +4063 silly addNameRange '7.0.0-alpha.10', +4063 silly addNameRange '7.0.0-alpha.11', +4063 silly addNameRange '7.0.0-alpha.12', +4063 silly addNameRange '7.0.0-alpha.14', +4063 silly addNameRange '7.0.0-alpha.15', +4063 silly addNameRange '7.0.0-alpha.16', +4063 silly addNameRange '7.0.0-alpha.17', +4063 silly addNameRange '7.0.0-alpha.18', +4063 silly addNameRange '7.0.0-alpha.19', +4063 silly addNameRange '6.26.0', +4063 silly addNameRange '7.0.0-alpha.20', +4063 silly addNameRange '7.0.0-beta.0', +4063 silly addNameRange '7.0.0-beta.1', +4063 silly addNameRange '7.0.0-beta.2' ] ] +4064 silly addNamed babel-register@6.26.0 +4065 verbose addNamed "6.26.0" is a plain semver version for babel-register +4066 silly cache afterAdd convert-source-map@1.5.0 +4067 verbose afterAdd /home/wso2/.npm/convert-source-map/1.5.0/package/package.json not in flight; writing +4068 verbose get https://registry.npmjs.org/babel-traverse not expired, no request +4069 silly addNameRange number 2 { name: 'babel-traverse', +4069 silly addNameRange range: '>=6.26.0 <7.0.0', +4069 silly addNameRange hasData: true } +4070 silly addNameRange versions [ 'babel-traverse', +4070 silly addNameRange [ '6.0.2', +4070 silly addNameRange '6.0.14', +4070 silly addNameRange '6.0.16', +4070 silly addNameRange '6.0.17', +4070 silly addNameRange '6.0.18', +4070 silly addNameRange '6.0.19', +4070 silly addNameRange '6.0.20', +4070 silly addNameRange '6.1.2', +4070 silly addNameRange '6.1.4', +4070 silly addNameRange '6.1.17', +4070 silly addNameRange '6.1.18', +4070 silly addNameRange '6.1.20', +4070 silly addNameRange '6.2.0', +4070 silly addNameRange '6.2.4', +4070 silly addNameRange '6.3.2', +4070 silly addNameRange '6.3.13', +4070 silly addNameRange '6.3.14', +4070 silly addNameRange '6.3.15', +4070 silly addNameRange '6.3.16', +4070 silly addNameRange '6.3.17', +4070 silly addNameRange '6.3.19', +4070 silly addNameRange '6.3.21', +4070 silly addNameRange '6.3.24', +4070 silly addNameRange '6.3.25', +4070 silly addNameRange '6.3.26', +4070 silly addNameRange '6.4.5', +4070 silly addNameRange '6.5.0', +4070 silly addNameRange '6.5.0-1', +4070 silly addNameRange '6.6.0', +4070 silly addNameRange '6.6.2', +4070 silly addNameRange '6.6.3', +4070 silly addNameRange '6.6.4', +4070 silly addNameRange '6.6.5', +4070 silly addNameRange '6.7.0', +4070 silly addNameRange '6.7.2', +4070 silly addNameRange '6.7.3', +4070 silly addNameRange '6.7.4', +4070 silly addNameRange '6.7.5', +4070 silly addNameRange '6.7.6', +4070 silly addNameRange '6.8.0', +4070 silly addNameRange '6.9.0', +4070 silly addNameRange '6.10.4', +4070 silly addNameRange '6.11.4', +4070 silly addNameRange '6.12.0', +4070 silly addNameRange '6.13.0', +4070 silly addNameRange '6.14.0', +4070 silly addNameRange '6.15.0', +4070 silly addNameRange '6.16.0', +4070 silly addNameRange '6.18.0', +4070 silly addNameRange '6.19.0', +4070 silly addNameRange '6.20.0', +4070 silly addNameRange '6.21.0', +4070 silly addNameRange '6.22.0', +4070 silly addNameRange '6.22.1', +4070 silly addNameRange '6.23.0', +4070 silly addNameRange '6.23.1', +4070 silly addNameRange '7.0.0-alpha.1', +4070 silly addNameRange '7.0.0-alpha.3', +4070 silly addNameRange '7.0.0-alpha.7', +4070 silly addNameRange '6.24.1', +4070 silly addNameRange '7.0.0-alpha.8', +4070 silly addNameRange '7.0.0-alpha.9', +4070 silly addNameRange '7.0.0-alpha.10', +4070 silly addNameRange '7.0.0-alpha.11', +4070 silly addNameRange '7.0.0-alpha.12', +4070 silly addNameRange '6.25.0', +4070 silly addNameRange '7.0.0-alpha.14', +4070 silly addNameRange '7.0.0-alpha.15', +4070 silly addNameRange '7.0.0-alpha.16', +4070 silly addNameRange '7.0.0-alpha.17', +4070 silly addNameRange '7.0.0-alpha.18', +4070 silly addNameRange '7.0.0-alpha.19', +4070 silly addNameRange '6.26.0', +4070 silly addNameRange '7.0.0-alpha.20', +4070 silly addNameRange '7.0.0-beta.0', +4070 silly addNameRange '7.0.0-beta.1', +4070 silly addNameRange '7.0.0-beta.2' ] ] +4071 silly addNamed babel-traverse@6.26.0 +4072 verbose addNamed "6.26.0" is a plain semver version for babel-traverse +4073 http 200 https://registry.npmjs.org/json5 +4074 verbose headers { server: 'nginx/1.10.3', +4074 verbose headers 'content-type': 'application/json', +4074 verbose headers 'last-modified': 'Mon, 02 Oct 2017 08:33:10 GMT', +4074 verbose headers etag: 'W/"59d1f9c6-854d"', +4074 verbose headers 'content-encoding': 'gzip', +4074 verbose headers 'cache-control': 'max-age=300', +4074 verbose headers 'content-length': '7600', +4074 verbose headers 'accept-ranges': 'bytes', +4074 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4074 verbose headers via: '1.1 varnish', +4074 verbose headers age: '271', +4074 verbose headers connection: 'keep-alive', +4074 verbose headers 'x-served-by': 'cache-sin18029-SIN', +4074 verbose headers 'x-cache': 'HIT', +4074 verbose headers 'x-cache-hits': '3', +4074 verbose headers 'x-timer': 'S1506936832.090627,VS0,VE0', +4074 verbose headers vary: 'Accept-Encoding, Accept' } +4075 silly get cb [ 200, +4075 silly get { server: 'nginx/1.10.3', +4075 silly get 'content-type': 'application/json', +4075 silly get 'last-modified': 'Mon, 02 Oct 2017 08:33:10 GMT', +4075 silly get etag: 'W/"59d1f9c6-854d"', +4075 silly get 'content-encoding': 'gzip', +4075 silly get 'cache-control': 'max-age=300', +4075 silly get 'content-length': '7600', +4075 silly get 'accept-ranges': 'bytes', +4075 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4075 silly get via: '1.1 varnish', +4075 silly get age: '271', +4075 silly get connection: 'keep-alive', +4075 silly get 'x-served-by': 'cache-sin18029-SIN', +4075 silly get 'x-cache': 'HIT', +4075 silly get 'x-cache-hits': '3', +4075 silly get 'x-timer': 'S1506936832.090627,VS0,VE0', +4075 silly get vary: 'Accept-Encoding, Accept' } ] +4076 verbose get saving json5 to /home/wso2/.npm/registry.npmjs.org/json5/.cache.json +4077 verbose afterAdd /home/wso2/.npm/convert-source-map/1.5.0/package/package.json written +4078 silly cache afterAdd babel-register@6.26.0 +4079 verbose afterAdd /home/wso2/.npm/babel-register/6.26.0/package/package.json not in flight; writing +4080 silly cache afterAdd babel-traverse@6.26.0 +4081 verbose afterAdd /home/wso2/.npm/babel-traverse/6.26.0/package/package.json not in flight; writing +4082 verbose afterAdd /home/wso2/.npm/babel-register/6.26.0/package/package.json written +4083 verbose afterAdd /home/wso2/.npm/babel-traverse/6.26.0/package/package.json written +4084 silly resolveWithNewModule json5@0.5.1 checking installable status +4085 silly cache add args [ 'json5@^0.5.1', null ] +4086 verbose cache add spec json5@^0.5.1 +4087 silly cache add parsed spec Result { +4087 silly cache add raw: 'json5@^0.5.1', +4087 silly cache add scope: null, +4087 silly cache add name: 'json5', +4087 silly cache add rawSpec: '^0.5.1', +4087 silly cache add spec: '>=0.5.1 <0.6.0', +4087 silly cache add type: 'range' } +4088 silly addNamed json5@>=0.5.1 <0.6.0 +4089 verbose addNamed ">=0.5.1 <0.6.0" is a valid semver range for json5 +4090 silly addNameRange { name: 'json5', range: '>=0.5.1 <0.6.0', hasData: false } +4091 silly mapToRegistry name json5 +4092 silly mapToRegistry using default registry +4093 silly mapToRegistry registry https://registry.npmjs.org/ +4094 silly mapToRegistry uri https://registry.npmjs.org/json5 +4095 verbose addNameRange registry:https://registry.npmjs.org/json5 not in flight; fetching +4096 verbose get https://registry.npmjs.org/json5 not expired, no request +4097 silly addNameRange number 2 { name: 'json5', range: '>=0.5.1 <0.6.0', hasData: true } +4098 silly addNameRange versions [ 'json5', +4098 silly addNameRange [ '0.0.0', +4098 silly addNameRange '0.0.1', +4098 silly addNameRange '0.1.0', +4098 silly addNameRange '0.2.0', +4098 silly addNameRange '0.4.0', +4098 silly addNameRange '0.5.0', +4098 silly addNameRange '0.5.1', +4098 silly addNameRange '1.0.0-dates', +4098 silly addNameRange '1.0.0-regexps', +4098 silly addNameRange '1.0.0-beta', +4098 silly addNameRange '1.0.0-dates-2', +4098 silly addNameRange '1.0.0-regexps-2', +4098 silly addNameRange '1.0.0-beta-2' ] ] +4099 silly addNamed json5@0.5.1 +4100 verbose addNamed "0.5.1" is a plain semver version for json5 +4101 http 200 https://registry.npmjs.org/minimatch +4102 verbose headers { server: 'nginx/1.10.3', +4102 verbose headers 'content-type': 'application/json', +4102 verbose headers 'last-modified': 'Sat, 16 Sep 2017 05:24:24 GMT', +4102 verbose headers etag: 'W/"59bcb588-d203"', +4102 verbose headers 'content-encoding': 'gzip', +4102 verbose headers 'cache-control': 'max-age=300', +4102 verbose headers 'content-length': '8175', +4102 verbose headers 'accept-ranges': 'bytes', +4102 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4102 verbose headers via: '1.1 varnish', +4102 verbose headers age: '239', +4102 verbose headers connection: 'keep-alive', +4102 verbose headers 'x-served-by': 'cache-sin18021-SIN', +4102 verbose headers 'x-cache': 'HIT', +4102 verbose headers 'x-cache-hits': '12', +4102 verbose headers 'x-timer': 'S1506936832.113298,VS0,VE0', +4102 verbose headers vary: 'Accept-Encoding, Accept' } +4103 silly get cb [ 200, +4103 silly get { server: 'nginx/1.10.3', +4103 silly get 'content-type': 'application/json', +4103 silly get 'last-modified': 'Sat, 16 Sep 2017 05:24:24 GMT', +4103 silly get etag: 'W/"59bcb588-d203"', +4103 silly get 'content-encoding': 'gzip', +4103 silly get 'cache-control': 'max-age=300', +4103 silly get 'content-length': '8175', +4103 silly get 'accept-ranges': 'bytes', +4103 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4103 silly get via: '1.1 varnish', +4103 silly get age: '239', +4103 silly get connection: 'keep-alive', +4103 silly get 'x-served-by': 'cache-sin18021-SIN', +4103 silly get 'x-cache': 'HIT', +4103 silly get 'x-cache-hits': '12', +4103 silly get 'x-timer': 'S1506936832.113298,VS0,VE0', +4103 silly get vary: 'Accept-Encoding, Accept' } ] +4104 verbose get saving minimatch to /home/wso2/.npm/registry.npmjs.org/minimatch/.cache.json +4105 silly cache afterAdd json5@0.5.1 +4106 verbose afterAdd /home/wso2/.npm/json5/0.5.1/package/package.json not in flight; writing +4107 silly resolveWithNewModule minimatch@3.0.4 checking installable status +4108 silly cache add args [ 'minimatch@^3.0.4', null ] +4109 verbose cache add spec minimatch@^3.0.4 +4110 silly cache add parsed spec Result { +4110 silly cache add raw: 'minimatch@^3.0.4', +4110 silly cache add scope: null, +4110 silly cache add name: 'minimatch', +4110 silly cache add rawSpec: '^3.0.4', +4110 silly cache add spec: '>=3.0.4 <4.0.0', +4110 silly cache add type: 'range' } +4111 silly addNamed minimatch@>=3.0.4 <4.0.0 +4112 verbose addNamed ">=3.0.4 <4.0.0" is a valid semver range for minimatch +4113 silly addNameRange { name: 'minimatch', range: '>=3.0.4 <4.0.0', hasData: false } +4114 silly mapToRegistry name minimatch +4115 silly mapToRegistry using default registry +4116 silly mapToRegistry registry https://registry.npmjs.org/ +4117 silly mapToRegistry uri https://registry.npmjs.org/minimatch +4118 verbose addNameRange registry:https://registry.npmjs.org/minimatch not in flight; fetching +4119 verbose afterAdd /home/wso2/.npm/json5/0.5.1/package/package.json written +4120 verbose get https://registry.npmjs.org/minimatch not expired, no request +4121 silly addNameRange number 2 { name: 'minimatch', range: '>=3.0.4 <4.0.0', hasData: true } +4122 silly addNameRange versions [ 'minimatch', +4122 silly addNameRange [ '0.0.1', +4122 silly addNameRange '0.0.2', +4122 silly addNameRange '0.0.4', +4122 silly addNameRange '0.0.5', +4122 silly addNameRange '0.1.1', +4122 silly addNameRange '0.1.2', +4122 silly addNameRange '0.1.3', +4122 silly addNameRange '0.1.4', +4122 silly addNameRange '0.1.5', +4122 silly addNameRange '0.2.0', +4122 silly addNameRange '0.2.2', +4122 silly addNameRange '0.2.3', +4122 silly addNameRange '0.2.4', +4122 silly addNameRange '0.2.5', +4122 silly addNameRange '0.2.6', +4122 silly addNameRange '0.2.7', +4122 silly addNameRange '0.2.8', +4122 silly addNameRange '0.2.9', +4122 silly addNameRange '0.2.10', +4122 silly addNameRange '0.2.11', +4122 silly addNameRange '0.2.12', +4122 silly addNameRange '0.2.13', +4122 silly addNameRange '0.2.14', +4122 silly addNameRange '0.3.0', +4122 silly addNameRange '0.4.0', +4122 silly addNameRange '1.0.0', +4122 silly addNameRange '2.0.0', +4122 silly addNameRange '2.0.1', +4122 silly addNameRange '2.0.2', +4122 silly addNameRange '2.0.3', +4122 silly addNameRange '2.0.4', +4122 silly addNameRange '2.0.5', +4122 silly addNameRange '2.0.6', +4122 silly addNameRange '2.0.7', +4122 silly addNameRange '2.0.8', +4122 silly addNameRange '2.0.9', +4122 silly addNameRange '2.0.10', +4122 silly addNameRange '3.0.0', +4122 silly addNameRange '3.0.2', +4122 silly addNameRange '3.0.3', +4122 silly addNameRange '3.0.4' ] ] +4123 silly addNamed minimatch@3.0.4 +4124 verbose addNamed "3.0.4" is a plain semver version for minimatch +4125 http 200 https://registry.npmjs.org/babylon +4126 verbose headers { server: 'nginx/1.10.3', +4126 verbose headers 'content-type': 'application/json', +4126 verbose headers 'last-modified': 'Fri, 29 Sep 2017 03:26:44 GMT', +4126 verbose headers etag: 'W/"59cdbd74-4fa9f"', +4126 verbose headers 'content-encoding': 'gzip', +4126 verbose headers 'cache-control': 'max-age=300', +4126 verbose headers 'content-length': '20374', +4126 verbose headers 'accept-ranges': 'bytes', +4126 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4126 verbose headers via: '1.1 varnish', +4126 verbose headers age: '155', +4126 verbose headers connection: 'keep-alive', +4126 verbose headers 'x-served-by': 'cache-sin18022-SIN', +4126 verbose headers 'x-cache': 'HIT', +4126 verbose headers 'x-cache-hits': '2', +4126 verbose headers 'x-timer': 'S1506936832.059284,VS0,VE0', +4126 verbose headers vary: 'Accept-Encoding, Accept' } +4127 silly get cb [ 200, +4127 silly get { server: 'nginx/1.10.3', +4127 silly get 'content-type': 'application/json', +4127 silly get 'last-modified': 'Fri, 29 Sep 2017 03:26:44 GMT', +4127 silly get etag: 'W/"59cdbd74-4fa9f"', +4127 silly get 'content-encoding': 'gzip', +4127 silly get 'cache-control': 'max-age=300', +4127 silly get 'content-length': '20374', +4127 silly get 'accept-ranges': 'bytes', +4127 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4127 silly get via: '1.1 varnish', +4127 silly get age: '155', +4127 silly get connection: 'keep-alive', +4127 silly get 'x-served-by': 'cache-sin18022-SIN', +4127 silly get 'x-cache': 'HIT', +4127 silly get 'x-cache-hits': '2', +4127 silly get 'x-timer': 'S1506936832.059284,VS0,VE0', +4127 silly get vary: 'Accept-Encoding, Accept' } ] +4128 verbose get saving babylon to /home/wso2/.npm/registry.npmjs.org/babylon/.cache.json +4129 silly cache afterAdd minimatch@3.0.4 +4130 verbose afterAdd /home/wso2/.npm/minimatch/3.0.4/package/package.json not in flight; writing +4131 http 304 https://registry.npmjs.org/path-is-absolute +4132 verbose headers { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4132 verbose headers via: '1.1 varnish', +4132 verbose headers 'cache-control': 'max-age=300', +4132 verbose headers etag: 'W/"58e77292-133a"', +4132 verbose headers age: '295', +4132 verbose headers connection: 'keep-alive', +4132 verbose headers 'x-served-by': 'cache-sin18024-SIN', +4132 verbose headers 'x-cache': 'HIT', +4132 verbose headers 'x-cache-hits': '11', +4132 verbose headers 'x-timer': 'S1506936832.150692,VS0,VE0', +4132 verbose headers vary: 'Accept-Encoding, Accept' } +4133 silly get cb [ 304, +4133 silly get { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4133 silly get via: '1.1 varnish', +4133 silly get 'cache-control': 'max-age=300', +4133 silly get etag: 'W/"58e77292-133a"', +4133 silly get age: '295', +4133 silly get connection: 'keep-alive', +4133 silly get 'x-served-by': 'cache-sin18024-SIN', +4133 silly get 'x-cache': 'HIT', +4133 silly get 'x-cache-hits': '11', +4133 silly get 'x-timer': 'S1506936832.150692,VS0,VE0', +4133 silly get vary: 'Accept-Encoding, Accept' } ] +4134 verbose etag https://registry.npmjs.org/path-is-absolute from cache +4135 verbose get saving path-is-absolute to /home/wso2/.npm/registry.npmjs.org/path-is-absolute/.cache.json +4136 http 304 https://registry.npmjs.org/slash +4137 verbose headers { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4137 verbose headers via: '1.1 varnish', +4137 verbose headers 'cache-control': 'max-age=300', +4137 verbose headers etag: 'W/"59215f5c-1716"', +4137 verbose headers age: '73', +4137 verbose headers connection: 'keep-alive', +4137 verbose headers 'x-served-by': 'cache-sin18022-SIN', +4137 verbose headers 'x-cache': 'HIT', +4137 verbose headers 'x-cache-hits': '1', +4137 verbose headers 'x-timer': 'S1506936832.156339,VS0,VE0', +4137 verbose headers vary: 'Accept-Encoding, Accept' } +4138 silly get cb [ 304, +4138 silly get { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4138 silly get via: '1.1 varnish', +4138 silly get 'cache-control': 'max-age=300', +4138 silly get etag: 'W/"59215f5c-1716"', +4138 silly get age: '73', +4138 silly get connection: 'keep-alive', +4138 silly get 'x-served-by': 'cache-sin18022-SIN', +4138 silly get 'x-cache': 'HIT', +4138 silly get 'x-cache-hits': '1', +4138 silly get 'x-timer': 'S1506936832.156339,VS0,VE0', +4138 silly get vary: 'Accept-Encoding, Accept' } ] +4139 verbose etag https://registry.npmjs.org/slash from cache +4140 verbose get saving slash to /home/wso2/.npm/registry.npmjs.org/slash/.cache.json +4141 verbose afterAdd /home/wso2/.npm/minimatch/3.0.4/package/package.json written +4142 silly resolveWithNewModule babylon@6.18.0 checking installable status +4143 silly cache add args [ 'babylon@^6.18.0', null ] +4144 verbose cache add spec babylon@^6.18.0 +4145 silly cache add parsed spec Result { +4145 silly cache add raw: 'babylon@^6.18.0', +4145 silly cache add scope: null, +4145 silly cache add name: 'babylon', +4145 silly cache add rawSpec: '^6.18.0', +4145 silly cache add spec: '>=6.18.0 <7.0.0', +4145 silly cache add type: 'range' } +4146 silly addNamed babylon@>=6.18.0 <7.0.0 +4147 verbose addNamed ">=6.18.0 <7.0.0" is a valid semver range for babylon +4148 silly addNameRange { name: 'babylon', range: '>=6.18.0 <7.0.0', hasData: false } +4149 silly mapToRegistry name babylon +4150 silly mapToRegistry using default registry +4151 silly mapToRegistry registry https://registry.npmjs.org/ +4152 silly mapToRegistry uri https://registry.npmjs.org/babylon +4153 verbose addNameRange registry:https://registry.npmjs.org/babylon not in flight; fetching +4154 silly resolveWithNewModule path-is-absolute@1.0.1 checking installable status +4155 silly cache add args [ 'path-is-absolute@^1.0.1', null ] +4156 verbose cache add spec path-is-absolute@^1.0.1 +4157 silly cache add parsed spec Result { +4157 silly cache add raw: 'path-is-absolute@^1.0.1', +4157 silly cache add scope: null, +4157 silly cache add name: 'path-is-absolute', +4157 silly cache add rawSpec: '^1.0.1', +4157 silly cache add spec: '>=1.0.1 <2.0.0', +4157 silly cache add type: 'range' } +4158 silly addNamed path-is-absolute@>=1.0.1 <2.0.0 +4159 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for path-is-absolute +4160 silly addNameRange { name: 'path-is-absolute', +4160 silly addNameRange range: '>=1.0.1 <2.0.0', +4160 silly addNameRange hasData: false } +4161 silly mapToRegistry name path-is-absolute +4162 silly mapToRegistry using default registry +4163 silly mapToRegistry registry https://registry.npmjs.org/ +4164 silly mapToRegistry uri https://registry.npmjs.org/path-is-absolute +4165 verbose addNameRange registry:https://registry.npmjs.org/path-is-absolute not in flight; fetching +4166 silly resolveWithNewModule slash@1.0.0 checking installable status +4167 silly cache add args [ 'slash@^1.0.0', null ] +4168 verbose cache add spec slash@^1.0.0 +4169 silly cache add parsed spec Result { +4169 silly cache add raw: 'slash@^1.0.0', +4169 silly cache add scope: null, +4169 silly cache add name: 'slash', +4169 silly cache add rawSpec: '^1.0.0', +4169 silly cache add spec: '>=1.0.0 <2.0.0', +4169 silly cache add type: 'range' } +4170 silly addNamed slash@>=1.0.0 <2.0.0 +4171 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for slash +4172 silly addNameRange { name: 'slash', range: '>=1.0.0 <2.0.0', hasData: false } +4173 silly mapToRegistry name slash +4174 silly mapToRegistry using default registry +4175 silly mapToRegistry registry https://registry.npmjs.org/ +4176 silly mapToRegistry uri https://registry.npmjs.org/slash +4177 verbose addNameRange registry:https://registry.npmjs.org/slash not in flight; fetching +4178 verbose get https://registry.npmjs.org/path-is-absolute not expired, no request +4179 silly addNameRange number 2 { name: 'path-is-absolute', +4179 silly addNameRange range: '>=1.0.1 <2.0.0', +4179 silly addNameRange hasData: true } +4180 silly addNameRange versions [ 'path-is-absolute', [ '1.0.0', '1.0.1' ] ] +4181 silly addNamed path-is-absolute@1.0.1 +4182 verbose addNamed "1.0.1" is a plain semver version for path-is-absolute +4183 verbose get https://registry.npmjs.org/slash not expired, no request +4184 silly addNameRange number 2 { name: 'slash', range: '>=1.0.0 <2.0.0', hasData: true } +4185 silly addNameRange versions [ 'slash', [ '0.1.0', '0.1.1', '0.1.3', '1.0.0' ] ] +4186 silly addNamed slash@1.0.0 +4187 verbose addNamed "1.0.0" is a plain semver version for slash +4188 verbose get https://registry.npmjs.org/babylon not expired, no request +4189 silly addNameRange number 2 { name: 'babylon', range: '>=6.18.0 <7.0.0', hasData: true } +4190 silly addNameRange versions [ 'babylon', +4190 silly addNameRange [ '0.0.1', +4190 silly addNameRange '5.6.23', +4190 silly addNameRange '5.7.1', +4190 silly addNameRange '5.7.2', +4190 silly addNameRange '5.8.2', +4190 silly addNameRange '5.8.3', +4190 silly addNameRange '5.8.5', +4190 silly addNameRange '5.8.6', +4190 silly addNameRange '5.8.8', +4190 silly addNameRange '5.8.9', +4190 silly addNameRange '5.8.12', +4190 silly addNameRange '5.8.13', +4190 silly addNameRange '5.8.19', +4190 silly addNameRange '5.8.20', +4190 silly addNameRange '5.8.21', +4190 silly addNameRange '5.8.22', +4190 silly addNameRange '5.8.23', +4190 silly addNameRange '5.8.29', +4190 silly addNameRange '6.0.2', +4190 silly addNameRange '6.0.14', +4190 silly addNameRange '6.0.17', +4190 silly addNameRange '6.0.18', +4190 silly addNameRange '6.1.2', +4190 silly addNameRange '6.1.4', +4190 silly addNameRange '5.8.34', +4190 silly addNameRange '6.1.17', +4190 silly addNameRange '6.1.18', +4190 silly addNameRange '6.1.20', +4190 silly addNameRange '6.1.21', +4190 silly addNameRange '6.2.0', +4190 silly addNameRange '6.2.4', +4190 silly addNameRange '6.3.0', +4190 silly addNameRange '6.3.13', +4190 silly addNameRange '6.3.14', +4190 silly addNameRange '6.3.15', +4190 silly addNameRange '6.3.18', +4190 silly addNameRange '6.3.20', +4190 silly addNameRange '6.3.21', +4190 silly addNameRange '6.3.25', +4190 silly addNameRange '6.3.26', +4190 silly addNameRange '6.4.0', +4190 silly addNameRange '6.4.2', +4190 silly addNameRange '6.4.5', +4190 silly addNameRange '5.8.35', +4190 silly addNameRange '6.5.0', +4190 silly addNameRange '6.5.0-1', +4190 silly addNameRange '6.5.2', +4190 silly addNameRange '6.6.0', +4190 silly addNameRange '6.6.4', +4190 silly addNameRange '6.6.5', +4190 silly addNameRange '6.7.0', +4190 silly addNameRange '6.7.1-test.1', +4190 silly addNameRange '6.7.1-test.2', +4190 silly addNameRange '5.8.38', +4190 silly addNameRange '6.8.0', +4190 silly addNameRange '6.8.1', +4190 silly addNameRange '6.8.2', +4190 silly addNameRange '6.8.3', +4190 silly addNameRange '6.8.4', +4190 silly addNameRange '6.9.0', +4190 silly addNameRange '6.9.1', +4190 silly addNameRange '6.9.2', +4190 silly addNameRange '6.10.0', +4190 silly addNameRange '6.11.0', +4190 silly addNameRange '6.11.1', +4190 silly addNameRange '6.11.2', +4190 silly addNameRange '6.11.3', +4190 silly addNameRange '6.11.4', +4190 silly addNameRange '6.11.5', +4190 silly addNameRange '6.11.6', +4190 silly addNameRange '6.12.0', +4190 silly addNameRange '6.13.0', +4190 silly addNameRange '6.13.1', +4190 silly addNameRange '6.14.0', +4190 silly addNameRange '6.14.1', +4190 silly addNameRange '6.15.0', +4190 silly addNameRange '7.0.0-beta.0', +4190 silly addNameRange '7.0.0-beta.1', +4190 silly addNameRange '7.0.0-beta.2', +4190 silly addNameRange '6.16.0', +4190 silly addNameRange '6.16.1', +4190 silly addNameRange '7.0.0-beta.3', +4190 silly addNameRange '7.0.0-beta.4', +4190 silly addNameRange '7.0.0-beta.5', +4190 silly addNameRange '7.0.0-beta.6', +4190 silly addNameRange '7.0.0-beta.7', +4190 silly addNameRange '7.0.0-beta.8', +4190 silly addNameRange '6.17.0', +4190 silly addNameRange '6.17.1', +4190 silly addNameRange '7.0.0-beta.9', +4190 silly addNameRange '7.0.0-beta.10', +4190 silly addNameRange '7.0.0-beta.11', +4190 silly addNameRange '7.0.0-beta.12', +4190 silly addNameRange '6.17.2', +4190 silly addNameRange '7.0.0-beta.13', +4190 silly addNameRange '6.17.3', +4190 silly addNameRange '6.17.4', +4190 silly addNameRange '7.0.0-beta.14', +4190 silly addNameRange '7.0.0-beta.15', +4190 silly addNameRange '7.0.0-beta.16', +4190 silly addNameRange '7.0.0-beta.17', +4190 silly addNameRange '7.0.0-beta.18', +4190 silly addNameRange '7.0.0-beta.19', +4190 silly addNameRange '6.18.0', +4190 silly addNameRange '7.0.0-beta.20', +4190 silly addNameRange '7.0.0-beta.21', +4190 silly addNameRange '7.0.0-beta.22', +4190 silly addNameRange '7.0.0-beta.23', +4190 silly addNameRange '7.0.0-beta.24', +4190 silly addNameRange '7.0.0-beta.25', +4190 silly addNameRange '7.0.0-beta.26', +4190 silly addNameRange '7.0.0-beta.27' ] ] +4191 silly addNamed babylon@6.18.0 +4192 verbose addNamed "6.18.0" is a plain semver version for babylon +4193 silly cache afterAdd path-is-absolute@1.0.1 +4194 verbose afterAdd /home/wso2/.npm/path-is-absolute/1.0.1/package/package.json not in flight; writing +4195 silly cache afterAdd slash@1.0.0 +4196 verbose afterAdd /home/wso2/.npm/slash/1.0.0/package/package.json not in flight; writing +4197 silly cache afterAdd babylon@6.18.0 +4198 verbose afterAdd /home/wso2/.npm/babylon/6.18.0/package/package.json not in flight; writing +4199 verbose afterAdd /home/wso2/.npm/path-is-absolute/1.0.1/package/package.json written +4200 verbose afterAdd /home/wso2/.npm/slash/1.0.0/package/package.json written +4201 http 200 https://registry.npmjs.org/babel-types +4202 verbose headers { server: 'nginx/1.10.3', +4202 verbose headers 'content-type': 'application/json', +4202 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:16 GMT', +4202 verbose headers etag: 'W/"59ca6f04-219d1"', +4202 verbose headers 'content-encoding': 'gzip', +4202 verbose headers 'cache-control': 'max-age=300', +4202 verbose headers 'content-length': '14278', +4202 verbose headers 'accept-ranges': 'bytes', +4202 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4202 verbose headers via: '1.1 varnish', +4202 verbose headers age: '155', +4202 verbose headers connection: 'keep-alive', +4202 verbose headers 'x-served-by': 'cache-sin18031-SIN', +4202 verbose headers 'x-cache': 'HIT', +4202 verbose headers 'x-cache-hits': '3', +4202 verbose headers 'x-timer': 'S1506936832.114869,VS0,VE0', +4202 verbose headers vary: 'Accept-Encoding, Accept' } +4203 silly get cb [ 200, +4203 silly get { server: 'nginx/1.10.3', +4203 silly get 'content-type': 'application/json', +4203 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:16 GMT', +4203 silly get etag: 'W/"59ca6f04-219d1"', +4203 silly get 'content-encoding': 'gzip', +4203 silly get 'cache-control': 'max-age=300', +4203 silly get 'content-length': '14278', +4203 silly get 'accept-ranges': 'bytes', +4203 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4203 silly get via: '1.1 varnish', +4203 silly get age: '155', +4203 silly get connection: 'keep-alive', +4203 silly get 'x-served-by': 'cache-sin18031-SIN', +4203 silly get 'x-cache': 'HIT', +4203 silly get 'x-cache-hits': '3', +4203 silly get 'x-timer': 'S1506936832.114869,VS0,VE0', +4203 silly get vary: 'Accept-Encoding, Accept' } ] +4204 verbose get saving babel-types to /home/wso2/.npm/registry.npmjs.org/babel-types/.cache.json +4205 http 304 https://registry.npmjs.org/private +4206 verbose headers { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4206 verbose headers via: '1.1 varnish', +4206 verbose headers 'cache-control': 'max-age=300', +4206 verbose headers etag: 'W/"5974a970-53a5"', +4206 verbose headers age: '24', +4206 verbose headers connection: 'keep-alive', +4206 verbose headers 'x-served-by': 'cache-sin18028-SIN', +4206 verbose headers 'x-cache': 'HIT', +4206 verbose headers 'x-cache-hits': '1', +4206 verbose headers 'x-timer': 'S1506936832.172584,VS0,VE0', +4206 verbose headers vary: 'Accept-Encoding, Accept' } +4207 silly get cb [ 304, +4207 silly get { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4207 silly get via: '1.1 varnish', +4207 silly get 'cache-control': 'max-age=300', +4207 silly get etag: 'W/"5974a970-53a5"', +4207 silly get age: '24', +4207 silly get connection: 'keep-alive', +4207 silly get 'x-served-by': 'cache-sin18028-SIN', +4207 silly get 'x-cache': 'HIT', +4207 silly get 'x-cache-hits': '1', +4207 silly get 'x-timer': 'S1506936832.172584,VS0,VE0', +4207 silly get vary: 'Accept-Encoding, Accept' } ] +4208 verbose etag https://registry.npmjs.org/private from cache +4209 verbose get saving private to /home/wso2/.npm/registry.npmjs.org/private/.cache.json +4210 verbose afterAdd /home/wso2/.npm/babylon/6.18.0/package/package.json written +4211 silly resolveWithNewModule babel-types@6.26.0 checking installable status +4212 silly cache add args [ 'babel-types@^6.26.0', null ] +4213 verbose cache add spec babel-types@^6.26.0 +4214 silly cache add parsed spec Result { +4214 silly cache add raw: 'babel-types@^6.26.0', +4214 silly cache add scope: null, +4214 silly cache add name: 'babel-types', +4214 silly cache add rawSpec: '^6.26.0', +4214 silly cache add spec: '>=6.26.0 <7.0.0', +4214 silly cache add type: 'range' } +4215 silly addNamed babel-types@>=6.26.0 <7.0.0 +4216 verbose addNamed ">=6.26.0 <7.0.0" is a valid semver range for babel-types +4217 silly addNameRange { name: 'babel-types', range: '>=6.26.0 <7.0.0', hasData: false } +4218 silly mapToRegistry name babel-types +4219 silly mapToRegistry using default registry +4220 silly mapToRegistry registry https://registry.npmjs.org/ +4221 silly mapToRegistry uri https://registry.npmjs.org/babel-types +4222 verbose addNameRange registry:https://registry.npmjs.org/babel-types not in flight; fetching +4223 verbose get https://registry.npmjs.org/babel-types not expired, no request +4224 silly addNameRange number 2 { name: 'babel-types', range: '>=6.26.0 <7.0.0', hasData: true } +4225 silly addNameRange versions [ 'babel-types', +4225 silly addNameRange [ '6.0.2', +4225 silly addNameRange '6.0.12', +4225 silly addNameRange '6.0.13', +4225 silly addNameRange '6.0.14', +4225 silly addNameRange '6.0.15', +4225 silly addNameRange '6.0.17', +4225 silly addNameRange '6.0.18', +4225 silly addNameRange '6.0.19', +4225 silly addNameRange '6.1.2', +4225 silly addNameRange '6.1.4', +4225 silly addNameRange '6.1.17', +4225 silly addNameRange '6.1.18', +4225 silly addNameRange '6.2.0', +4225 silly addNameRange '6.2.3', +4225 silly addNameRange '6.2.4', +4225 silly addNameRange '6.3.0', +4225 silly addNameRange '6.3.13', +4225 silly addNameRange '6.3.14', +4225 silly addNameRange '6.3.17', +4225 silly addNameRange '6.3.18', +4225 silly addNameRange '6.3.20', +4225 silly addNameRange '6.3.21', +4225 silly addNameRange '6.3.24', +4225 silly addNameRange '6.4.0', +4225 silly addNameRange '6.4.1', +4225 silly addNameRange '6.4.3', +4225 silly addNameRange '6.4.5', +4225 silly addNameRange '6.5.0', +4225 silly addNameRange '6.5.0-1', +4225 silly addNameRange '6.5.1', +4225 silly addNameRange '6.5.2', +4225 silly addNameRange '6.6.0', +4225 silly addNameRange '6.6.4', +4225 silly addNameRange '6.6.5', +4225 silly addNameRange '6.7.0', +4225 silly addNameRange '6.7.2', +4225 silly addNameRange '6.7.7', +4225 silly addNameRange '6.8.0', +4225 silly addNameRange '6.8.1', +4225 silly addNameRange '6.9.0', +4225 silly addNameRange '6.9.1', +4225 silly addNameRange '6.10.0', +4225 silly addNameRange '6.10.2', +4225 silly addNameRange '6.11.1', +4225 silly addNameRange '6.13.0', +4225 silly addNameRange '6.14.0', +4225 silly addNameRange '6.15.0', +4225 silly addNameRange '6.16.0', +4225 silly addNameRange '6.18.0', +4225 silly addNameRange '6.19.0', +4225 silly addNameRange '6.20.0', +4225 silly addNameRange '6.21.0', +4225 silly addNameRange '6.22.0', +4225 silly addNameRange '6.23.0', +4225 silly addNameRange '7.0.0-alpha.1', +4225 silly addNameRange '7.0.0-alpha.3', +4225 silly addNameRange '7.0.0-alpha.7', +4225 silly addNameRange '6.24.1', +4225 silly addNameRange '7.0.0-alpha.9', +4225 silly addNameRange '7.0.0-alpha.10', +4225 silly addNameRange '7.0.0-alpha.11', +4225 silly addNameRange '7.0.0-alpha.12', +4225 silly addNameRange '6.25.0', +4225 silly addNameRange '7.0.0-alpha.14', +4225 silly addNameRange '7.0.0-alpha.15', +4225 silly addNameRange '7.0.0-alpha.16', +4225 silly addNameRange '7.0.0-alpha.17', +4225 silly addNameRange '7.0.0-alpha.18', +4225 silly addNameRange '7.0.0-alpha.19', +4225 silly addNameRange '6.26.0', +4225 silly addNameRange '7.0.0-alpha.20', +4225 silly addNameRange '7.0.0-beta.0', +4225 silly addNameRange '7.0.0-beta.1', +4225 silly addNameRange '7.0.0-beta.2' ] ] +4226 silly addNamed babel-types@6.26.0 +4227 verbose addNamed "6.26.0" is a plain semver version for babel-types +4228 silly resolveWithNewModule private@0.1.7 checking installable status +4229 silly cache add args [ 'private@^0.1.7', null ] +4230 verbose cache add spec private@^0.1.7 +4231 silly cache add parsed spec Result { +4231 silly cache add raw: 'private@^0.1.7', +4231 silly cache add scope: null, +4231 silly cache add name: 'private', +4231 silly cache add rawSpec: '^0.1.7', +4231 silly cache add spec: '>=0.1.7 <0.2.0', +4231 silly cache add type: 'range' } +4232 silly addNamed private@>=0.1.7 <0.2.0 +4233 verbose addNamed ">=0.1.7 <0.2.0" is a valid semver range for private +4234 silly addNameRange { name: 'private', range: '>=0.1.7 <0.2.0', hasData: false } +4235 silly mapToRegistry name private +4236 silly mapToRegistry using default registry +4237 silly mapToRegistry registry https://registry.npmjs.org/ +4238 silly mapToRegistry uri https://registry.npmjs.org/private +4239 verbose addNameRange registry:https://registry.npmjs.org/private not in flight; fetching +4240 verbose get https://registry.npmjs.org/private not expired, no request +4241 silly addNameRange number 2 { name: 'private', range: '>=0.1.7 <0.2.0', hasData: true } +4242 silly addNameRange versions [ 'private', +4242 silly addNameRange [ '0.0.1', +4242 silly addNameRange '0.0.2', +4242 silly addNameRange '0.0.3', +4242 silly addNameRange '0.0.4', +4242 silly addNameRange '0.0.5', +4242 silly addNameRange '0.1.0', +4242 silly addNameRange '0.1.1', +4242 silly addNameRange '0.1.2', +4242 silly addNameRange '0.1.3', +4242 silly addNameRange '0.1.4', +4242 silly addNameRange '0.1.5', +4242 silly addNameRange '0.1.6', +4242 silly addNameRange '0.1.7' ] ] +4243 silly addNamed private@0.1.7 +4244 verbose addNamed "0.1.7" is a plain semver version for private +4245 silly cache afterAdd babel-types@6.26.0 +4246 verbose afterAdd /home/wso2/.npm/babel-types/6.26.0/package/package.json not in flight; writing +4247 verbose afterAdd /home/wso2/.npm/babel-types/6.26.0/package/package.json written +4248 silly cache afterAdd private@0.1.7 +4249 verbose afterAdd /home/wso2/.npm/private/0.1.7/package/package.json not in flight; writing +4250 verbose afterAdd /home/wso2/.npm/private/0.1.7/package/package.json written +4251 http 200 https://registry.npmjs.org/source-map +4252 verbose headers { server: 'nginx/1.10.3', +4252 verbose headers 'content-type': 'application/json', +4252 verbose headers 'last-modified': 'Fri, 29 Sep 2017 14:42:30 GMT', +4252 verbose headers etag: 'W/"59ce5bd6-281e6"', +4252 verbose headers 'content-encoding': 'gzip', +4252 verbose headers 'cache-control': 'max-age=300', +4252 verbose headers 'content-length': '14390', +4252 verbose headers 'accept-ranges': 'bytes', +4252 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4252 verbose headers via: '1.1 varnish', +4252 verbose headers age: '180', +4252 verbose headers connection: 'keep-alive', +4252 verbose headers 'x-served-by': 'cache-sin18032-SIN', +4252 verbose headers 'x-cache': 'HIT', +4252 verbose headers 'x-cache-hits': '11', +4252 verbose headers 'x-timer': 'S1506936832.197351,VS0,VE0', +4252 verbose headers vary: 'Accept-Encoding, Accept' } +4253 silly get cb [ 200, +4253 silly get { server: 'nginx/1.10.3', +4253 silly get 'content-type': 'application/json', +4253 silly get 'last-modified': 'Fri, 29 Sep 2017 14:42:30 GMT', +4253 silly get etag: 'W/"59ce5bd6-281e6"', +4253 silly get 'content-encoding': 'gzip', +4253 silly get 'cache-control': 'max-age=300', +4253 silly get 'content-length': '14390', +4253 silly get 'accept-ranges': 'bytes', +4253 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4253 silly get via: '1.1 varnish', +4253 silly get age: '180', +4253 silly get connection: 'keep-alive', +4253 silly get 'x-served-by': 'cache-sin18032-SIN', +4253 silly get 'x-cache': 'HIT', +4253 silly get 'x-cache-hits': '11', +4253 silly get 'x-timer': 'S1506936832.197351,VS0,VE0', +4253 silly get vary: 'Accept-Encoding, Accept' } ] +4254 verbose get saving source-map to /home/wso2/.npm/registry.npmjs.org/source-map/.cache.json +4255 silly resolveWithNewModule source-map@0.5.7 checking installable status +4256 silly cache add args [ 'source-map@^0.5.6', null ] +4257 verbose cache add spec source-map@^0.5.6 +4258 silly cache add parsed spec Result { +4258 silly cache add raw: 'source-map@^0.5.6', +4258 silly cache add scope: null, +4258 silly cache add name: 'source-map', +4258 silly cache add rawSpec: '^0.5.6', +4258 silly cache add spec: '>=0.5.6 <0.6.0', +4258 silly cache add type: 'range' } +4259 silly addNamed source-map@>=0.5.6 <0.6.0 +4260 verbose addNamed ">=0.5.6 <0.6.0" is a valid semver range for source-map +4261 silly addNameRange { name: 'source-map', range: '>=0.5.6 <0.6.0', hasData: false } +4262 silly mapToRegistry name source-map +4263 silly mapToRegistry using default registry +4264 silly mapToRegistry registry https://registry.npmjs.org/ +4265 silly mapToRegistry uri https://registry.npmjs.org/source-map +4266 verbose addNameRange registry:https://registry.npmjs.org/source-map not in flight; fetching +4267 verbose get https://registry.npmjs.org/source-map not expired, no request +4268 silly addNameRange number 2 { name: 'source-map', range: '>=0.5.6 <0.6.0', hasData: true } +4269 silly addNameRange versions [ 'source-map', +4269 silly addNameRange [ '0.0.0', +4269 silly addNameRange '0.1.0', +4269 silly addNameRange '0.1.1', +4269 silly addNameRange '0.1.2', +4269 silly addNameRange '0.1.3', +4269 silly addNameRange '0.1.4', +4269 silly addNameRange '0.1.5', +4269 silly addNameRange '0.1.6', +4269 silly addNameRange '0.1.7', +4269 silly addNameRange '0.1.8', +4269 silly addNameRange '0.1.9', +4269 silly addNameRange '0.1.10', +4269 silly addNameRange '0.1.11', +4269 silly addNameRange '0.1.12', +4269 silly addNameRange '0.1.13', +4269 silly addNameRange '0.1.14', +4269 silly addNameRange '0.1.15', +4269 silly addNameRange '0.1.16', +4269 silly addNameRange '0.1.17', +4269 silly addNameRange '0.1.18', +4269 silly addNameRange '0.1.19', +4269 silly addNameRange '0.1.20', +4269 silly addNameRange '0.1.21', +4269 silly addNameRange '0.1.22', +4269 silly addNameRange '0.1.23', +4269 silly addNameRange '0.1.24', +4269 silly addNameRange '0.1.25', +4269 silly addNameRange '0.1.26', +4269 silly addNameRange '0.1.27', +4269 silly addNameRange '0.1.28', +4269 silly addNameRange '0.1.29', +4269 silly addNameRange '0.1.30', +4269 silly addNameRange '0.1.31', +4269 silly addNameRange '0.1.32', +4269 silly addNameRange '0.1.33', +4269 silly addNameRange '0.1.34', +4269 silly addNameRange '0.1.35', +4269 silly addNameRange '0.1.36', +4269 silly addNameRange '0.1.37', +4269 silly addNameRange '0.1.38', +4269 silly addNameRange '0.1.39', +4269 silly addNameRange '0.1.40', +4269 silly addNameRange '0.1.41', +4269 silly addNameRange '0.1.42', +4269 silly addNameRange '0.1.43', +4269 silly addNameRange '0.2.0', +4269 silly addNameRange '0.3.0', +4269 silly addNameRange '0.4.0', +4269 silly addNameRange '0.4.1', +4269 silly addNameRange '0.4.2', +4269 silly addNameRange '0.4.3', +4269 silly addNameRange '0.4.4', +4269 silly addNameRange '0.5.0', +4269 silly addNameRange '0.5.1', +4269 silly addNameRange '0.5.2', +4269 silly addNameRange '0.5.3', +4269 silly addNameRange '0.5.4', +4269 silly addNameRange '0.5.5', +4269 silly addNameRange '0.5.6', +4269 silly addNameRange '0.5.7', +4269 silly addNameRange '0.6.0', +4269 silly addNameRange '0.6.1' ] ] +4270 silly addNamed source-map@0.5.7 +4271 verbose addNamed "0.5.7" is a plain semver version for source-map +4272 http 200 https://registry.npmjs.org/lodash +4273 verbose headers { server: 'nginx/1.10.3', +4273 verbose headers 'content-type': 'application/json', +4273 verbose headers 'last-modified': 'Sun, 01 Oct 2017 19:56:46 GMT', +4273 verbose headers etag: 'W/"59d1487e-29fac"', +4273 verbose headers 'content-encoding': 'gzip', +4273 verbose headers 'cache-control': 'max-age=300', +4273 verbose headers 'content-length': '18628', +4273 verbose headers 'accept-ranges': 'bytes', +4273 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4273 verbose headers via: '1.1 varnish', +4273 verbose headers age: '215', +4273 verbose headers connection: 'keep-alive', +4273 verbose headers 'x-served-by': 'cache-sin18021-SIN', +4273 verbose headers 'x-cache': 'HIT', +4273 verbose headers 'x-cache-hits': '15', +4273 verbose headers 'x-timer': 'S1506936832.180287,VS0,VE0', +4273 verbose headers vary: 'Accept-Encoding, Accept' } +4274 silly get cb [ 200, +4274 silly get { server: 'nginx/1.10.3', +4274 silly get 'content-type': 'application/json', +4274 silly get 'last-modified': 'Sun, 01 Oct 2017 19:56:46 GMT', +4274 silly get etag: 'W/"59d1487e-29fac"', +4274 silly get 'content-encoding': 'gzip', +4274 silly get 'cache-control': 'max-age=300', +4274 silly get 'content-length': '18628', +4274 silly get 'accept-ranges': 'bytes', +4274 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4274 silly get via: '1.1 varnish', +4274 silly get age: '215', +4274 silly get connection: 'keep-alive', +4274 silly get 'x-served-by': 'cache-sin18021-SIN', +4274 silly get 'x-cache': 'HIT', +4274 silly get 'x-cache-hits': '15', +4274 silly get 'x-timer': 'S1506936832.180287,VS0,VE0', +4274 silly get vary: 'Accept-Encoding, Accept' } ] +4275 verbose get saving lodash to /home/wso2/.npm/registry.npmjs.org/lodash/.cache.json +4276 silly cache afterAdd source-map@0.5.7 +4277 verbose afterAdd /home/wso2/.npm/source-map/0.5.7/package/package.json not in flight; writing +4278 verbose afterAdd /home/wso2/.npm/source-map/0.5.7/package/package.json written +4279 silly resolveWithNewModule lodash@4.17.4 checking installable status +4280 silly cache add args [ 'lodash@^4.17.4', null ] +4281 verbose cache add spec lodash@^4.17.4 +4282 silly cache add parsed spec Result { +4282 silly cache add raw: 'lodash@^4.17.4', +4282 silly cache add scope: null, +4282 silly cache add name: 'lodash', +4282 silly cache add rawSpec: '^4.17.4', +4282 silly cache add spec: '>=4.17.4 <5.0.0', +4282 silly cache add type: 'range' } +4283 silly addNamed lodash@>=4.17.4 <5.0.0 +4284 verbose addNamed ">=4.17.4 <5.0.0" is a valid semver range for lodash +4285 silly addNameRange { name: 'lodash', range: '>=4.17.4 <5.0.0', hasData: false } +4286 silly mapToRegistry name lodash +4287 silly mapToRegistry using default registry +4288 silly mapToRegistry registry https://registry.npmjs.org/ +4289 silly mapToRegistry uri https://registry.npmjs.org/lodash +4290 verbose addNameRange registry:https://registry.npmjs.org/lodash not in flight; fetching +4291 verbose get https://registry.npmjs.org/lodash not expired, no request +4292 silly addNameRange number 2 { name: 'lodash', range: '>=4.17.4 <5.0.0', hasData: true } +4293 silly addNameRange versions [ 'lodash', +4293 silly addNameRange [ '0.1.0', +4293 silly addNameRange '0.2.0', +4293 silly addNameRange '0.2.1', +4293 silly addNameRange '0.2.2', +4293 silly addNameRange '0.3.0', +4293 silly addNameRange '0.3.1', +4293 silly addNameRange '0.3.2', +4293 silly addNameRange '0.4.0', +4293 silly addNameRange '0.4.1', +4293 silly addNameRange '0.4.2', +4293 silly addNameRange '0.5.0-rc.1', +4293 silly addNameRange '0.5.0', +4293 silly addNameRange '0.5.1', +4293 silly addNameRange '0.5.2', +4293 silly addNameRange '0.6.0', +4293 silly addNameRange '0.6.1', +4293 silly addNameRange '0.7.0', +4293 silly addNameRange '0.8.0', +4293 silly addNameRange '0.8.1', +4293 silly addNameRange '0.8.2', +4293 silly addNameRange '0.9.0', +4293 silly addNameRange '0.9.1', +4293 silly addNameRange '0.9.2', +4293 silly addNameRange '0.10.0', +4293 silly addNameRange '1.0.0-rc.1', +4293 silly addNameRange '1.0.0-rc.2', +4293 silly addNameRange '1.0.0-rc.3', +4293 silly addNameRange '1.0.0', +4293 silly addNameRange '1.0.1', +4293 silly addNameRange '1.1.0', +4293 silly addNameRange '1.1.1', +4293 silly addNameRange '1.2.0', +4293 silly addNameRange '1.2.1', +4293 silly addNameRange '1.3.0', +4293 silly addNameRange '1.3.1', +4293 silly addNameRange '2.0.0', +4293 silly addNameRange '2.1.0', +4293 silly addNameRange '2.2.0', +4293 silly addNameRange '2.2.1', +4293 silly addNameRange '2.3.0', +4293 silly addNameRange '2.4.0', +4293 silly addNameRange '2.4.1', +4293 silly addNameRange '3.0.0', +4293 silly addNameRange '3.0.1', +4293 silly addNameRange '3.1.0', +4293 silly addNameRange '3.2.0', +4293 silly addNameRange '3.3.0', +4293 silly addNameRange '3.3.1', +4293 silly addNameRange '3.4.0', +4293 silly addNameRange '3.5.0', +4293 silly addNameRange '3.6.0', +4293 silly addNameRange '1.0.2', +4293 silly addNameRange '3.7.0', +4293 silly addNameRange '2.4.2', +4293 silly addNameRange '3.8.0', +4293 silly addNameRange '3.9.0', +4293 silly addNameRange '3.9.1', +4293 silly addNameRange '3.9.2', +4293 silly addNameRange '3.9.3', +4293 silly addNameRange '3.10.0', +4293 silly addNameRange '3.10.1', +4293 silly addNameRange '4.0.0', +4293 silly addNameRange '4.0.1', +4293 silly addNameRange '4.1.0', +4293 silly addNameRange '4.2.0', +4293 silly addNameRange '4.2.1', +4293 silly addNameRange '4.3.0', +4293 silly addNameRange '4.4.0', +4293 silly addNameRange '4.5.0', +4293 silly addNameRange '4.5.1', +4293 silly addNameRange '4.6.0', +4293 silly addNameRange '4.6.1', +4293 silly addNameRange '4.7.0', +4293 silly addNameRange '4.8.0', +4293 silly addNameRange '4.8.1', +4293 silly addNameRange '4.8.2', +4293 silly addNameRange '4.9.0', +4293 silly addNameRange '4.10.0', +4293 silly addNameRange '4.11.0', +4293 silly addNameRange '4.11.1', +4293 silly addNameRange '4.11.2', +4293 silly addNameRange '4.12.0', +4293 silly addNameRange '4.13.0', +4293 silly addNameRange '4.13.1', +4293 silly addNameRange '4.14.0', +4293 silly addNameRange '4.14.1', +4293 silly addNameRange '4.14.2', +4293 silly addNameRange '4.15.0', +4293 silly addNameRange '4.16.0', +4293 silly addNameRange '4.16.1', +4293 silly addNameRange '4.16.2', +4293 silly addNameRange '4.16.3', +4293 silly addNameRange '4.16.4', +4293 silly addNameRange '4.16.5', +4293 silly addNameRange '4.16.6', +4293 silly addNameRange '4.17.0', +4293 silly addNameRange '4.17.1', +4293 silly addNameRange '4.17.2', +4293 silly addNameRange '4.17.3', +4293 silly addNameRange '4.17.4' ] ] +4294 silly addNamed lodash@4.17.4 +4295 verbose addNamed "4.17.4" is a plain semver version for lodash +4296 silly cache afterAdd lodash@4.17.4 +4297 verbose afterAdd /home/wso2/.npm/lodash/4.17.4/package/package.json not in flight; writing +4298 verbose afterAdd /home/wso2/.npm/lodash/4.17.4/package/package.json written +4299 silly fetchNamedPackageData chalk +4300 silly mapToRegistry name chalk +4301 silly mapToRegistry using default registry +4302 silly mapToRegistry registry https://registry.npmjs.org/ +4303 silly mapToRegistry uri https://registry.npmjs.org/chalk +4304 silly fetchNamedPackageData esutils +4305 silly mapToRegistry name esutils +4306 silly mapToRegistry using default registry +4307 silly mapToRegistry registry https://registry.npmjs.org/ +4308 silly mapToRegistry uri https://registry.npmjs.org/esutils +4309 verbose request uri https://registry.npmjs.org/esutils +4310 verbose request no auth needed +4311 info attempt registry request try #1 at 3:03:52 PM +4312 verbose etag W/"59835262-5a75" +4313 verbose lastModified Thu, 03 Aug 2017 16:42:10 GMT +4314 http request GET https://registry.npmjs.org/esutils +4315 verbose request uri https://registry.npmjs.org/chalk +4316 verbose request no auth needed +4317 info attempt registry request try #1 at 3:03:52 PM +4318 verbose etag W/"59b1606b-b5ea" +4319 verbose lastModified Thu, 07 Sep 2017 15:06:19 GMT +4320 http request GET https://registry.npmjs.org/chalk +4321 http 200 https://registry.npmjs.org/chalk +4322 verbose headers { server: 'nginx/1.10.3', +4322 verbose headers 'content-type': 'application/json', +4322 verbose headers 'last-modified': 'Sun, 01 Oct 2017 20:45:12 GMT', +4322 verbose headers etag: 'W/"59d153d8-b735"', +4322 verbose headers 'content-encoding': 'gzip', +4322 verbose headers 'cache-control': 'max-age=300', +4322 verbose headers 'content-length': '12526', +4322 verbose headers 'accept-ranges': 'bytes', +4322 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4322 verbose headers via: '1.1 varnish', +4322 verbose headers age: '269', +4322 verbose headers connection: 'keep-alive', +4322 verbose headers 'x-served-by': 'cache-sin18031-SIN', +4322 verbose headers 'x-cache': 'HIT', +4322 verbose headers 'x-cache-hits': '12', +4322 verbose headers 'x-timer': 'S1506936833.549555,VS0,VE0', +4322 verbose headers vary: 'Accept-Encoding, Accept' } +4323 silly get cb [ 200, +4323 silly get { server: 'nginx/1.10.3', +4323 silly get 'content-type': 'application/json', +4323 silly get 'last-modified': 'Sun, 01 Oct 2017 20:45:12 GMT', +4323 silly get etag: 'W/"59d153d8-b735"', +4323 silly get 'content-encoding': 'gzip', +4323 silly get 'cache-control': 'max-age=300', +4323 silly get 'content-length': '12526', +4323 silly get 'accept-ranges': 'bytes', +4323 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4323 silly get via: '1.1 varnish', +4323 silly get age: '269', +4323 silly get connection: 'keep-alive', +4323 silly get 'x-served-by': 'cache-sin18031-SIN', +4323 silly get 'x-cache': 'HIT', +4323 silly get 'x-cache-hits': '12', +4323 silly get 'x-timer': 'S1506936833.549555,VS0,VE0', +4323 silly get vary: 'Accept-Encoding, Accept' } ] +4324 verbose get saving chalk to /home/wso2/.npm/registry.npmjs.org/chalk/.cache.json +4325 silly resolveWithNewModule chalk@1.1.3 checking installable status +4326 silly cache add args [ 'chalk@^1.1.3', null ] +4327 verbose cache add spec chalk@^1.1.3 +4328 silly cache add parsed spec Result { +4328 silly cache add raw: 'chalk@^1.1.3', +4328 silly cache add scope: null, +4328 silly cache add name: 'chalk', +4328 silly cache add rawSpec: '^1.1.3', +4328 silly cache add spec: '>=1.1.3 <2.0.0', +4328 silly cache add type: 'range' } +4329 silly addNamed chalk@>=1.1.3 <2.0.0 +4330 verbose addNamed ">=1.1.3 <2.0.0" is a valid semver range for chalk +4331 silly addNameRange { name: 'chalk', range: '>=1.1.3 <2.0.0', hasData: false } +4332 silly mapToRegistry name chalk +4333 silly mapToRegistry using default registry +4334 silly mapToRegistry registry https://registry.npmjs.org/ +4335 silly mapToRegistry uri https://registry.npmjs.org/chalk +4336 verbose addNameRange registry:https://registry.npmjs.org/chalk not in flight; fetching +4337 verbose get https://registry.npmjs.org/chalk not expired, no request +4338 silly addNameRange number 2 { name: 'chalk', range: '>=1.1.3 <2.0.0', hasData: true } +4339 silly addNameRange versions [ 'chalk', +4339 silly addNameRange [ '0.1.0', +4339 silly addNameRange '0.1.1', +4339 silly addNameRange '0.2.0', +4339 silly addNameRange '0.2.1', +4339 silly addNameRange '0.3.0', +4339 silly addNameRange '0.4.0', +4339 silly addNameRange '0.5.0', +4339 silly addNameRange '0.5.1', +4339 silly addNameRange '1.0.0', +4339 silly addNameRange '1.1.0', +4339 silly addNameRange '1.1.1', +4339 silly addNameRange '1.1.2', +4339 silly addNameRange '1.1.3', +4339 silly addNameRange '2.0.0', +4339 silly addNameRange '2.0.1', +4339 silly addNameRange '2.1.0' ] ] +4340 silly addNamed chalk@1.1.3 +4341 verbose addNamed "1.1.3" is a plain semver version for chalk +4342 silly cache afterAdd chalk@1.1.3 +4343 verbose afterAdd /home/wso2/.npm/chalk/1.1.3/package/package.json not in flight; writing +4344 verbose afterAdd /home/wso2/.npm/chalk/1.1.3/package/package.json written +4345 http 304 https://registry.npmjs.org/esutils +4346 verbose headers { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4346 verbose headers via: '1.1 varnish', +4346 verbose headers 'cache-control': 'max-age=300', +4346 verbose headers etag: 'W/"59835262-5a75"', +4346 verbose headers age: '158', +4346 verbose headers connection: 'keep-alive', +4346 verbose headers 'x-served-by': 'cache-sin18032-SIN', +4346 verbose headers 'x-cache': 'HIT', +4346 verbose headers 'x-cache-hits': '7', +4346 verbose headers 'x-timer': 'S1506936833.567273,VS0,VE0', +4346 verbose headers vary: 'Accept-Encoding, Accept' } +4347 silly get cb [ 304, +4347 silly get { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4347 silly get via: '1.1 varnish', +4347 silly get 'cache-control': 'max-age=300', +4347 silly get etag: 'W/"59835262-5a75"', +4347 silly get age: '158', +4347 silly get connection: 'keep-alive', +4347 silly get 'x-served-by': 'cache-sin18032-SIN', +4347 silly get 'x-cache': 'HIT', +4347 silly get 'x-cache-hits': '7', +4347 silly get 'x-timer': 'S1506936833.567273,VS0,VE0', +4347 silly get vary: 'Accept-Encoding, Accept' } ] +4348 verbose etag https://registry.npmjs.org/esutils from cache +4349 verbose get saving esutils to /home/wso2/.npm/registry.npmjs.org/esutils/.cache.json +4350 silly resolveWithNewModule esutils@2.0.2 checking installable status +4351 silly cache add args [ 'esutils@^2.0.2', null ] +4352 verbose cache add spec esutils@^2.0.2 +4353 silly cache add parsed spec Result { +4353 silly cache add raw: 'esutils@^2.0.2', +4353 silly cache add scope: null, +4353 silly cache add name: 'esutils', +4353 silly cache add rawSpec: '^2.0.2', +4353 silly cache add spec: '>=2.0.2 <3.0.0', +4353 silly cache add type: 'range' } +4354 silly addNamed esutils@>=2.0.2 <3.0.0 +4355 verbose addNamed ">=2.0.2 <3.0.0" is a valid semver range for esutils +4356 silly addNameRange { name: 'esutils', range: '>=2.0.2 <3.0.0', hasData: false } +4357 silly mapToRegistry name esutils +4358 silly mapToRegistry using default registry +4359 silly mapToRegistry registry https://registry.npmjs.org/ +4360 silly mapToRegistry uri https://registry.npmjs.org/esutils +4361 verbose addNameRange registry:https://registry.npmjs.org/esutils not in flight; fetching +4362 verbose get https://registry.npmjs.org/esutils not expired, no request +4363 silly addNameRange number 2 { name: 'esutils', range: '>=2.0.2 <3.0.0', hasData: true } +4364 silly addNameRange versions [ 'esutils', +4364 silly addNameRange [ '1.0.0', +4364 silly addNameRange '1.1.0', +4364 silly addNameRange '1.1.1', +4364 silly addNameRange '1.1.2', +4364 silly addNameRange '1.1.3', +4364 silly addNameRange '1.1.4', +4364 silly addNameRange '1.1.5-dev', +4364 silly addNameRange '1.1.5', +4364 silly addNameRange '1.1.6', +4364 silly addNameRange '2.0.0', +4364 silly addNameRange '2.0.1', +4364 silly addNameRange '2.0.2' ] ] +4365 silly addNamed esutils@2.0.2 +4366 verbose addNamed "2.0.2" is a plain semver version for esutils +4367 silly cache afterAdd esutils@2.0.2 +4368 verbose afterAdd /home/wso2/.npm/esutils/2.0.2/package/package.json not in flight; writing +4369 verbose afterAdd /home/wso2/.npm/esutils/2.0.2/package/package.json written +4370 silly fetchNamedPackageData ansi-styles +4371 silly mapToRegistry name ansi-styles +4372 silly mapToRegistry using default registry +4373 silly mapToRegistry registry https://registry.npmjs.org/ +4374 silly mapToRegistry uri https://registry.npmjs.org/ansi-styles +4375 silly fetchNamedPackageData escape-string-regexp +4376 silly mapToRegistry name escape-string-regexp +4377 silly mapToRegistry using default registry +4378 silly mapToRegistry registry https://registry.npmjs.org/ +4379 silly mapToRegistry uri https://registry.npmjs.org/escape-string-regexp +4380 silly fetchNamedPackageData has-ansi +4381 silly mapToRegistry name has-ansi +4382 silly mapToRegistry using default registry +4383 silly mapToRegistry registry https://registry.npmjs.org/ +4384 silly mapToRegistry uri https://registry.npmjs.org/has-ansi +4385 silly fetchNamedPackageData strip-ansi +4386 silly mapToRegistry name strip-ansi +4387 silly mapToRegistry using default registry +4388 silly mapToRegistry registry https://registry.npmjs.org/ +4389 silly mapToRegistry uri https://registry.npmjs.org/strip-ansi +4390 silly fetchNamedPackageData supports-color +4391 silly mapToRegistry name supports-color +4392 silly mapToRegistry using default registry +4393 silly mapToRegistry registry https://registry.npmjs.org/ +4394 silly mapToRegistry uri https://registry.npmjs.org/supports-color +4395 verbose request uri https://registry.npmjs.org/escape-string-regexp +4396 verbose request no auth needed +4397 info attempt registry request try #1 at 3:03:52 PM +4398 verbose etag W/"59b0d731-24e8" +4399 verbose lastModified Thu, 07 Sep 2017 05:20:49 GMT +4400 http request GET https://registry.npmjs.org/escape-string-regexp +4401 verbose request uri https://registry.npmjs.org/has-ansi +4402 verbose request no auth needed +4403 info attempt registry request try #1 at 3:03:52 PM +4404 verbose etag W/"594af6cc-2d2a" +4405 verbose lastModified Wed, 21 Jun 2017 22:44:28 GMT +4406 http request GET https://registry.npmjs.org/has-ansi +4407 verbose request uri https://registry.npmjs.org/strip-ansi +4408 verbose request no auth needed +4409 info attempt registry request try #1 at 3:03:52 PM +4410 verbose etag W/"5995d1db-447e" +4411 verbose lastModified Thu, 17 Aug 2017 17:26:51 GMT +4412 http request GET https://registry.npmjs.org/strip-ansi +4413 verbose request uri https://registry.npmjs.org/ansi-styles +4414 verbose request no auth needed +4415 info attempt registry request try #1 at 3:03:52 PM +4416 verbose etag W/"597487bc-54a5" +4417 verbose lastModified Sun, 23 Jul 2017 11:25:48 GMT +4418 http request GET https://registry.npmjs.org/ansi-styles +4419 verbose request uri https://registry.npmjs.org/supports-color +4420 verbose request no auth needed +4421 info attempt registry request try #1 at 3:03:52 PM +4422 verbose etag W/"59a7b2ad-8e90" +4423 verbose lastModified Thu, 31 Aug 2017 06:54:37 GMT +4424 http request GET https://registry.npmjs.org/supports-color +4425 http 200 https://registry.npmjs.org/strip-ansi +4426 verbose headers { server: 'nginx/1.10.3', +4426 verbose headers 'content-type': 'application/json', +4426 verbose headers 'last-modified': 'Fri, 15 Sep 2017 18:06:55 GMT', +4426 verbose headers etag: 'W/"59bc16bf-4491"', +4426 verbose headers 'content-encoding': 'gzip', +4426 verbose headers 'cache-control': 'max-age=300', +4426 verbose headers 'content-length': '2616', +4426 verbose headers 'accept-ranges': 'bytes', +4426 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4426 verbose headers via: '1.1 varnish', +4426 verbose headers age: '295', +4426 verbose headers connection: 'keep-alive', +4426 verbose headers 'x-served-by': 'cache-sin18031-SIN', +4426 verbose headers 'x-cache': 'HIT', +4426 verbose headers 'x-cache-hits': '22', +4426 verbose headers 'x-timer': 'S1506936833.772639,VS0,VE0', +4426 verbose headers vary: 'Accept-Encoding, Accept' } +4427 silly get cb [ 200, +4427 silly get { server: 'nginx/1.10.3', +4427 silly get 'content-type': 'application/json', +4427 silly get 'last-modified': 'Fri, 15 Sep 2017 18:06:55 GMT', +4427 silly get etag: 'W/"59bc16bf-4491"', +4427 silly get 'content-encoding': 'gzip', +4427 silly get 'cache-control': 'max-age=300', +4427 silly get 'content-length': '2616', +4427 silly get 'accept-ranges': 'bytes', +4427 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4427 silly get via: '1.1 varnish', +4427 silly get age: '295', +4427 silly get connection: 'keep-alive', +4427 silly get 'x-served-by': 'cache-sin18031-SIN', +4427 silly get 'x-cache': 'HIT', +4427 silly get 'x-cache-hits': '22', +4427 silly get 'x-timer': 'S1506936833.772639,VS0,VE0', +4427 silly get vary: 'Accept-Encoding, Accept' } ] +4428 verbose get saving strip-ansi to /home/wso2/.npm/registry.npmjs.org/strip-ansi/.cache.json +4429 http 200 https://registry.npmjs.org/ansi-styles +4430 verbose headers { server: 'nginx/1.10.3', +4430 verbose headers 'content-type': 'application/json', +4430 verbose headers 'last-modified': 'Fri, 15 Sep 2017 18:07:08 GMT', +4430 verbose headers etag: 'W/"59bc16cc-54b8"', +4430 verbose headers 'content-encoding': 'gzip', +4430 verbose headers 'cache-control': 'max-age=300', +4430 verbose headers 'content-length': '4041', +4430 verbose headers 'accept-ranges': 'bytes', +4430 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4430 verbose headers via: '1.1 varnish', +4430 verbose headers age: '197', +4430 verbose headers connection: 'keep-alive', +4430 verbose headers 'x-served-by': 'cache-sin18022-SIN', +4430 verbose headers 'x-cache': 'HIT', +4430 verbose headers 'x-cache-hits': '14', +4430 verbose headers 'x-timer': 'S1506936833.771342,VS0,VE0', +4430 verbose headers vary: 'Accept-Encoding, Accept' } +4431 silly get cb [ 200, +4431 silly get { server: 'nginx/1.10.3', +4431 silly get 'content-type': 'application/json', +4431 silly get 'last-modified': 'Fri, 15 Sep 2017 18:07:08 GMT', +4431 silly get etag: 'W/"59bc16cc-54b8"', +4431 silly get 'content-encoding': 'gzip', +4431 silly get 'cache-control': 'max-age=300', +4431 silly get 'content-length': '4041', +4431 silly get 'accept-ranges': 'bytes', +4431 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4431 silly get via: '1.1 varnish', +4431 silly get age: '197', +4431 silly get connection: 'keep-alive', +4431 silly get 'x-served-by': 'cache-sin18022-SIN', +4431 silly get 'x-cache': 'HIT', +4431 silly get 'x-cache-hits': '14', +4431 silly get 'x-timer': 'S1506936833.771342,VS0,VE0', +4431 silly get vary: 'Accept-Encoding, Accept' } ] +4432 verbose get saving ansi-styles to /home/wso2/.npm/registry.npmjs.org/ansi-styles/.cache.json +4433 silly resolveWithNewModule strip-ansi@3.0.1 checking installable status +4434 silly cache add args [ 'strip-ansi@^3.0.0', null ] +4435 verbose cache add spec strip-ansi@^3.0.0 +4436 silly cache add parsed spec Result { +4436 silly cache add raw: 'strip-ansi@^3.0.0', +4436 silly cache add scope: null, +4436 silly cache add name: 'strip-ansi', +4436 silly cache add rawSpec: '^3.0.0', +4436 silly cache add spec: '>=3.0.0 <4.0.0', +4436 silly cache add type: 'range' } +4437 silly addNamed strip-ansi@>=3.0.0 <4.0.0 +4438 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for strip-ansi +4439 silly addNameRange { name: 'strip-ansi', range: '>=3.0.0 <4.0.0', hasData: false } +4440 silly mapToRegistry name strip-ansi +4441 silly mapToRegistry using default registry +4442 silly mapToRegistry registry https://registry.npmjs.org/ +4443 silly mapToRegistry uri https://registry.npmjs.org/strip-ansi +4444 verbose addNameRange registry:https://registry.npmjs.org/strip-ansi not in flight; fetching +4445 http 304 https://registry.npmjs.org/has-ansi +4446 verbose headers { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4446 verbose headers via: '1.1 varnish', +4446 verbose headers 'cache-control': 'max-age=300', +4446 verbose headers etag: 'W/"594af6cc-2d2a"', +4446 verbose headers age: '111', +4446 verbose headers connection: 'keep-alive', +4446 verbose headers 'x-served-by': 'cache-sin18020-SIN', +4446 verbose headers 'x-cache': 'HIT', +4446 verbose headers 'x-cache-hits': '3', +4446 verbose headers 'x-timer': 'S1506936833.787823,VS0,VE0', +4446 verbose headers vary: 'Accept-Encoding, Accept' } +4447 silly get cb [ 304, +4447 silly get { date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4447 silly get via: '1.1 varnish', +4447 silly get 'cache-control': 'max-age=300', +4447 silly get etag: 'W/"594af6cc-2d2a"', +4447 silly get age: '111', +4447 silly get connection: 'keep-alive', +4447 silly get 'x-served-by': 'cache-sin18020-SIN', +4447 silly get 'x-cache': 'HIT', +4447 silly get 'x-cache-hits': '3', +4447 silly get 'x-timer': 'S1506936833.787823,VS0,VE0', +4447 silly get vary: 'Accept-Encoding, Accept' } ] +4448 verbose etag https://registry.npmjs.org/has-ansi from cache +4449 verbose get saving has-ansi to /home/wso2/.npm/registry.npmjs.org/has-ansi/.cache.json +4450 silly resolveWithNewModule ansi-styles@2.2.1 checking installable status +4451 silly cache add args [ 'ansi-styles@^2.2.1', null ] +4452 verbose cache add spec ansi-styles@^2.2.1 +4453 silly cache add parsed spec Result { +4453 silly cache add raw: 'ansi-styles@^2.2.1', +4453 silly cache add scope: null, +4453 silly cache add name: 'ansi-styles', +4453 silly cache add rawSpec: '^2.2.1', +4453 silly cache add spec: '>=2.2.1 <3.0.0', +4453 silly cache add type: 'range' } +4454 silly addNamed ansi-styles@>=2.2.1 <3.0.0 +4455 verbose addNamed ">=2.2.1 <3.0.0" is a valid semver range for ansi-styles +4456 silly addNameRange { name: 'ansi-styles', range: '>=2.2.1 <3.0.0', hasData: false } +4457 silly mapToRegistry name ansi-styles +4458 silly mapToRegistry using default registry +4459 silly mapToRegistry registry https://registry.npmjs.org/ +4460 silly mapToRegistry uri https://registry.npmjs.org/ansi-styles +4461 verbose addNameRange registry:https://registry.npmjs.org/ansi-styles not in flight; fetching +4462 verbose get https://registry.npmjs.org/strip-ansi not expired, no request +4463 silly addNameRange number 2 { name: 'strip-ansi', range: '>=3.0.0 <4.0.0', hasData: true } +4464 silly addNameRange versions [ 'strip-ansi', +4464 silly addNameRange [ '0.1.0', +4464 silly addNameRange '0.1.1', +4464 silly addNameRange '0.2.0', +4464 silly addNameRange '0.2.1', +4464 silly addNameRange '0.2.2', +4464 silly addNameRange '0.3.0', +4464 silly addNameRange '1.0.0', +4464 silly addNameRange '2.0.0', +4464 silly addNameRange '2.0.1', +4464 silly addNameRange '3.0.0', +4464 silly addNameRange '3.0.1', +4464 silly addNameRange '4.0.0' ] ] +4465 silly addNamed strip-ansi@3.0.1 +4466 verbose addNamed "3.0.1" is a plain semver version for strip-ansi +4467 verbose get https://registry.npmjs.org/ansi-styles not expired, no request +4468 silly addNameRange number 2 { name: 'ansi-styles', range: '>=2.2.1 <3.0.0', hasData: true } +4469 silly addNameRange versions [ 'ansi-styles', +4469 silly addNameRange [ '0.1.0', +4469 silly addNameRange '0.1.1', +4469 silly addNameRange '0.1.2', +4469 silly addNameRange '0.2.0', +4469 silly addNameRange '1.0.0', +4469 silly addNameRange '1.1.0', +4469 silly addNameRange '2.0.0', +4469 silly addNameRange '2.0.1', +4469 silly addNameRange '2.1.0', +4469 silly addNameRange '2.2.1', +4469 silly addNameRange '3.0.0', +4469 silly addNameRange '3.1.0', +4469 silly addNameRange '3.2.0' ] ] +4470 silly addNamed ansi-styles@2.2.1 +4471 verbose addNamed "2.2.1" is a plain semver version for ansi-styles +4472 silly resolveWithNewModule has-ansi@2.0.0 checking installable status +4473 silly cache add args [ 'has-ansi@^2.0.0', null ] +4474 verbose cache add spec has-ansi@^2.0.0 +4475 silly cache add parsed spec Result { +4475 silly cache add raw: 'has-ansi@^2.0.0', +4475 silly cache add scope: null, +4475 silly cache add name: 'has-ansi', +4475 silly cache add rawSpec: '^2.0.0', +4475 silly cache add spec: '>=2.0.0 <3.0.0', +4475 silly cache add type: 'range' } +4476 silly addNamed has-ansi@>=2.0.0 <3.0.0 +4477 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for has-ansi +4478 silly addNameRange { name: 'has-ansi', range: '>=2.0.0 <3.0.0', hasData: false } +4479 silly mapToRegistry name has-ansi +4480 silly mapToRegistry using default registry +4481 silly mapToRegistry registry https://registry.npmjs.org/ +4482 silly mapToRegistry uri https://registry.npmjs.org/has-ansi +4483 verbose addNameRange registry:https://registry.npmjs.org/has-ansi not in flight; fetching +4484 verbose get https://registry.npmjs.org/has-ansi not expired, no request +4485 silly addNameRange number 2 { name: 'has-ansi', range: '>=2.0.0 <3.0.0', hasData: true } +4486 silly addNameRange versions [ 'has-ansi', +4486 silly addNameRange [ '0.1.0', '1.0.0', '1.0.1', '1.0.2', '1.0.3', '2.0.0', '3.0.0' ] ] +4487 silly addNamed has-ansi@2.0.0 +4488 verbose addNamed "2.0.0" is a plain semver version for has-ansi +4489 silly cache afterAdd strip-ansi@3.0.1 +4490 verbose afterAdd /home/wso2/.npm/strip-ansi/3.0.1/package/package.json not in flight; writing +4491 silly cache afterAdd ansi-styles@2.2.1 +4492 verbose afterAdd /home/wso2/.npm/ansi-styles/2.2.1/package/package.json not in flight; writing +4493 verbose afterAdd /home/wso2/.npm/strip-ansi/3.0.1/package/package.json written +4494 silly cache afterAdd has-ansi@2.0.0 +4495 verbose afterAdd /home/wso2/.npm/has-ansi/2.0.0/package/package.json not in flight; writing +4496 verbose afterAdd /home/wso2/.npm/ansi-styles/2.2.1/package/package.json written +4497 verbose afterAdd /home/wso2/.npm/has-ansi/2.0.0/package/package.json written +4498 http 200 https://registry.npmjs.org/escape-string-regexp +4499 verbose headers { server: 'nginx/1.10.3', +4499 verbose headers 'content-type': 'application/json', +4499 verbose headers 'last-modified': 'Thu, 21 Sep 2017 06:19:34 GMT', +4499 verbose headers etag: 'W/"59c359f6-252c"', +4499 verbose headers 'content-encoding': 'gzip', +4499 verbose headers 'cache-control': 'max-age=300', +4499 verbose headers 'content-length': '1842', +4499 verbose headers 'accept-ranges': 'bytes', +4499 verbose headers date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4499 verbose headers via: '1.1 varnish', +4499 verbose headers age: '64', +4499 verbose headers connection: 'keep-alive', +4499 verbose headers 'x-served-by': 'cache-sin18024-SIN', +4499 verbose headers 'x-cache': 'HIT', +4499 verbose headers 'x-cache-hits': '4', +4499 verbose headers 'x-timer': 'S1506936833.802555,VS0,VE0', +4499 verbose headers vary: 'Accept-Encoding, Accept' } +4500 silly get cb [ 200, +4500 silly get { server: 'nginx/1.10.3', +4500 silly get 'content-type': 'application/json', +4500 silly get 'last-modified': 'Thu, 21 Sep 2017 06:19:34 GMT', +4500 silly get etag: 'W/"59c359f6-252c"', +4500 silly get 'content-encoding': 'gzip', +4500 silly get 'cache-control': 'max-age=300', +4500 silly get 'content-length': '1842', +4500 silly get 'accept-ranges': 'bytes', +4500 silly get date: 'Mon, 02 Oct 2017 09:33:52 GMT', +4500 silly get via: '1.1 varnish', +4500 silly get age: '64', +4500 silly get connection: 'keep-alive', +4500 silly get 'x-served-by': 'cache-sin18024-SIN', +4500 silly get 'x-cache': 'HIT', +4500 silly get 'x-cache-hits': '4', +4500 silly get 'x-timer': 'S1506936833.802555,VS0,VE0', +4500 silly get vary: 'Accept-Encoding, Accept' } ] +4501 verbose get saving escape-string-regexp to /home/wso2/.npm/registry.npmjs.org/escape-string-regexp/.cache.json +4502 silly resolveWithNewModule escape-string-regexp@1.0.5 checking installable status +4503 silly cache add args [ 'escape-string-regexp@^1.0.2', null ] +4504 verbose cache add spec escape-string-regexp@^1.0.2 +4505 silly cache add parsed spec Result { +4505 silly cache add raw: 'escape-string-regexp@^1.0.2', +4505 silly cache add scope: null, +4505 silly cache add name: 'escape-string-regexp', +4505 silly cache add rawSpec: '^1.0.2', +4505 silly cache add spec: '>=1.0.2 <2.0.0', +4505 silly cache add type: 'range' } +4506 silly addNamed escape-string-regexp@>=1.0.2 <2.0.0 +4507 verbose addNamed ">=1.0.2 <2.0.0" is a valid semver range for escape-string-regexp +4508 silly addNameRange { name: 'escape-string-regexp', +4508 silly addNameRange range: '>=1.0.2 <2.0.0', +4508 silly addNameRange hasData: false } +4509 silly mapToRegistry name escape-string-regexp +4510 silly mapToRegistry using default registry +4511 silly mapToRegistry registry https://registry.npmjs.org/ +4512 silly mapToRegistry uri https://registry.npmjs.org/escape-string-regexp +4513 verbose addNameRange registry:https://registry.npmjs.org/escape-string-regexp not in flight; fetching +4514 verbose get https://registry.npmjs.org/escape-string-regexp not expired, no request +4515 silly addNameRange number 2 { name: 'escape-string-regexp', +4515 silly addNameRange range: '>=1.0.2 <2.0.0', +4515 silly addNameRange hasData: true } +4516 silly addNameRange versions [ 'escape-string-regexp', +4516 silly addNameRange [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4', '1.0.5' ] ] +4517 silly addNamed escape-string-regexp@1.0.5 +4518 verbose addNamed "1.0.5" is a plain semver version for escape-string-regexp +4519 silly cache afterAdd escape-string-regexp@1.0.5 +4520 verbose afterAdd /home/wso2/.npm/escape-string-regexp/1.0.5/package/package.json not in flight; writing +4521 verbose afterAdd /home/wso2/.npm/escape-string-regexp/1.0.5/package/package.json written +4522 http 200 https://registry.npmjs.org/supports-color +4523 verbose headers { server: 'nginx/1.10.3', +4523 verbose headers 'content-type': 'application/json', +4523 verbose headers 'last-modified': 'Sun, 01 Oct 2017 17:43:20 GMT', +4523 verbose headers etag: 'W/"59d12938-8ec4"', +4523 verbose headers 'content-encoding': 'gzip', +4523 verbose headers 'cache-control': 'max-age=300', +4523 verbose headers 'content-length': '4838', +4523 verbose headers 'accept-ranges': 'bytes', +4523 verbose headers date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4523 verbose headers via: '1.1 varnish', +4523 verbose headers age: '277', +4523 verbose headers connection: 'keep-alive', +4523 verbose headers 'x-served-by': 'cache-sin18022-SIN', +4523 verbose headers 'x-cache': 'HIT', +4523 verbose headers 'x-cache-hits': '20', +4523 verbose headers 'x-timer': 'S1506936833.019933,VS0,VE0', +4523 verbose headers vary: 'Accept-Encoding, Accept' } +4524 silly get cb [ 200, +4524 silly get { server: 'nginx/1.10.3', +4524 silly get 'content-type': 'application/json', +4524 silly get 'last-modified': 'Sun, 01 Oct 2017 17:43:20 GMT', +4524 silly get etag: 'W/"59d12938-8ec4"', +4524 silly get 'content-encoding': 'gzip', +4524 silly get 'cache-control': 'max-age=300', +4524 silly get 'content-length': '4838', +4524 silly get 'accept-ranges': 'bytes', +4524 silly get date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4524 silly get via: '1.1 varnish', +4524 silly get age: '277', +4524 silly get connection: 'keep-alive', +4524 silly get 'x-served-by': 'cache-sin18022-SIN', +4524 silly get 'x-cache': 'HIT', +4524 silly get 'x-cache-hits': '20', +4524 silly get 'x-timer': 'S1506936833.019933,VS0,VE0', +4524 silly get vary: 'Accept-Encoding, Accept' } ] +4525 verbose get saving supports-color to /home/wso2/.npm/registry.npmjs.org/supports-color/.cache.json +4526 silly resolveWithNewModule supports-color@2.0.0 checking installable status +4527 silly cache add args [ 'supports-color@^2.0.0', null ] +4528 verbose cache add spec supports-color@^2.0.0 +4529 silly cache add parsed spec Result { +4529 silly cache add raw: 'supports-color@^2.0.0', +4529 silly cache add scope: null, +4529 silly cache add name: 'supports-color', +4529 silly cache add rawSpec: '^2.0.0', +4529 silly cache add spec: '>=2.0.0 <3.0.0', +4529 silly cache add type: 'range' } +4530 silly addNamed supports-color@>=2.0.0 <3.0.0 +4531 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for supports-color +4532 silly addNameRange { name: 'supports-color', +4532 silly addNameRange range: '>=2.0.0 <3.0.0', +4532 silly addNameRange hasData: false } +4533 silly mapToRegistry name supports-color +4534 silly mapToRegistry using default registry +4535 silly mapToRegistry registry https://registry.npmjs.org/ +4536 silly mapToRegistry uri https://registry.npmjs.org/supports-color +4537 verbose addNameRange registry:https://registry.npmjs.org/supports-color not in flight; fetching +4538 verbose get https://registry.npmjs.org/supports-color not expired, no request +4539 silly addNameRange number 2 { name: 'supports-color', +4539 silly addNameRange range: '>=2.0.0 <3.0.0', +4539 silly addNameRange hasData: true } +4540 silly addNameRange versions [ 'supports-color', +4540 silly addNameRange [ '0.2.0', +4540 silly addNameRange '1.0.0', +4540 silly addNameRange '1.1.0', +4540 silly addNameRange '1.2.0', +4540 silly addNameRange '1.2.1', +4540 silly addNameRange '1.3.0', +4540 silly addNameRange '1.3.1', +4540 silly addNameRange '2.0.0', +4540 silly addNameRange '3.0.0', +4540 silly addNameRange '3.0.1', +4540 silly addNameRange '3.1.0', +4540 silly addNameRange '3.1.1', +4540 silly addNameRange '3.1.2', +4540 silly addNameRange '3.2.0', +4540 silly addNameRange '3.2.1', +4540 silly addNameRange '3.2.2', +4540 silly addNameRange '3.2.3', +4540 silly addNameRange '4.0.0', +4540 silly addNameRange '4.1.0', +4540 silly addNameRange '4.2.0', +4540 silly addNameRange '4.2.1', +4540 silly addNameRange '4.3.0', +4540 silly addNameRange '4.4.0' ] ] +4541 silly addNamed supports-color@2.0.0 +4542 verbose addNamed "2.0.0" is a plain semver version for supports-color +4543 silly cache afterAdd supports-color@2.0.0 +4544 verbose afterAdd /home/wso2/.npm/supports-color/2.0.0/package/package.json not in flight; writing +4545 verbose afterAdd /home/wso2/.npm/supports-color/2.0.0/package/package.json written +4546 silly fetchNamedPackageData ansi-regex +4547 silly mapToRegistry name ansi-regex +4548 silly mapToRegistry using default registry +4549 silly mapToRegistry registry https://registry.npmjs.org/ +4550 silly mapToRegistry uri https://registry.npmjs.org/ansi-regex +4551 verbose request uri https://registry.npmjs.org/ansi-regex +4552 verbose request no auth needed +4553 info attempt registry request try #1 at 3:03:53 PM +4554 verbose etag W/"59647ece-3a70" +4555 verbose lastModified Tue, 11 Jul 2017 07:31:26 GMT +4556 http request GET https://registry.npmjs.org/ansi-regex +4557 http 304 https://registry.npmjs.org/ansi-regex +4558 verbose headers { date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4558 verbose headers via: '1.1 varnish', +4558 verbose headers 'cache-control': 'max-age=300', +4558 verbose headers etag: 'W/"59647ece-3a70"', +4558 verbose headers age: '147', +4558 verbose headers connection: 'keep-alive', +4558 verbose headers 'x-served-by': 'cache-sin18024-SIN', +4558 verbose headers 'x-cache': 'HIT', +4558 verbose headers 'x-cache-hits': '13', +4558 verbose headers 'x-timer': 'S1506936833.226204,VS0,VE0', +4558 verbose headers vary: 'Accept-Encoding, Accept' } +4559 silly get cb [ 304, +4559 silly get { date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4559 silly get via: '1.1 varnish', +4559 silly get 'cache-control': 'max-age=300', +4559 silly get etag: 'W/"59647ece-3a70"', +4559 silly get age: '147', +4559 silly get connection: 'keep-alive', +4559 silly get 'x-served-by': 'cache-sin18024-SIN', +4559 silly get 'x-cache': 'HIT', +4559 silly get 'x-cache-hits': '13', +4559 silly get 'x-timer': 'S1506936833.226204,VS0,VE0', +4559 silly get vary: 'Accept-Encoding, Accept' } ] +4560 verbose etag https://registry.npmjs.org/ansi-regex from cache +4561 verbose get saving ansi-regex to /home/wso2/.npm/registry.npmjs.org/ansi-regex/.cache.json +4562 silly resolveWithNewModule ansi-regex@2.1.1 checking installable status +4563 silly cache add args [ 'ansi-regex@^2.0.0', null ] +4564 verbose cache add spec ansi-regex@^2.0.0 +4565 silly cache add parsed spec Result { +4565 silly cache add raw: 'ansi-regex@^2.0.0', +4565 silly cache add scope: null, +4565 silly cache add name: 'ansi-regex', +4565 silly cache add rawSpec: '^2.0.0', +4565 silly cache add spec: '>=2.0.0 <3.0.0', +4565 silly cache add type: 'range' } +4566 silly addNamed ansi-regex@>=2.0.0 <3.0.0 +4567 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for ansi-regex +4568 silly addNameRange { name: 'ansi-regex', range: '>=2.0.0 <3.0.0', hasData: false } +4569 silly mapToRegistry name ansi-regex +4570 silly mapToRegistry using default registry +4571 silly mapToRegistry registry https://registry.npmjs.org/ +4572 silly mapToRegistry uri https://registry.npmjs.org/ansi-regex +4573 verbose addNameRange registry:https://registry.npmjs.org/ansi-regex not in flight; fetching +4574 verbose get https://registry.npmjs.org/ansi-regex not expired, no request +4575 silly addNameRange number 2 { name: 'ansi-regex', range: '>=2.0.0 <3.0.0', hasData: true } +4576 silly addNameRange versions [ 'ansi-regex', +4576 silly addNameRange [ '0.1.0', +4576 silly addNameRange '0.2.0', +4576 silly addNameRange '0.2.1', +4576 silly addNameRange '1.0.0', +4576 silly addNameRange '1.1.0', +4576 silly addNameRange '1.1.1', +4576 silly addNameRange '2.0.0', +4576 silly addNameRange '2.1.1', +4576 silly addNameRange '3.0.0' ] ] +4577 silly addNamed ansi-regex@2.1.1 +4578 verbose addNamed "2.1.1" is a plain semver version for ansi-regex +4579 silly cache afterAdd ansi-regex@2.1.1 +4580 verbose afterAdd /home/wso2/.npm/ansi-regex/2.1.1/package/package.json not in flight; writing +4581 verbose afterAdd /home/wso2/.npm/ansi-regex/2.1.1/package/package.json written +4582 silly fetchNamedPackageData detect-indent +4583 silly mapToRegistry name detect-indent +4584 silly mapToRegistry using default registry +4585 silly mapToRegistry registry https://registry.npmjs.org/ +4586 silly mapToRegistry uri https://registry.npmjs.org/detect-indent +4587 silly fetchNamedPackageData jsesc +4588 silly mapToRegistry name jsesc +4589 silly mapToRegistry using default registry +4590 silly mapToRegistry registry https://registry.npmjs.org/ +4591 silly mapToRegistry uri https://registry.npmjs.org/jsesc +4592 silly fetchNamedPackageData trim-right +4593 silly mapToRegistry name trim-right +4594 silly mapToRegistry using default registry +4595 silly mapToRegistry registry https://registry.npmjs.org/ +4596 silly mapToRegistry uri https://registry.npmjs.org/trim-right +4597 verbose request uri https://registry.npmjs.org/detect-indent +4598 verbose request no auth needed +4599 info attempt registry request try #1 at 3:03:53 PM +4600 verbose etag W/"58d85e57-4dee" +4601 verbose lastModified Mon, 27 Mar 2017 00:35:35 GMT +4602 http request GET https://registry.npmjs.org/detect-indent +4603 verbose request uri https://registry.npmjs.org/jsesc +4604 verbose request no auth needed +4605 info attempt registry request try #1 at 3:03:53 PM +4606 verbose etag W/"592afb95-a825" +4607 verbose lastModified Sun, 28 May 2017 16:32:21 GMT +4608 http request GET https://registry.npmjs.org/jsesc +4609 verbose request uri https://registry.npmjs.org/trim-right +4610 verbose request no auth needed +4611 info attempt registry request try #1 at 3:03:53 PM +4612 verbose etag W/"55a6c06b-f47" +4613 verbose lastModified Wed, 15 Jul 2015 20:19:55 GMT +4614 http request GET https://registry.npmjs.org/trim-right +4615 http 304 https://registry.npmjs.org/jsesc +4616 verbose headers { date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4616 verbose headers via: '1.1 varnish', +4616 verbose headers 'cache-control': 'max-age=300', +4616 verbose headers etag: 'W/"592afb95-a825"', +4616 verbose headers age: '260', +4616 verbose headers connection: 'keep-alive', +4616 verbose headers 'x-served-by': 'cache-sin18035-SIN', +4616 verbose headers 'x-cache': 'HIT', +4616 verbose headers 'x-cache-hits': '9', +4616 verbose headers 'x-timer': 'S1506936834.613199,VS0,VE0', +4616 verbose headers vary: 'Accept-Encoding, Accept' } +4617 silly get cb [ 304, +4617 silly get { date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4617 silly get via: '1.1 varnish', +4617 silly get 'cache-control': 'max-age=300', +4617 silly get etag: 'W/"592afb95-a825"', +4617 silly get age: '260', +4617 silly get connection: 'keep-alive', +4617 silly get 'x-served-by': 'cache-sin18035-SIN', +4617 silly get 'x-cache': 'HIT', +4617 silly get 'x-cache-hits': '9', +4617 silly get 'x-timer': 'S1506936834.613199,VS0,VE0', +4617 silly get vary: 'Accept-Encoding, Accept' } ] +4618 verbose etag https://registry.npmjs.org/jsesc from cache +4619 verbose get saving jsesc to /home/wso2/.npm/registry.npmjs.org/jsesc/.cache.json +4620 http 304 https://registry.npmjs.org/trim-right +4621 verbose headers { date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4621 verbose headers via: '1.1 varnish', +4621 verbose headers 'cache-control': 'max-age=300', +4621 verbose headers etag: 'W/"55a6c06b-f47"', +4621 verbose headers age: '106', +4621 verbose headers connection: 'keep-alive', +4621 verbose headers 'x-served-by': 'cache-sin18024-SIN', +4621 verbose headers 'x-cache': 'HIT', +4621 verbose headers 'x-cache-hits': '3', +4621 verbose headers 'x-timer': 'S1506936834.613471,VS0,VE0', +4621 verbose headers vary: 'Accept-Encoding, Accept' } +4622 silly get cb [ 304, +4622 silly get { date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4622 silly get via: '1.1 varnish', +4622 silly get 'cache-control': 'max-age=300', +4622 silly get etag: 'W/"55a6c06b-f47"', +4622 silly get age: '106', +4622 silly get connection: 'keep-alive', +4622 silly get 'x-served-by': 'cache-sin18024-SIN', +4622 silly get 'x-cache': 'HIT', +4622 silly get 'x-cache-hits': '3', +4622 silly get 'x-timer': 'S1506936834.613471,VS0,VE0', +4622 silly get vary: 'Accept-Encoding, Accept' } ] +4623 verbose etag https://registry.npmjs.org/trim-right from cache +4624 verbose get saving trim-right to /home/wso2/.npm/registry.npmjs.org/trim-right/.cache.json +4625 silly resolveWithNewModule jsesc@1.3.0 checking installable status +4626 silly cache add args [ 'jsesc@^1.3.0', null ] +4627 verbose cache add spec jsesc@^1.3.0 +4628 silly cache add parsed spec Result { +4628 silly cache add raw: 'jsesc@^1.3.0', +4628 silly cache add scope: null, +4628 silly cache add name: 'jsesc', +4628 silly cache add rawSpec: '^1.3.0', +4628 silly cache add spec: '>=1.3.0 <2.0.0', +4628 silly cache add type: 'range' } +4629 silly addNamed jsesc@>=1.3.0 <2.0.0 +4630 verbose addNamed ">=1.3.0 <2.0.0" is a valid semver range for jsesc +4631 silly addNameRange { name: 'jsesc', range: '>=1.3.0 <2.0.0', hasData: false } +4632 silly mapToRegistry name jsesc +4633 silly mapToRegistry using default registry +4634 silly mapToRegistry registry https://registry.npmjs.org/ +4635 silly mapToRegistry uri https://registry.npmjs.org/jsesc +4636 verbose addNameRange registry:https://registry.npmjs.org/jsesc not in flight; fetching +4637 silly resolveWithNewModule trim-right@1.0.1 checking installable status +4638 silly cache add args [ 'trim-right@^1.0.1', null ] +4639 verbose cache add spec trim-right@^1.0.1 +4640 silly cache add parsed spec Result { +4640 silly cache add raw: 'trim-right@^1.0.1', +4640 silly cache add scope: null, +4640 silly cache add name: 'trim-right', +4640 silly cache add rawSpec: '^1.0.1', +4640 silly cache add spec: '>=1.0.1 <2.0.0', +4640 silly cache add type: 'range' } +4641 silly addNamed trim-right@>=1.0.1 <2.0.0 +4642 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for trim-right +4643 silly addNameRange { name: 'trim-right', range: '>=1.0.1 <2.0.0', hasData: false } +4644 silly mapToRegistry name trim-right +4645 silly mapToRegistry using default registry +4646 silly mapToRegistry registry https://registry.npmjs.org/ +4647 silly mapToRegistry uri https://registry.npmjs.org/trim-right +4648 verbose addNameRange registry:https://registry.npmjs.org/trim-right not in flight; fetching +4649 verbose get https://registry.npmjs.org/jsesc not expired, no request +4650 silly addNameRange number 2 { name: 'jsesc', range: '>=1.3.0 <2.0.0', hasData: true } +4651 silly addNameRange versions [ 'jsesc', +4651 silly addNameRange [ '0.3.0', +4651 silly addNameRange '0.4.0', +4651 silly addNameRange '0.4.1', +4651 silly addNameRange '0.4.2', +4651 silly addNameRange '0.4.3', +4651 silly addNameRange '0.5.0', +4651 silly addNameRange '1.0.0', +4651 silly addNameRange '1.1.0', +4651 silly addNameRange '1.2.0', +4651 silly addNameRange '1.2.1', +4651 silly addNameRange '1.3.0', +4651 silly addNameRange '2.0.0', +4651 silly addNameRange '2.1.0', +4651 silly addNameRange '2.2.0', +4651 silly addNameRange '2.3.0', +4651 silly addNameRange '2.4.0', +4651 silly addNameRange '2.5.0', +4651 silly addNameRange '2.5.1' ] ] +4652 silly addNamed jsesc@1.3.0 +4653 verbose addNamed "1.3.0" is a plain semver version for jsesc +4654 verbose get https://registry.npmjs.org/trim-right not expired, no request +4655 silly addNameRange number 2 { name: 'trim-right', range: '>=1.0.1 <2.0.0', hasData: true } +4656 silly addNameRange versions [ 'trim-right', [ '1.0.0', '1.0.1' ] ] +4657 silly addNamed trim-right@1.0.1 +4658 verbose addNamed "1.0.1" is a plain semver version for trim-right +4659 silly cache afterAdd jsesc@1.3.0 +4660 verbose afterAdd /home/wso2/.npm/jsesc/1.3.0/package/package.json not in flight; writing +4661 silly cache afterAdd trim-right@1.0.1 +4662 verbose afterAdd /home/wso2/.npm/trim-right/1.0.1/package/package.json not in flight; writing +4663 verbose afterAdd /home/wso2/.npm/jsesc/1.3.0/package/package.json written +4664 verbose afterAdd /home/wso2/.npm/trim-right/1.0.1/package/package.json written +4665 http 304 https://registry.npmjs.org/detect-indent +4666 verbose headers { date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4666 verbose headers via: '1.1 varnish', +4666 verbose headers 'cache-control': 'max-age=300', +4666 verbose headers etag: 'W/"58d85e57-4dee"', +4666 verbose headers age: '107', +4666 verbose headers connection: 'keep-alive', +4666 verbose headers 'x-served-by': 'cache-sin18020-SIN', +4666 verbose headers 'x-cache': 'HIT', +4666 verbose headers 'x-cache-hits': '1', +4666 verbose headers 'x-timer': 'S1506936834.628812,VS0,VE0', +4666 verbose headers vary: 'Accept-Encoding, Accept' } +4667 silly get cb [ 304, +4667 silly get { date: 'Mon, 02 Oct 2017 09:33:53 GMT', +4667 silly get via: '1.1 varnish', +4667 silly get 'cache-control': 'max-age=300', +4667 silly get etag: 'W/"58d85e57-4dee"', +4667 silly get age: '107', +4667 silly get connection: 'keep-alive', +4667 silly get 'x-served-by': 'cache-sin18020-SIN', +4667 silly get 'x-cache': 'HIT', +4667 silly get 'x-cache-hits': '1', +4667 silly get 'x-timer': 'S1506936834.628812,VS0,VE0', +4667 silly get vary: 'Accept-Encoding, Accept' } ] +4668 verbose etag https://registry.npmjs.org/detect-indent from cache +4669 verbose get saving detect-indent to /home/wso2/.npm/registry.npmjs.org/detect-indent/.cache.json +4670 silly resolveWithNewModule detect-indent@4.0.0 checking installable status +4671 silly cache add args [ 'detect-indent@^4.0.0', null ] +4672 verbose cache add spec detect-indent@^4.0.0 +4673 silly cache add parsed spec Result { +4673 silly cache add raw: 'detect-indent@^4.0.0', +4673 silly cache add scope: null, +4673 silly cache add name: 'detect-indent', +4673 silly cache add rawSpec: '^4.0.0', +4673 silly cache add spec: '>=4.0.0 <5.0.0', +4673 silly cache add type: 'range' } +4674 silly addNamed detect-indent@>=4.0.0 <5.0.0 +4675 verbose addNamed ">=4.0.0 <5.0.0" is a valid semver range for detect-indent +4676 silly addNameRange { name: 'detect-indent', +4676 silly addNameRange range: '>=4.0.0 <5.0.0', +4676 silly addNameRange hasData: false } +4677 silly mapToRegistry name detect-indent +4678 silly mapToRegistry using default registry +4679 silly mapToRegistry registry https://registry.npmjs.org/ +4680 silly mapToRegistry uri https://registry.npmjs.org/detect-indent +4681 verbose addNameRange registry:https://registry.npmjs.org/detect-indent not in flight; fetching +4682 verbose get https://registry.npmjs.org/detect-indent not expired, no request +4683 silly addNameRange number 2 { name: 'detect-indent', range: '>=4.0.0 <5.0.0', hasData: true } +4684 silly addNameRange versions [ 'detect-indent', +4684 silly addNameRange [ '0.1.0', +4684 silly addNameRange '0.1.1', +4684 silly addNameRange '0.1.2', +4684 silly addNameRange '0.1.3', +4684 silly addNameRange '0.1.4', +4684 silly addNameRange '0.2.0', +4684 silly addNameRange '1.0.0', +4684 silly addNameRange '1.0.1', +4684 silly addNameRange '2.0.0', +4684 silly addNameRange '3.0.0', +4684 silly addNameRange '3.0.1', +4684 silly addNameRange '4.0.0', +4684 silly addNameRange '5.0.0' ] ] +4685 silly addNamed detect-indent@4.0.0 +4686 verbose addNamed "4.0.0" is a plain semver version for detect-indent +4687 silly cache afterAdd detect-indent@4.0.0 +4688 verbose afterAdd /home/wso2/.npm/detect-indent/4.0.0/package/package.json not in flight; writing +4689 verbose afterAdd /home/wso2/.npm/detect-indent/4.0.0/package/package.json written +4690 silly fetchNamedPackageData to-fast-properties +4691 silly mapToRegistry name to-fast-properties +4692 silly mapToRegistry using default registry +4693 silly mapToRegistry registry https://registry.npmjs.org/ +4694 silly mapToRegistry uri https://registry.npmjs.org/to-fast-properties +4695 verbose request uri https://registry.npmjs.org/to-fast-properties +4696 verbose request no auth needed +4697 info attempt registry request try #1 at 3:03:53 PM +4698 verbose etag W/"593aaa57-202f" +4699 verbose lastModified Fri, 09 Jun 2017 14:01:59 GMT +4700 http request GET https://registry.npmjs.org/to-fast-properties +4701 http 304 https://registry.npmjs.org/to-fast-properties +4702 verbose headers { date: 'Mon, 02 Oct 2017 09:33:54 GMT', +4702 verbose headers via: '1.1 varnish', +4702 verbose headers 'cache-control': 'max-age=300', +4702 verbose headers etag: 'W/"593aaa57-202f"', +4702 verbose headers age: '96', +4702 verbose headers connection: 'keep-alive', +4702 verbose headers 'x-served-by': 'cache-sin18026-SIN', +4702 verbose headers 'x-cache': 'HIT', +4702 verbose headers 'x-cache-hits': '2', +4702 verbose headers 'x-timer': 'S1506936834.012306,VS0,VE0', +4702 verbose headers vary: 'Accept-Encoding, Accept' } +4703 silly get cb [ 304, +4703 silly get { date: 'Mon, 02 Oct 2017 09:33:54 GMT', +4703 silly get via: '1.1 varnish', +4703 silly get 'cache-control': 'max-age=300', +4703 silly get etag: 'W/"593aaa57-202f"', +4703 silly get age: '96', +4703 silly get connection: 'keep-alive', +4703 silly get 'x-served-by': 'cache-sin18026-SIN', +4703 silly get 'x-cache': 'HIT', +4703 silly get 'x-cache-hits': '2', +4703 silly get 'x-timer': 'S1506936834.012306,VS0,VE0', +4703 silly get vary: 'Accept-Encoding, Accept' } ] +4704 verbose etag https://registry.npmjs.org/to-fast-properties from cache +4705 verbose get saving to-fast-properties to /home/wso2/.npm/registry.npmjs.org/to-fast-properties/.cache.json +4706 silly resolveWithNewModule to-fast-properties@1.0.3 checking installable status +4707 silly cache add args [ 'to-fast-properties@^1.0.3', null ] +4708 verbose cache add spec to-fast-properties@^1.0.3 +4709 silly cache add parsed spec Result { +4709 silly cache add raw: 'to-fast-properties@^1.0.3', +4709 silly cache add scope: null, +4709 silly cache add name: 'to-fast-properties', +4709 silly cache add rawSpec: '^1.0.3', +4709 silly cache add spec: '>=1.0.3 <2.0.0', +4709 silly cache add type: 'range' } +4710 silly addNamed to-fast-properties@>=1.0.3 <2.0.0 +4711 verbose addNamed ">=1.0.3 <2.0.0" is a valid semver range for to-fast-properties +4712 silly addNameRange { name: 'to-fast-properties', +4712 silly addNameRange range: '>=1.0.3 <2.0.0', +4712 silly addNameRange hasData: false } +4713 silly mapToRegistry name to-fast-properties +4714 silly mapToRegistry using default registry +4715 silly mapToRegistry registry https://registry.npmjs.org/ +4716 silly mapToRegistry uri https://registry.npmjs.org/to-fast-properties +4717 verbose addNameRange registry:https://registry.npmjs.org/to-fast-properties not in flight; fetching +4718 verbose get https://registry.npmjs.org/to-fast-properties not expired, no request +4719 silly addNameRange number 2 { name: 'to-fast-properties', +4719 silly addNameRange range: '>=1.0.3 <2.0.0', +4719 silly addNameRange hasData: true } +4720 silly addNameRange versions [ 'to-fast-properties', +4720 silly addNameRange [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '2.0.0' ] ] +4721 silly addNamed to-fast-properties@1.0.3 +4722 verbose addNamed "1.0.3" is a plain semver version for to-fast-properties +4723 silly cache afterAdd to-fast-properties@1.0.3 +4724 verbose afterAdd /home/wso2/.npm/to-fast-properties/1.0.3/package/package.json not in flight; writing +4725 verbose afterAdd /home/wso2/.npm/to-fast-properties/1.0.3/package/package.json written +4726 silly fetchNamedPackageData repeating +4727 silly mapToRegistry name repeating +4728 silly mapToRegistry using default registry +4729 silly mapToRegistry registry https://registry.npmjs.org/ +4730 silly mapToRegistry uri https://registry.npmjs.org/repeating +4731 verbose request uri https://registry.npmjs.org/repeating +4732 verbose request no auth needed +4733 info attempt registry request try #1 at 3:03:54 PM +4734 verbose etag W/"58c26e67-3452" +4735 verbose lastModified Fri, 10 Mar 2017 09:14:15 GMT +4736 http request GET https://registry.npmjs.org/repeating +4737 http 304 https://registry.npmjs.org/repeating +4738 verbose headers { date: 'Mon, 02 Oct 2017 09:33:54 GMT', +4738 verbose headers via: '1.1 varnish', +4738 verbose headers 'cache-control': 'max-age=300', +4738 verbose headers etag: 'W/"58c26e67-3452"', +4738 verbose headers age: '282', +4738 verbose headers connection: 'keep-alive', +4738 verbose headers 'x-served-by': 'cache-sin18021-SIN', +4738 verbose headers 'x-cache': 'HIT', +4738 verbose headers 'x-cache-hits': '10', +4738 verbose headers 'x-timer': 'S1506936834.407965,VS0,VE0', +4738 verbose headers vary: 'Accept-Encoding, Accept' } +4739 silly get cb [ 304, +4739 silly get { date: 'Mon, 02 Oct 2017 09:33:54 GMT', +4739 silly get via: '1.1 varnish', +4739 silly get 'cache-control': 'max-age=300', +4739 silly get etag: 'W/"58c26e67-3452"', +4739 silly get age: '282', +4739 silly get connection: 'keep-alive', +4739 silly get 'x-served-by': 'cache-sin18021-SIN', +4739 silly get 'x-cache': 'HIT', +4739 silly get 'x-cache-hits': '10', +4739 silly get 'x-timer': 'S1506936834.407965,VS0,VE0', +4739 silly get vary: 'Accept-Encoding, Accept' } ] +4740 verbose etag https://registry.npmjs.org/repeating from cache +4741 verbose get saving repeating to /home/wso2/.npm/registry.npmjs.org/repeating/.cache.json +4742 silly resolveWithNewModule repeating@2.0.1 checking installable status +4743 silly cache add args [ 'repeating@^2.0.0', null ] +4744 verbose cache add spec repeating@^2.0.0 +4745 silly cache add parsed spec Result { +4745 silly cache add raw: 'repeating@^2.0.0', +4745 silly cache add scope: null, +4745 silly cache add name: 'repeating', +4745 silly cache add rawSpec: '^2.0.0', +4745 silly cache add spec: '>=2.0.0 <3.0.0', +4745 silly cache add type: 'range' } +4746 silly addNamed repeating@>=2.0.0 <3.0.0 +4747 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for repeating +4748 silly addNameRange { name: 'repeating', range: '>=2.0.0 <3.0.0', hasData: false } +4749 silly mapToRegistry name repeating +4750 silly mapToRegistry using default registry +4751 silly mapToRegistry registry https://registry.npmjs.org/ +4752 silly mapToRegistry uri https://registry.npmjs.org/repeating +4753 verbose addNameRange registry:https://registry.npmjs.org/repeating not in flight; fetching +4754 verbose get https://registry.npmjs.org/repeating not expired, no request +4755 silly addNameRange number 2 { name: 'repeating', range: '>=2.0.0 <3.0.0', hasData: true } +4756 silly addNameRange versions [ 'repeating', +4756 silly addNameRange [ '1.0.0', +4756 silly addNameRange '1.0.1', +4756 silly addNameRange '1.1.0', +4756 silly addNameRange '1.1.1', +4756 silly addNameRange '1.1.2', +4756 silly addNameRange '1.1.3', +4756 silly addNameRange '2.0.0', +4756 silly addNameRange '2.0.1', +4756 silly addNameRange '3.0.0' ] ] +4757 silly addNamed repeating@2.0.1 +4758 verbose addNamed "2.0.1" is a plain semver version for repeating +4759 silly cache afterAdd repeating@2.0.1 +4760 verbose afterAdd /home/wso2/.npm/repeating/2.0.1/package/package.json not in flight; writing +4761 verbose afterAdd /home/wso2/.npm/repeating/2.0.1/package/package.json written +4762 silly fetchNamedPackageData is-finite +4763 silly mapToRegistry name is-finite +4764 silly mapToRegistry using default registry +4765 silly mapToRegistry registry https://registry.npmjs.org/ +4766 silly mapToRegistry uri https://registry.npmjs.org/is-finite +4767 verbose request uri https://registry.npmjs.org/is-finite +4768 verbose request no auth needed +4769 info attempt registry request try #1 at 3:03:54 PM +4770 verbose etag W/"57ee17d0-1368" +4771 verbose lastModified Fri, 30 Sep 2016 07:44:16 GMT +4772 http request GET https://registry.npmjs.org/is-finite +4773 http 304 https://registry.npmjs.org/is-finite +4774 verbose headers { date: 'Mon, 02 Oct 2017 09:33:54 GMT', +4774 verbose headers via: '1.1 varnish', +4774 verbose headers 'cache-control': 'max-age=300', +4774 verbose headers etag: 'W/"57ee17d0-1368"', +4774 verbose headers age: '282', +4774 verbose headers connection: 'keep-alive', +4774 verbose headers 'x-served-by': 'cache-sin18035-SIN', +4774 verbose headers 'x-cache': 'HIT', +4774 verbose headers 'x-cache-hits': '8', +4774 verbose headers 'x-timer': 'S1506936835.783619,VS0,VE0', +4774 verbose headers vary: 'Accept-Encoding, Accept' } +4775 silly get cb [ 304, +4775 silly get { date: 'Mon, 02 Oct 2017 09:33:54 GMT', +4775 silly get via: '1.1 varnish', +4775 silly get 'cache-control': 'max-age=300', +4775 silly get etag: 'W/"57ee17d0-1368"', +4775 silly get age: '282', +4775 silly get connection: 'keep-alive', +4775 silly get 'x-served-by': 'cache-sin18035-SIN', +4775 silly get 'x-cache': 'HIT', +4775 silly get 'x-cache-hits': '8', +4775 silly get 'x-timer': 'S1506936835.783619,VS0,VE0', +4775 silly get vary: 'Accept-Encoding, Accept' } ] +4776 verbose etag https://registry.npmjs.org/is-finite from cache +4777 verbose get saving is-finite to /home/wso2/.npm/registry.npmjs.org/is-finite/.cache.json +4778 silly resolveWithNewModule is-finite@1.0.2 checking installable status +4779 silly cache add args [ 'is-finite@^1.0.0', null ] +4780 verbose cache add spec is-finite@^1.0.0 +4781 silly cache add parsed spec Result { +4781 silly cache add raw: 'is-finite@^1.0.0', +4781 silly cache add scope: null, +4781 silly cache add name: 'is-finite', +4781 silly cache add rawSpec: '^1.0.0', +4781 silly cache add spec: '>=1.0.0 <2.0.0', +4781 silly cache add type: 'range' } +4782 silly addNamed is-finite@>=1.0.0 <2.0.0 +4783 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for is-finite +4784 silly addNameRange { name: 'is-finite', range: '>=1.0.0 <2.0.0', hasData: false } +4785 silly mapToRegistry name is-finite +4786 silly mapToRegistry using default registry +4787 silly mapToRegistry registry https://registry.npmjs.org/ +4788 silly mapToRegistry uri https://registry.npmjs.org/is-finite +4789 verbose addNameRange registry:https://registry.npmjs.org/is-finite not in flight; fetching +4790 verbose get https://registry.npmjs.org/is-finite not expired, no request +4791 silly addNameRange number 2 { name: 'is-finite', range: '>=1.0.0 <2.0.0', hasData: true } +4792 silly addNameRange versions [ 'is-finite', [ '1.0.0', '1.0.1', '1.0.2' ] ] +4793 silly addNamed is-finite@1.0.2 +4794 verbose addNamed "1.0.2" is a plain semver version for is-finite +4795 silly cache afterAdd is-finite@1.0.2 +4796 verbose afterAdd /home/wso2/.npm/is-finite/1.0.2/package/package.json not in flight; writing +4797 verbose afterAdd /home/wso2/.npm/is-finite/1.0.2/package/package.json written +4798 silly fetchNamedPackageData number-is-nan +4799 silly mapToRegistry name number-is-nan +4800 silly mapToRegistry using default registry +4801 silly mapToRegistry registry https://registry.npmjs.org/ +4802 silly mapToRegistry uri https://registry.npmjs.org/number-is-nan +4803 verbose request uri https://registry.npmjs.org/number-is-nan +4804 verbose request no auth needed +4805 info attempt registry request try #1 at 3:03:54 PM +4806 verbose etag W/"58bbfb1a-f47" +4807 verbose lastModified Sun, 05 Mar 2017 11:48:42 GMT +4808 http request GET https://registry.npmjs.org/number-is-nan +4809 http 304 https://registry.npmjs.org/number-is-nan +4810 verbose headers { date: 'Mon, 02 Oct 2017 09:33:54 GMT', +4810 verbose headers via: '1.1 varnish', +4810 verbose headers 'cache-control': 'max-age=300', +4810 verbose headers etag: 'W/"58bbfb1a-f47"', +4810 verbose headers age: '238', +4810 verbose headers connection: 'keep-alive', +4810 verbose headers 'x-served-by': 'cache-sin18030-SIN', +4810 verbose headers 'x-cache': 'HIT', +4810 verbose headers 'x-cache-hits': '7', +4810 verbose headers 'x-timer': 'S1506936835.982475,VS0,VE0', +4810 verbose headers vary: 'Accept-Encoding, Accept' } +4811 silly get cb [ 304, +4811 silly get { date: 'Mon, 02 Oct 2017 09:33:54 GMT', +4811 silly get via: '1.1 varnish', +4811 silly get 'cache-control': 'max-age=300', +4811 silly get etag: 'W/"58bbfb1a-f47"', +4811 silly get age: '238', +4811 silly get connection: 'keep-alive', +4811 silly get 'x-served-by': 'cache-sin18030-SIN', +4811 silly get 'x-cache': 'HIT', +4811 silly get 'x-cache-hits': '7', +4811 silly get 'x-timer': 'S1506936835.982475,VS0,VE0', +4811 silly get vary: 'Accept-Encoding, Accept' } ] +4812 verbose etag https://registry.npmjs.org/number-is-nan from cache +4813 verbose get saving number-is-nan to /home/wso2/.npm/registry.npmjs.org/number-is-nan/.cache.json +4814 silly resolveWithNewModule number-is-nan@1.0.1 checking installable status +4815 silly cache add args [ 'number-is-nan@^1.0.0', null ] +4816 verbose cache add spec number-is-nan@^1.0.0 +4817 silly cache add parsed spec Result { +4817 silly cache add raw: 'number-is-nan@^1.0.0', +4817 silly cache add scope: null, +4817 silly cache add name: 'number-is-nan', +4817 silly cache add rawSpec: '^1.0.0', +4817 silly cache add spec: '>=1.0.0 <2.0.0', +4817 silly cache add type: 'range' } +4818 silly addNamed number-is-nan@>=1.0.0 <2.0.0 +4819 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for number-is-nan +4820 silly addNameRange { name: 'number-is-nan', +4820 silly addNameRange range: '>=1.0.0 <2.0.0', +4820 silly addNameRange hasData: false } +4821 silly mapToRegistry name number-is-nan +4822 silly mapToRegistry using default registry +4823 silly mapToRegistry registry https://registry.npmjs.org/ +4824 silly mapToRegistry uri https://registry.npmjs.org/number-is-nan +4825 verbose addNameRange registry:https://registry.npmjs.org/number-is-nan not in flight; fetching +4826 verbose get https://registry.npmjs.org/number-is-nan not expired, no request +4827 silly addNameRange number 2 { name: 'number-is-nan', range: '>=1.0.0 <2.0.0', hasData: true } +4828 silly addNameRange versions [ 'number-is-nan', [ '1.0.0', '1.0.1' ] ] +4829 silly addNamed number-is-nan@1.0.1 +4830 verbose addNamed "1.0.1" is a plain semver version for number-is-nan +4831 silly cache afterAdd number-is-nan@1.0.1 +4832 verbose afterAdd /home/wso2/.npm/number-is-nan/1.0.1/package/package.json not in flight; writing +4833 verbose afterAdd /home/wso2/.npm/number-is-nan/1.0.1/package/package.json written +4834 silly fetchNamedPackageData globals +4835 silly mapToRegistry name globals +4836 silly mapToRegistry using default registry +4837 silly mapToRegistry registry https://registry.npmjs.org/ +4838 silly mapToRegistry uri https://registry.npmjs.org/globals +4839 verbose request uri https://registry.npmjs.org/globals +4840 verbose request no auth needed +4841 info attempt registry request try #1 at 3:03:55 PM +4842 verbose etag W/"5996a90b-13212" +4843 verbose lastModified Fri, 18 Aug 2017 08:44:59 GMT +4844 http request GET https://registry.npmjs.org/globals +4845 http 304 https://registry.npmjs.org/globals +4846 verbose headers { date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4846 verbose headers via: '1.1 varnish', +4846 verbose headers 'cache-control': 'max-age=300', +4846 verbose headers etag: 'W/"5996a90b-13212"', +4846 verbose headers age: '97', +4846 verbose headers connection: 'keep-alive', +4846 verbose headers 'x-served-by': 'cache-sin18021-SIN', +4846 verbose headers 'x-cache': 'HIT', +4846 verbose headers 'x-cache-hits': '3', +4846 verbose headers 'x-timer': 'S1506936835.400233,VS0,VE0', +4846 verbose headers vary: 'Accept-Encoding, Accept' } +4847 silly get cb [ 304, +4847 silly get { date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4847 silly get via: '1.1 varnish', +4847 silly get 'cache-control': 'max-age=300', +4847 silly get etag: 'W/"5996a90b-13212"', +4847 silly get age: '97', +4847 silly get connection: 'keep-alive', +4847 silly get 'x-served-by': 'cache-sin18021-SIN', +4847 silly get 'x-cache': 'HIT', +4847 silly get 'x-cache-hits': '3', +4847 silly get 'x-timer': 'S1506936835.400233,VS0,VE0', +4847 silly get vary: 'Accept-Encoding, Accept' } ] +4848 verbose etag https://registry.npmjs.org/globals from cache +4849 verbose get saving globals to /home/wso2/.npm/registry.npmjs.org/globals/.cache.json +4850 silly resolveWithNewModule globals@9.18.0 checking installable status +4851 silly cache add args [ 'globals@^9.18.0', null ] +4852 verbose cache add spec globals@^9.18.0 +4853 silly cache add parsed spec Result { +4853 silly cache add raw: 'globals@^9.18.0', +4853 silly cache add scope: null, +4853 silly cache add name: 'globals', +4853 silly cache add rawSpec: '^9.18.0', +4853 silly cache add spec: '>=9.18.0 <10.0.0', +4853 silly cache add type: 'range' } +4854 silly addNamed globals@>=9.18.0 <10.0.0 +4855 verbose addNamed ">=9.18.0 <10.0.0" is a valid semver range for globals +4856 silly addNameRange { name: 'globals', range: '>=9.18.0 <10.0.0', hasData: false } +4857 silly mapToRegistry name globals +4858 silly mapToRegistry using default registry +4859 silly mapToRegistry registry https://registry.npmjs.org/ +4860 silly mapToRegistry uri https://registry.npmjs.org/globals +4861 verbose addNameRange registry:https://registry.npmjs.org/globals not in flight; fetching +4862 verbose get https://registry.npmjs.org/globals not expired, no request +4863 silly addNameRange number 2 { name: 'globals', range: '>=9.18.0 <10.0.0', hasData: true } +4864 silly addNameRange versions [ 'globals', +4864 silly addNameRange [ '0.1.0', +4864 silly addNameRange '0.1.1', +4864 silly addNameRange '1.0.0', +4864 silly addNameRange '2.0.0', +4864 silly addNameRange '3.0.0', +4864 silly addNameRange '4.0.0', +4864 silly addNameRange '5.0.0', +4864 silly addNameRange '5.1.0', +4864 silly addNameRange '6.0.0', +4864 silly addNameRange '6.1.0', +4864 silly addNameRange '6.2.0', +4864 silly addNameRange '6.3.0', +4864 silly addNameRange '6.4.0', +4864 silly addNameRange '6.4.1', +4864 silly addNameRange '7.0.0', +4864 silly addNameRange '7.1.0', +4864 silly addNameRange '8.0.0', +4864 silly addNameRange '8.1.0', +4864 silly addNameRange '8.2.0', +4864 silly addNameRange '8.3.0', +4864 silly addNameRange '8.4.0', +4864 silly addNameRange '8.5.0', +4864 silly addNameRange '8.6.0', +4864 silly addNameRange '8.7.0', +4864 silly addNameRange '8.8.0', +4864 silly addNameRange '8.9.0', +4864 silly addNameRange '8.10.0', +4864 silly addNameRange '8.11.0', +4864 silly addNameRange '8.12.0', +4864 silly addNameRange '8.12.1', +4864 silly addNameRange '8.13.0', +4864 silly addNameRange '8.14.0', +4864 silly addNameRange '8.15.0', +4864 silly addNameRange '8.16.0', +4864 silly addNameRange '8.17.0', +4864 silly addNameRange '8.18.0', +4864 silly addNameRange '9.0.0', +4864 silly addNameRange '9.1.0', +4864 silly addNameRange '9.2.0', +4864 silly addNameRange '9.3.0', +4864 silly addNameRange '9.4.0', +4864 silly addNameRange '9.5.0', +4864 silly addNameRange '9.6.0', +4864 silly addNameRange '9.7.0', +4864 silly addNameRange '9.8.0', +4864 silly addNameRange '9.9.0', +4864 silly addNameRange '9.10.0', +4864 silly addNameRange '9.11.0', +4864 silly addNameRange '9.12.0', +4864 silly addNameRange '9.13.0', +4864 silly addNameRange '9.14.0', +4864 silly addNameRange '9.15.0', +4864 silly addNameRange '9.16.0', +4864 silly addNameRange '9.17.0', +4864 silly addNameRange '9.18.0', +4864 silly addNameRange '10.0.0', +4864 silly addNameRange '10.1.0' ] ] +4865 silly addNamed globals@9.18.0 +4866 verbose addNamed "9.18.0" is a plain semver version for globals +4867 silly cache afterAdd globals@9.18.0 +4868 verbose afterAdd /home/wso2/.npm/globals/9.18.0/package/package.json not in flight; writing +4869 verbose afterAdd /home/wso2/.npm/globals/9.18.0/package/package.json written +4870 silly fetchNamedPackageData core-js +4871 silly mapToRegistry name core-js +4872 silly mapToRegistry using default registry +4873 silly mapToRegistry registry https://registry.npmjs.org/ +4874 silly mapToRegistry uri https://registry.npmjs.org/core-js +4875 silly resolveWithNewModule core-js@2.5.1 checking installable status +4876 silly cache add args [ 'core-js@^2.5.0', null ] +4877 verbose cache add spec core-js@^2.5.0 +4878 silly fetchNamedPackageData home-or-tmp +4879 silly mapToRegistry name home-or-tmp +4880 silly mapToRegistry using default registry +4881 silly mapToRegistry registry https://registry.npmjs.org/ +4882 silly mapToRegistry uri https://registry.npmjs.org/home-or-tmp +4883 silly fetchNamedPackageData mkdirp +4884 silly mapToRegistry name mkdirp +4885 silly mapToRegistry using default registry +4886 silly mapToRegistry registry https://registry.npmjs.org/ +4887 silly mapToRegistry uri https://registry.npmjs.org/mkdirp +4888 silly fetchNamedPackageData source-map-support +4889 silly mapToRegistry name source-map-support +4890 silly mapToRegistry using default registry +4891 silly mapToRegistry registry https://registry.npmjs.org/ +4892 silly mapToRegistry uri https://registry.npmjs.org/source-map-support +4893 silly cache add parsed spec Result { +4893 silly cache add raw: 'core-js@^2.5.0', +4893 silly cache add scope: null, +4893 silly cache add name: 'core-js', +4893 silly cache add rawSpec: '^2.5.0', +4893 silly cache add spec: '>=2.5.0 <3.0.0', +4893 silly cache add type: 'range' } +4894 silly addNamed core-js@>=2.5.0 <3.0.0 +4895 verbose addNamed ">=2.5.0 <3.0.0" is a valid semver range for core-js +4896 silly addNameRange { name: 'core-js', range: '>=2.5.0 <3.0.0', hasData: false } +4897 silly mapToRegistry name core-js +4898 silly mapToRegistry using default registry +4899 silly mapToRegistry registry https://registry.npmjs.org/ +4900 silly mapToRegistry uri https://registry.npmjs.org/core-js +4901 verbose addNameRange registry:https://registry.npmjs.org/core-js not in flight; fetching +4902 verbose request uri https://registry.npmjs.org/core-js +4903 verbose request no auth needed +4904 info attempt registry request try #1 at 3:03:55 PM +4905 verbose etag W/"59c9c41c-39b13" +4906 verbose lastModified Tue, 26 Sep 2017 03:06:04 GMT +4907 http request GET https://registry.npmjs.org/core-js +4908 verbose request uri https://registry.npmjs.org/home-or-tmp +4909 verbose request no auth needed +4910 info attempt registry request try #1 at 3:03:55 PM +4911 verbose etag W/"588327af-1583" +4912 verbose lastModified Sat, 21 Jan 2017 09:19:43 GMT +4913 http request GET https://registry.npmjs.org/home-or-tmp +4914 verbose request uri https://registry.npmjs.org/source-map-support +4915 verbose request no auth needed +4916 info attempt registry request try #1 at 3:03:55 PM +4917 verbose etag W/"59aa9c91-dd36" +4918 verbose lastModified Sat, 02 Sep 2017 11:57:05 GMT +4919 http request GET https://registry.npmjs.org/source-map-support +4920 verbose request uri https://registry.npmjs.org/mkdirp +4921 verbose request no auth needed +4922 info attempt registry request try #1 at 3:03:55 PM +4923 verbose etag W/"59adaff6-6695" +4924 verbose lastModified Mon, 04 Sep 2017 19:56:38 GMT +4925 http request GET https://registry.npmjs.org/mkdirp +4926 http 304 https://registry.npmjs.org/home-or-tmp +4927 verbose headers { date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4927 verbose headers via: '1.1 varnish', +4927 verbose headers 'cache-control': 'max-age=300', +4927 verbose headers etag: 'W/"588327af-1583"', +4927 verbose headers age: '263', +4927 verbose headers connection: 'keep-alive', +4927 verbose headers 'x-served-by': 'cache-sin18023-SIN', +4927 verbose headers 'x-cache': 'HIT', +4927 verbose headers 'x-cache-hits': '3', +4927 verbose headers 'x-timer': 'S1506936836.816037,VS0,VE0', +4927 verbose headers vary: 'Accept-Encoding, Accept' } +4928 silly get cb [ 304, +4928 silly get { date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4928 silly get via: '1.1 varnish', +4928 silly get 'cache-control': 'max-age=300', +4928 silly get etag: 'W/"588327af-1583"', +4928 silly get age: '263', +4928 silly get connection: 'keep-alive', +4928 silly get 'x-served-by': 'cache-sin18023-SIN', +4928 silly get 'x-cache': 'HIT', +4928 silly get 'x-cache-hits': '3', +4928 silly get 'x-timer': 'S1506936836.816037,VS0,VE0', +4928 silly get vary: 'Accept-Encoding, Accept' } ] +4929 verbose etag https://registry.npmjs.org/home-or-tmp from cache +4930 verbose get saving home-or-tmp to /home/wso2/.npm/registry.npmjs.org/home-or-tmp/.cache.json +4931 silly resolveWithNewModule home-or-tmp@2.0.0 checking installable status +4932 silly cache add args [ 'home-or-tmp@^2.0.0', null ] +4933 verbose cache add spec home-or-tmp@^2.0.0 +4934 silly cache add parsed spec Result { +4934 silly cache add raw: 'home-or-tmp@^2.0.0', +4934 silly cache add scope: null, +4934 silly cache add name: 'home-or-tmp', +4934 silly cache add rawSpec: '^2.0.0', +4934 silly cache add spec: '>=2.0.0 <3.0.0', +4934 silly cache add type: 'range' } +4935 silly addNamed home-or-tmp@>=2.0.0 <3.0.0 +4936 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for home-or-tmp +4937 silly addNameRange { name: 'home-or-tmp', range: '>=2.0.0 <3.0.0', hasData: false } +4938 silly mapToRegistry name home-or-tmp +4939 silly mapToRegistry using default registry +4940 silly mapToRegistry registry https://registry.npmjs.org/ +4941 silly mapToRegistry uri https://registry.npmjs.org/home-or-tmp +4942 verbose addNameRange registry:https://registry.npmjs.org/home-or-tmp not in flight; fetching +4943 verbose get https://registry.npmjs.org/home-or-tmp not expired, no request +4944 silly addNameRange number 2 { name: 'home-or-tmp', range: '>=2.0.0 <3.0.0', hasData: true } +4945 silly addNameRange versions [ 'home-or-tmp', [ '1.0.0', '2.0.0', '3.0.0' ] ] +4946 silly addNamed home-or-tmp@2.0.0 +4947 verbose addNamed "2.0.0" is a plain semver version for home-or-tmp +4948 silly cache afterAdd home-or-tmp@2.0.0 +4949 verbose afterAdd /home/wso2/.npm/home-or-tmp/2.0.0/package/package.json not in flight; writing +4950 verbose afterAdd /home/wso2/.npm/home-or-tmp/2.0.0/package/package.json written +4951 http 304 https://registry.npmjs.org/core-js +4952 verbose headers { date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4952 verbose headers via: '1.1 varnish', +4952 verbose headers 'cache-control': 'max-age=300', +4952 verbose headers etag: 'W/"59c9c41c-39b13"', +4952 verbose headers age: '108', +4952 verbose headers connection: 'keep-alive', +4952 verbose headers 'x-served-by': 'cache-sin18032-SIN', +4952 verbose headers 'x-cache': 'HIT', +4952 verbose headers 'x-cache-hits': '3', +4952 verbose headers 'x-timer': 'S1506936836.835704,VS0,VE0', +4952 verbose headers vary: 'Accept-Encoding, Accept' } +4953 silly get cb [ 304, +4953 silly get { date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4953 silly get via: '1.1 varnish', +4953 silly get 'cache-control': 'max-age=300', +4953 silly get etag: 'W/"59c9c41c-39b13"', +4953 silly get age: '108', +4953 silly get connection: 'keep-alive', +4953 silly get 'x-served-by': 'cache-sin18032-SIN', +4953 silly get 'x-cache': 'HIT', +4953 silly get 'x-cache-hits': '3', +4953 silly get 'x-timer': 'S1506936836.835704,VS0,VE0', +4953 silly get vary: 'Accept-Encoding, Accept' } ] +4954 verbose etag https://registry.npmjs.org/core-js from cache +4955 verbose get saving core-js to /home/wso2/.npm/registry.npmjs.org/core-js/.cache.json +4956 http 200 https://registry.npmjs.org/mkdirp +4957 verbose headers { server: 'nginx/1.10.3', +4957 verbose headers 'content-type': 'application/json', +4957 verbose headers 'last-modified': 'Tue, 26 Sep 2017 18:21:20 GMT', +4957 verbose headers etag: 'W/"59ca9aa0-6744"', +4957 verbose headers 'content-encoding': 'gzip', +4957 verbose headers 'cache-control': 'max-age=300', +4957 verbose headers 'content-length': '5330', +4957 verbose headers 'accept-ranges': 'bytes', +4957 verbose headers date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4957 verbose headers via: '1.1 varnish', +4957 verbose headers age: '33', +4957 verbose headers connection: 'keep-alive', +4957 verbose headers 'x-served-by': 'cache-sin18035-SIN', +4957 verbose headers 'x-cache': 'HIT', +4957 verbose headers 'x-cache-hits': '3', +4957 verbose headers 'x-timer': 'S1506936836.828519,VS0,VE0', +4957 verbose headers vary: 'Accept-Encoding, Accept' } +4958 silly get cb [ 200, +4958 silly get { server: 'nginx/1.10.3', +4958 silly get 'content-type': 'application/json', +4958 silly get 'last-modified': 'Tue, 26 Sep 2017 18:21:20 GMT', +4958 silly get etag: 'W/"59ca9aa0-6744"', +4958 silly get 'content-encoding': 'gzip', +4958 silly get 'cache-control': 'max-age=300', +4958 silly get 'content-length': '5330', +4958 silly get 'accept-ranges': 'bytes', +4958 silly get date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4958 silly get via: '1.1 varnish', +4958 silly get age: '33', +4958 silly get connection: 'keep-alive', +4958 silly get 'x-served-by': 'cache-sin18035-SIN', +4958 silly get 'x-cache': 'HIT', +4958 silly get 'x-cache-hits': '3', +4958 silly get 'x-timer': 'S1506936836.828519,VS0,VE0', +4958 silly get vary: 'Accept-Encoding, Accept' } ] +4959 verbose get saving mkdirp to /home/wso2/.npm/registry.npmjs.org/mkdirp/.cache.json +4960 silly addNameRange number 2 { name: 'core-js', range: '>=2.5.0 <3.0.0', hasData: true } +4961 silly addNameRange versions [ 'core-js', +4961 silly addNameRange [ '0.0.3', +4961 silly addNameRange '0.0.4', +4961 silly addNameRange '0.0.5', +4961 silly addNameRange '0.0.7', +4961 silly addNameRange '0.0.8', +4961 silly addNameRange '0.0.9', +4961 silly addNameRange '0.1.1', +4961 silly addNameRange '0.1.2', +4961 silly addNameRange '0.1.3', +4961 silly addNameRange '0.1.4', +4961 silly addNameRange '0.1.5', +4961 silly addNameRange '0.2.0', +4961 silly addNameRange '0.2.1', +4961 silly addNameRange '0.2.2', +4961 silly addNameRange '0.2.3', +4961 silly addNameRange '0.2.4', +4961 silly addNameRange '0.2.5', +4961 silly addNameRange '0.3.0', +4961 silly addNameRange '0.3.1', +4961 silly addNameRange '0.3.2', +4961 silly addNameRange '0.3.3', +4961 silly addNameRange '0.4.0', +4961 silly addNameRange '0.4.1', +4961 silly addNameRange '0.4.2', +4961 silly addNameRange '0.4.3', +4961 silly addNameRange '0.4.4', +4961 silly addNameRange '0.4.5', +4961 silly addNameRange '0.4.6', +4961 silly addNameRange '0.4.7', +4961 silly addNameRange '0.4.8', +4961 silly addNameRange '0.4.9', +4961 silly addNameRange '0.4.10', +4961 silly addNameRange '0.5.0', +4961 silly addNameRange '0.5.1', +4961 silly addNameRange '0.5.2', +4961 silly addNameRange '0.5.3', +4961 silly addNameRange '0.5.4', +4961 silly addNameRange '0.6.0', +4961 silly addNameRange '0.6.1', +4961 silly addNameRange '0.7.0', +4961 silly addNameRange '0.7.1', +4961 silly addNameRange '0.7.2', +4961 silly addNameRange '0.8.0', +4961 silly addNameRange '0.8.1', +4961 silly addNameRange '0.8.2', +4961 silly addNameRange '0.8.3', +4961 silly addNameRange '0.8.4', +4961 silly addNameRange '0.9.0', +4961 silly addNameRange '0.9.1', +4961 silly addNameRange '0.9.2', +4961 silly addNameRange '0.9.3', +4961 silly addNameRange '0.9.4', +4961 silly addNameRange '0.9.5', +4961 silly addNameRange '0.9.6', +4961 silly addNameRange '0.9.7', +4961 silly addNameRange '0.9.8', +4961 silly addNameRange '0.9.9', +4961 silly addNameRange '0.9.10', +4961 silly addNameRange '0.9.11', +4961 silly addNameRange '0.9.12', +4961 silly addNameRange '0.9.13', +4961 silly addNameRange '0.9.14', +4961 silly addNameRange '0.9.15', +4961 silly addNameRange '0.9.16', +4961 silly addNameRange '0.9.17', +4961 silly addNameRange '0.9.18', +4961 silly addNameRange '1.0.0', +4961 silly addNameRange '1.0.1', +4961 silly addNameRange '1.1.0', +4961 silly addNameRange '1.1.1', +4961 silly addNameRange '1.1.2', +4961 silly addNameRange '1.1.3', +4961 silly addNameRange '1.1.4', +4961 silly addNameRange '1.2.0', +4961 silly addNameRange '1.2.1', +4961 silly addNameRange '1.2.2', +4961 silly addNameRange '1.2.3', +4961 silly addNameRange '1.2.4', +4961 silly addNameRange '1.2.5', +4961 silly addNameRange '1.2.6', +4961 silly addNameRange '2.0.0-alpha', +4961 silly addNameRange '2.0.0-beta', +4961 silly addNameRange '2.0.0-beta.2', +4961 silly addNameRange '2.0.0', +4961 silly addNameRange '2.0.1', +4961 silly addNameRange '2.0.2', +4961 silly addNameRange '2.0.3', +4961 silly addNameRange '2.1.0', +4961 silly addNameRange '2.1.1', +4961 silly addNameRange '2.1.2', +4961 silly addNameRange '2.1.3', +4961 silly addNameRange '2.1.4', +4961 silly addNameRange '2.1.5', +4961 silly addNameRange '2.2.0', +4961 silly addNameRange '2.2.1', +4961 silly addNameRange '2.2.2', +4961 silly addNameRange '2.3.0', +4961 silly addNameRange '2.4.0', +4961 silly addNameRange '1.2.7', +4961 silly addNameRange '2.4.1', +4961 silly addNameRange '2.5.0', +4961 silly addNameRange '2.5.1' ] ] +4962 silly addNamed core-js@2.5.1 +4963 verbose addNamed "2.5.1" is a plain semver version for core-js +4964 silly resolveWithNewModule mkdirp@0.5.1 checking installable status +4965 silly cache add args [ 'mkdirp@^0.5.1', null ] +4966 verbose cache add spec mkdirp@^0.5.1 +4967 silly cache add parsed spec Result { +4967 silly cache add raw: 'mkdirp@^0.5.1', +4967 silly cache add scope: null, +4967 silly cache add name: 'mkdirp', +4967 silly cache add rawSpec: '^0.5.1', +4967 silly cache add spec: '>=0.5.1 <0.6.0', +4967 silly cache add type: 'range' } +4968 silly addNamed mkdirp@>=0.5.1 <0.6.0 +4969 verbose addNamed ">=0.5.1 <0.6.0" is a valid semver range for mkdirp +4970 silly addNameRange { name: 'mkdirp', range: '>=0.5.1 <0.6.0', hasData: false } +4971 silly mapToRegistry name mkdirp +4972 silly mapToRegistry using default registry +4973 silly mapToRegistry registry https://registry.npmjs.org/ +4974 silly mapToRegistry uri https://registry.npmjs.org/mkdirp +4975 verbose addNameRange registry:https://registry.npmjs.org/mkdirp not in flight; fetching +4976 silly cache afterAdd core-js@2.5.1 +4977 verbose afterAdd /home/wso2/.npm/core-js/2.5.1/package/package.json not in flight; writing +4978 verbose get https://registry.npmjs.org/mkdirp not expired, no request +4979 silly addNameRange number 2 { name: 'mkdirp', range: '>=0.5.1 <0.6.0', hasData: true } +4980 silly addNameRange versions [ 'mkdirp', +4980 silly addNameRange [ '0.0.1', +4980 silly addNameRange '0.0.2', +4980 silly addNameRange '0.0.3', +4980 silly addNameRange '0.0.4', +4980 silly addNameRange '0.0.5', +4980 silly addNameRange '0.0.6', +4980 silly addNameRange '0.0.7', +4980 silly addNameRange '0.1.0', +4980 silly addNameRange '0.2.0', +4980 silly addNameRange '0.2.1', +4980 silly addNameRange '0.2.2', +4980 silly addNameRange '0.3.0', +4980 silly addNameRange '0.3.1', +4980 silly addNameRange '0.3.2', +4980 silly addNameRange '0.3.3', +4980 silly addNameRange '0.3.4', +4980 silly addNameRange '0.3.5', +4980 silly addNameRange '0.4.0', +4980 silly addNameRange '0.4.1', +4980 silly addNameRange '0.4.2', +4980 silly addNameRange '0.5.0', +4980 silly addNameRange '0.5.1' ] ] +4981 silly addNamed mkdirp@0.5.1 +4982 verbose addNamed "0.5.1" is a plain semver version for mkdirp +4983 verbose afterAdd /home/wso2/.npm/core-js/2.5.1/package/package.json written +4984 silly cache afterAdd mkdirp@0.5.1 +4985 verbose afterAdd /home/wso2/.npm/mkdirp/0.5.1/package/package.json not in flight; writing +4986 verbose afterAdd /home/wso2/.npm/mkdirp/0.5.1/package/package.json written +4987 http 200 https://registry.npmjs.org/source-map-support +4988 verbose headers { server: 'nginx/1.10.3', +4988 verbose headers 'content-type': 'application/json', +4988 verbose headers 'last-modified': 'Mon, 25 Sep 2017 21:45:20 GMT', +4988 verbose headers etag: 'W/"59c978f0-e31e"', +4988 verbose headers 'content-encoding': 'gzip', +4988 verbose headers 'cache-control': 'max-age=300', +4988 verbose headers 'content-length': '8979', +4988 verbose headers 'accept-ranges': 'bytes', +4988 verbose headers date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4988 verbose headers via: '1.1 varnish', +4988 verbose headers age: '128', +4988 verbose headers connection: 'keep-alive', +4988 verbose headers 'x-served-by': 'cache-sin18026-SIN', +4988 verbose headers 'x-cache': 'HIT', +4988 verbose headers 'x-cache-hits': '4', +4988 verbose headers 'x-timer': 'S1506936836.865476,VS0,VE0', +4988 verbose headers vary: 'Accept-Encoding, Accept' } +4989 silly get cb [ 200, +4989 silly get { server: 'nginx/1.10.3', +4989 silly get 'content-type': 'application/json', +4989 silly get 'last-modified': 'Mon, 25 Sep 2017 21:45:20 GMT', +4989 silly get etag: 'W/"59c978f0-e31e"', +4989 silly get 'content-encoding': 'gzip', +4989 silly get 'cache-control': 'max-age=300', +4989 silly get 'content-length': '8979', +4989 silly get 'accept-ranges': 'bytes', +4989 silly get date: 'Mon, 02 Oct 2017 09:33:55 GMT', +4989 silly get via: '1.1 varnish', +4989 silly get age: '128', +4989 silly get connection: 'keep-alive', +4989 silly get 'x-served-by': 'cache-sin18026-SIN', +4989 silly get 'x-cache': 'HIT', +4989 silly get 'x-cache-hits': '4', +4989 silly get 'x-timer': 'S1506936836.865476,VS0,VE0', +4989 silly get vary: 'Accept-Encoding, Accept' } ] +4990 verbose get saving source-map-support to /home/wso2/.npm/registry.npmjs.org/source-map-support/.cache.json +4991 silly resolveWithNewModule source-map-support@0.4.18 checking installable status +4992 silly cache add args [ 'source-map-support@^0.4.15', null ] +4993 verbose cache add spec source-map-support@^0.4.15 +4994 silly cache add parsed spec Result { +4994 silly cache add raw: 'source-map-support@^0.4.15', +4994 silly cache add scope: null, +4994 silly cache add name: 'source-map-support', +4994 silly cache add rawSpec: '^0.4.15', +4994 silly cache add spec: '>=0.4.15 <0.5.0', +4994 silly cache add type: 'range' } +4995 silly addNamed source-map-support@>=0.4.15 <0.5.0 +4996 verbose addNamed ">=0.4.15 <0.5.0" is a valid semver range for source-map-support +4997 silly addNameRange { name: 'source-map-support', +4997 silly addNameRange range: '>=0.4.15 <0.5.0', +4997 silly addNameRange hasData: false } +4998 silly mapToRegistry name source-map-support +4999 silly mapToRegistry using default registry +5000 silly mapToRegistry registry https://registry.npmjs.org/ +5001 silly mapToRegistry uri https://registry.npmjs.org/source-map-support +5002 verbose addNameRange registry:https://registry.npmjs.org/source-map-support not in flight; fetching +5003 verbose get https://registry.npmjs.org/source-map-support not expired, no request +5004 silly addNameRange number 2 { name: 'source-map-support', +5004 silly addNameRange range: '>=0.4.15 <0.5.0', +5004 silly addNameRange hasData: true } +5005 silly addNameRange versions [ 'source-map-support', +5005 silly addNameRange [ '0.1.0', +5005 silly addNameRange '0.1.1', +5005 silly addNameRange '0.1.2', +5005 silly addNameRange '0.1.3', +5005 silly addNameRange '0.1.4', +5005 silly addNameRange '0.1.5', +5005 silly addNameRange '0.1.6', +5005 silly addNameRange '0.1.7', +5005 silly addNameRange '0.1.8', +5005 silly addNameRange '0.1.9', +5005 silly addNameRange '0.2.0', +5005 silly addNameRange '0.2.1', +5005 silly addNameRange '0.2.2', +5005 silly addNameRange '0.2.3', +5005 silly addNameRange '0.2.4', +5005 silly addNameRange '0.2.5', +5005 silly addNameRange '0.2.6', +5005 silly addNameRange '0.2.7', +5005 silly addNameRange '0.2.8', +5005 silly addNameRange '0.2.9', +5005 silly addNameRange '0.2.10', +5005 silly addNameRange '0.3.0', +5005 silly addNameRange '0.3.1', +5005 silly addNameRange '0.3.2', +5005 silly addNameRange '0.3.3', +5005 silly addNameRange '0.4.0', +5005 silly addNameRange '0.4.1', +5005 silly addNameRange '0.4.2', +5005 silly addNameRange '0.4.3', +5005 silly addNameRange '0.4.4', +5005 silly addNameRange '0.4.5', +5005 silly addNameRange '0.4.6', +5005 silly addNameRange '0.4.7', +5005 silly addNameRange '0.4.8', +5005 silly addNameRange '0.4.9', +5005 silly addNameRange '0.4.10', +5005 silly addNameRange '0.4.11', +5005 silly addNameRange '0.4.12', +5005 silly addNameRange '0.4.13', +5005 silly addNameRange '0.4.14', +5005 silly addNameRange '0.4.15', +5005 silly addNameRange '0.4.16', +5005 silly addNameRange '0.4.17', +5005 silly addNameRange '0.4.18' ] ] +5006 silly addNamed source-map-support@0.4.18 +5007 verbose addNamed "0.4.18" is a plain semver version for source-map-support +5008 silly mapToRegistry name source-map-support +5009 silly mapToRegistry using default registry +5010 silly mapToRegistry registry https://registry.npmjs.org/ +5011 silly mapToRegistry uri https://registry.npmjs.org/source-map-support +5012 verbose addRemoteTarball https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz not in flight; adding +5013 verbose addRemoteTarball [ 'https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz', +5013 verbose addRemoteTarball '0286a6de8be42641338594e97ccea75f0a2c585f' ] +5014 info retry fetch attempt 1 at 3:03:55 PM +5015 info attempt registry request try #1 at 3:03:55 PM +5016 http fetch GET https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz +5017 http fetch 200 https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz +5018 silly fetchAndShaCheck shasum 0286a6de8be42641338594e97ccea75f0a2c585f +5019 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz not in flight; adding +5020 verbose addTmpTarball already have metadata; skipping unpack for source-map-support@0.4.18 +5021 silly cache afterAdd source-map-support@0.4.18 +5022 verbose afterAdd /home/wso2/.npm/source-map-support/0.4.18/package/package.json not in flight; writing +5023 verbose afterAdd /home/wso2/.npm/source-map-support/0.4.18/package/package.json written +5024 silly fetchNamedPackageData os-homedir +5025 silly mapToRegistry name os-homedir +5026 silly mapToRegistry using default registry +5027 silly mapToRegistry registry https://registry.npmjs.org/ +5028 silly mapToRegistry uri https://registry.npmjs.org/os-homedir +5029 silly fetchNamedPackageData os-tmpdir +5030 silly mapToRegistry name os-tmpdir +5031 silly mapToRegistry using default registry +5032 silly mapToRegistry registry https://registry.npmjs.org/ +5033 silly mapToRegistry uri https://registry.npmjs.org/os-tmpdir +5034 verbose request uri https://registry.npmjs.org/os-homedir +5035 verbose request no auth needed +5036 info attempt registry request try #1 at 3:03:56 PM +5037 verbose etag W/"595baf0b-19ee" +5038 verbose lastModified Tue, 04 Jul 2017 15:06:51 GMT +5039 http request GET https://registry.npmjs.org/os-homedir +5040 verbose request uri https://registry.npmjs.org/os-tmpdir +5041 verbose request no auth needed +5042 info attempt registry request try #1 at 3:03:56 PM +5043 verbose etag W/"57edf00a-1497" +5044 verbose lastModified Fri, 30 Sep 2016 04:54:34 GMT +5045 http request GET https://registry.npmjs.org/os-tmpdir +5046 http 304 https://registry.npmjs.org/os-tmpdir +5047 verbose headers { date: 'Mon, 02 Oct 2017 09:33:56 GMT', +5047 verbose headers via: '1.1 varnish', +5047 verbose headers 'cache-control': 'max-age=300', +5047 verbose headers etag: 'W/"57edf00a-1497"', +5047 verbose headers age: '95', +5047 verbose headers connection: 'keep-alive', +5047 verbose headers 'x-served-by': 'cache-sin18022-SIN', +5047 verbose headers 'x-cache': 'HIT', +5047 verbose headers 'x-cache-hits': '7', +5047 verbose headers 'x-timer': 'S1506936837.508052,VS0,VE0', +5047 verbose headers vary: 'Accept-Encoding, Accept' } +5048 silly get cb [ 304, +5048 silly get { date: 'Mon, 02 Oct 2017 09:33:56 GMT', +5048 silly get via: '1.1 varnish', +5048 silly get 'cache-control': 'max-age=300', +5048 silly get etag: 'W/"57edf00a-1497"', +5048 silly get age: '95', +5048 silly get connection: 'keep-alive', +5048 silly get 'x-served-by': 'cache-sin18022-SIN', +5048 silly get 'x-cache': 'HIT', +5048 silly get 'x-cache-hits': '7', +5048 silly get 'x-timer': 'S1506936837.508052,VS0,VE0', +5048 silly get vary: 'Accept-Encoding, Accept' } ] +5049 verbose etag https://registry.npmjs.org/os-tmpdir from cache +5050 verbose get saving os-tmpdir to /home/wso2/.npm/registry.npmjs.org/os-tmpdir/.cache.json +5051 silly resolveWithNewModule os-tmpdir@1.0.2 checking installable status +5052 silly cache add args [ 'os-tmpdir@^1.0.1', null ] +5053 verbose cache add spec os-tmpdir@^1.0.1 +5054 silly cache add parsed spec Result { +5054 silly cache add raw: 'os-tmpdir@^1.0.1', +5054 silly cache add scope: null, +5054 silly cache add name: 'os-tmpdir', +5054 silly cache add rawSpec: '^1.0.1', +5054 silly cache add spec: '>=1.0.1 <2.0.0', +5054 silly cache add type: 'range' } +5055 silly addNamed os-tmpdir@>=1.0.1 <2.0.0 +5056 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for os-tmpdir +5057 silly addNameRange { name: 'os-tmpdir', range: '>=1.0.1 <2.0.0', hasData: false } +5058 silly mapToRegistry name os-tmpdir +5059 silly mapToRegistry using default registry +5060 silly mapToRegistry registry https://registry.npmjs.org/ +5061 silly mapToRegistry uri https://registry.npmjs.org/os-tmpdir +5062 verbose addNameRange registry:https://registry.npmjs.org/os-tmpdir not in flight; fetching +5063 verbose get https://registry.npmjs.org/os-tmpdir not expired, no request +5064 silly addNameRange number 2 { name: 'os-tmpdir', range: '>=1.0.1 <2.0.0', hasData: true } +5065 silly addNameRange versions [ 'os-tmpdir', [ '1.0.0', '1.0.1', '1.0.2' ] ] +5066 silly addNamed os-tmpdir@1.0.2 +5067 verbose addNamed "1.0.2" is a plain semver version for os-tmpdir +5068 silly cache afterAdd os-tmpdir@1.0.2 +5069 verbose afterAdd /home/wso2/.npm/os-tmpdir/1.0.2/package/package.json not in flight; writing +5070 verbose afterAdd /home/wso2/.npm/os-tmpdir/1.0.2/package/package.json written +5071 http 304 https://registry.npmjs.org/os-homedir +5072 verbose headers { date: 'Mon, 02 Oct 2017 09:33:56 GMT', +5072 verbose headers via: '1.1 varnish', +5072 verbose headers 'cache-control': 'max-age=300', +5072 verbose headers etag: 'W/"595baf0b-19ee"', +5072 verbose headers age: '289', +5072 verbose headers connection: 'keep-alive', +5072 verbose headers 'x-served-by': 'cache-sin18030-SIN', +5072 verbose headers 'x-cache': 'HIT', +5072 verbose headers 'x-cache-hits': '10', +5072 verbose headers 'x-timer': 'S1506936837.521267,VS0,VE0', +5072 verbose headers vary: 'Accept-Encoding, Accept' } +5073 silly get cb [ 304, +5073 silly get { date: 'Mon, 02 Oct 2017 09:33:56 GMT', +5073 silly get via: '1.1 varnish', +5073 silly get 'cache-control': 'max-age=300', +5073 silly get etag: 'W/"595baf0b-19ee"', +5073 silly get age: '289', +5073 silly get connection: 'keep-alive', +5073 silly get 'x-served-by': 'cache-sin18030-SIN', +5073 silly get 'x-cache': 'HIT', +5073 silly get 'x-cache-hits': '10', +5073 silly get 'x-timer': 'S1506936837.521267,VS0,VE0', +5073 silly get vary: 'Accept-Encoding, Accept' } ] +5074 verbose etag https://registry.npmjs.org/os-homedir from cache +5075 verbose get saving os-homedir to /home/wso2/.npm/registry.npmjs.org/os-homedir/.cache.json +5076 silly resolveWithNewModule os-homedir@1.0.2 checking installable status +5077 silly cache add args [ 'os-homedir@^1.0.0', null ] +5078 verbose cache add spec os-homedir@^1.0.0 +5079 silly cache add parsed spec Result { +5079 silly cache add raw: 'os-homedir@^1.0.0', +5079 silly cache add scope: null, +5079 silly cache add name: 'os-homedir', +5079 silly cache add rawSpec: '^1.0.0', +5079 silly cache add spec: '>=1.0.0 <2.0.0', +5079 silly cache add type: 'range' } +5080 silly addNamed os-homedir@>=1.0.0 <2.0.0 +5081 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for os-homedir +5082 silly addNameRange { name: 'os-homedir', range: '>=1.0.0 <2.0.0', hasData: false } +5083 silly mapToRegistry name os-homedir +5084 silly mapToRegistry using default registry +5085 silly mapToRegistry registry https://registry.npmjs.org/ +5086 silly mapToRegistry uri https://registry.npmjs.org/os-homedir +5087 verbose addNameRange registry:https://registry.npmjs.org/os-homedir not in flight; fetching +5088 verbose get https://registry.npmjs.org/os-homedir not expired, no request +5089 silly addNameRange number 2 { name: 'os-homedir', range: '>=1.0.0 <2.0.0', hasData: true } +5090 silly addNameRange versions [ 'os-homedir', [ '0.1.0', '1.0.0', '1.0.1', '1.0.2' ] ] +5091 silly addNamed os-homedir@1.0.2 +5092 verbose addNamed "1.0.2" is a plain semver version for os-homedir +5093 silly cache afterAdd os-homedir@1.0.2 +5094 verbose afterAdd /home/wso2/.npm/os-homedir/1.0.2/package/package.json not in flight; writing +5095 verbose afterAdd /home/wso2/.npm/os-homedir/1.0.2/package/package.json written +5096 silly fetchNamedPackageData minimist +5097 silly mapToRegistry name minimist +5098 silly mapToRegistry using default registry +5099 silly mapToRegistry registry https://registry.npmjs.org/ +5100 silly mapToRegistry uri https://registry.npmjs.org/minimist +5101 silly resolveWithNewModule minimist@0.0.8 checking installable status +5102 silly cache add args [ 'minimist@0.0.8', null ] +5103 verbose cache add spec minimist@0.0.8 +5104 silly cache add parsed spec Result { +5104 silly cache add raw: 'minimist@0.0.8', +5104 silly cache add scope: null, +5104 silly cache add name: 'minimist', +5104 silly cache add rawSpec: '0.0.8', +5104 silly cache add spec: '0.0.8', +5104 silly cache add type: 'version' } +5105 silly addNamed minimist@0.0.8 +5106 verbose addNamed "0.0.8" is a plain semver version for minimist +5107 silly mapToRegistry name minimist +5108 silly mapToRegistry using default registry +5109 silly mapToRegistry registry https://registry.npmjs.org/ +5110 silly mapToRegistry uri https://registry.npmjs.org/minimist +5111 verbose addNameVersion registry:https://registry.npmjs.org/minimist not in flight; fetching +5112 verbose request uri https://registry.npmjs.org/minimist +5113 verbose request no auth needed +5114 info attempt registry request try #1 at 3:03:56 PM +5115 verbose etag W/"59d10b30-7721" +5116 verbose lastModified Sun, 01 Oct 2017 15:35:12 GMT +5117 http request GET https://registry.npmjs.org/minimist +5118 http 304 https://registry.npmjs.org/minimist +5119 verbose headers { date: 'Mon, 02 Oct 2017 09:33:56 GMT', +5119 verbose headers via: '1.1 varnish', +5119 verbose headers 'cache-control': 'max-age=300', +5119 verbose headers etag: 'W/"59d10b30-7721"', +5119 verbose headers age: '219', +5119 verbose headers connection: 'keep-alive', +5119 verbose headers 'x-served-by': 'cache-sin18031-SIN', +5119 verbose headers 'x-cache': 'HIT', +5119 verbose headers 'x-cache-hits': '19', +5119 verbose headers 'x-timer': 'S1506936837.732081,VS0,VE0', +5119 verbose headers vary: 'Accept-Encoding, Accept' } +5120 silly get cb [ 304, +5120 silly get { date: 'Mon, 02 Oct 2017 09:33:56 GMT', +5120 silly get via: '1.1 varnish', +5120 silly get 'cache-control': 'max-age=300', +5120 silly get etag: 'W/"59d10b30-7721"', +5120 silly get age: '219', +5120 silly get connection: 'keep-alive', +5120 silly get 'x-served-by': 'cache-sin18031-SIN', +5120 silly get 'x-cache': 'HIT', +5120 silly get 'x-cache-hits': '19', +5120 silly get 'x-timer': 'S1506936837.732081,VS0,VE0', +5120 silly get vary: 'Accept-Encoding, Accept' } ] +5121 verbose etag https://registry.npmjs.org/minimist from cache +5122 verbose get saving minimist to /home/wso2/.npm/registry.npmjs.org/minimist/.cache.json +5123 silly cache afterAdd minimist@0.0.8 +5124 verbose afterAdd /home/wso2/.npm/minimist/0.0.8/package/package.json not in flight; writing +5125 verbose afterAdd /home/wso2/.npm/minimist/0.0.8/package/package.json written +5126 silly fetchNamedPackageData brace-expansion +5127 silly mapToRegistry name brace-expansion +5128 silly mapToRegistry using default registry +5129 silly mapToRegistry registry https://registry.npmjs.org/ +5130 silly mapToRegistry uri https://registry.npmjs.org/brace-expansion +5131 verbose request uri https://registry.npmjs.org/brace-expansion +5132 verbose request no auth needed +5133 info attempt registry request try #1 at 3:03:56 PM +5134 verbose etag W/"595b97db-595c" +5135 verbose lastModified Tue, 04 Jul 2017 13:27:55 GMT +5136 http request GET https://registry.npmjs.org/brace-expansion +5137 http 304 https://registry.npmjs.org/brace-expansion +5138 verbose headers { date: 'Mon, 02 Oct 2017 09:33:56 GMT', +5138 verbose headers via: '1.1 varnish', +5138 verbose headers 'cache-control': 'max-age=300', +5138 verbose headers etag: 'W/"595b97db-595c"', +5138 verbose headers age: '244', +5138 verbose headers connection: 'keep-alive', +5138 verbose headers 'x-served-by': 'cache-sin18023-SIN', +5138 verbose headers 'x-cache': 'HIT', +5138 verbose headers 'x-cache-hits': '64', +5138 verbose headers 'x-timer': 'S1506936837.938477,VS0,VE0', +5138 verbose headers vary: 'Accept-Encoding, Accept' } +5139 silly get cb [ 304, +5139 silly get { date: 'Mon, 02 Oct 2017 09:33:56 GMT', +5139 silly get via: '1.1 varnish', +5139 silly get 'cache-control': 'max-age=300', +5139 silly get etag: 'W/"595b97db-595c"', +5139 silly get age: '244', +5139 silly get connection: 'keep-alive', +5139 silly get 'x-served-by': 'cache-sin18023-SIN', +5139 silly get 'x-cache': 'HIT', +5139 silly get 'x-cache-hits': '64', +5139 silly get 'x-timer': 'S1506936837.938477,VS0,VE0', +5139 silly get vary: 'Accept-Encoding, Accept' } ] +5140 verbose etag https://registry.npmjs.org/brace-expansion from cache +5141 verbose get saving brace-expansion to /home/wso2/.npm/registry.npmjs.org/brace-expansion/.cache.json +5142 silly resolveWithNewModule brace-expansion@1.1.8 checking installable status +5143 silly cache add args [ 'brace-expansion@^1.1.7', null ] +5144 verbose cache add spec brace-expansion@^1.1.7 +5145 silly cache add parsed spec Result { +5145 silly cache add raw: 'brace-expansion@^1.1.7', +5145 silly cache add scope: null, +5145 silly cache add name: 'brace-expansion', +5145 silly cache add rawSpec: '^1.1.7', +5145 silly cache add spec: '>=1.1.7 <2.0.0', +5145 silly cache add type: 'range' } +5146 silly addNamed brace-expansion@>=1.1.7 <2.0.0 +5147 verbose addNamed ">=1.1.7 <2.0.0" is a valid semver range for brace-expansion +5148 silly addNameRange { name: 'brace-expansion', +5148 silly addNameRange range: '>=1.1.7 <2.0.0', +5148 silly addNameRange hasData: false } +5149 silly mapToRegistry name brace-expansion +5150 silly mapToRegistry using default registry +5151 silly mapToRegistry registry https://registry.npmjs.org/ +5152 silly mapToRegistry uri https://registry.npmjs.org/brace-expansion +5153 verbose addNameRange registry:https://registry.npmjs.org/brace-expansion not in flight; fetching +5154 verbose get https://registry.npmjs.org/brace-expansion not expired, no request +5155 silly addNameRange number 2 { name: 'brace-expansion', +5155 silly addNameRange range: '>=1.1.7 <2.0.0', +5155 silly addNameRange hasData: true } +5156 silly addNameRange versions [ 'brace-expansion', +5156 silly addNameRange [ '0.0.0', +5156 silly addNameRange '1.0.0', +5156 silly addNameRange '1.0.1', +5156 silly addNameRange '1.1.0', +5156 silly addNameRange '1.1.1', +5156 silly addNameRange '1.1.2', +5156 silly addNameRange '1.1.3', +5156 silly addNameRange '1.1.4', +5156 silly addNameRange '1.1.5', +5156 silly addNameRange '1.1.6', +5156 silly addNameRange '1.1.7', +5156 silly addNameRange '1.1.8' ] ] +5157 silly addNamed brace-expansion@1.1.8 +5158 verbose addNamed "1.1.8" is a plain semver version for brace-expansion +5159 silly cache afterAdd brace-expansion@1.1.8 +5160 verbose afterAdd /home/wso2/.npm/brace-expansion/1.1.8/package/package.json not in flight; writing +5161 verbose afterAdd /home/wso2/.npm/brace-expansion/1.1.8/package/package.json written +5162 silly fetchNamedPackageData balanced-match +5163 silly mapToRegistry name balanced-match +5164 silly mapToRegistry using default registry +5165 silly mapToRegistry registry https://registry.npmjs.org/ +5166 silly mapToRegistry uri https://registry.npmjs.org/balanced-match +5167 silly fetchNamedPackageData concat-map +5168 silly mapToRegistry name concat-map +5169 silly mapToRegistry using default registry +5170 silly mapToRegistry registry https://registry.npmjs.org/ +5171 silly mapToRegistry uri https://registry.npmjs.org/concat-map +5172 verbose request uri https://registry.npmjs.org/balanced-match +5173 verbose request no auth needed +5174 info attempt registry request try #1 at 3:03:56 PM +5175 verbose etag W/"59428b1a-476d" +5176 verbose lastModified Thu, 15 Jun 2017 13:26:50 GMT +5177 http request GET https://registry.npmjs.org/balanced-match +5178 verbose request uri https://registry.npmjs.org/concat-map +5179 verbose request no auth needed +5180 info attempt registry request try #1 at 3:03:56 PM +5181 verbose etag W/"52e9c1bb-f3a" +5182 verbose lastModified Thu, 30 Jan 2014 03:06:35 GMT +5183 http request GET https://registry.npmjs.org/concat-map +5184 http 304 https://registry.npmjs.org/balanced-match +5185 verbose headers { date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5185 verbose headers via: '1.1 varnish', +5185 verbose headers 'cache-control': 'max-age=300', +5185 verbose headers etag: 'W/"59428b1a-476d"', +5185 verbose headers age: '137', +5185 verbose headers connection: 'keep-alive', +5185 verbose headers 'x-served-by': 'cache-sin18029-SIN', +5185 verbose headers 'x-cache': 'HIT', +5185 verbose headers 'x-cache-hits': '4', +5185 verbose headers 'x-timer': 'S1506936837.135907,VS0,VE0', +5185 verbose headers vary: 'Accept-Encoding, Accept' } +5186 silly get cb [ 304, +5186 silly get { date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5186 silly get via: '1.1 varnish', +5186 silly get 'cache-control': 'max-age=300', +5186 silly get etag: 'W/"59428b1a-476d"', +5186 silly get age: '137', +5186 silly get connection: 'keep-alive', +5186 silly get 'x-served-by': 'cache-sin18029-SIN', +5186 silly get 'x-cache': 'HIT', +5186 silly get 'x-cache-hits': '4', +5186 silly get 'x-timer': 'S1506936837.135907,VS0,VE0', +5186 silly get vary: 'Accept-Encoding, Accept' } ] +5187 verbose etag https://registry.npmjs.org/balanced-match from cache +5188 verbose get saving balanced-match to /home/wso2/.npm/registry.npmjs.org/balanced-match/.cache.json +5189 silly resolveWithNewModule balanced-match@1.0.0 checking installable status +5190 silly cache add args [ 'balanced-match@^1.0.0', null ] +5191 verbose cache add spec balanced-match@^1.0.0 +5192 silly cache add parsed spec Result { +5192 silly cache add raw: 'balanced-match@^1.0.0', +5192 silly cache add scope: null, +5192 silly cache add name: 'balanced-match', +5192 silly cache add rawSpec: '^1.0.0', +5192 silly cache add spec: '>=1.0.0 <2.0.0', +5192 silly cache add type: 'range' } +5193 silly addNamed balanced-match@>=1.0.0 <2.0.0 +5194 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for balanced-match +5195 silly addNameRange { name: 'balanced-match', +5195 silly addNameRange range: '>=1.0.0 <2.0.0', +5195 silly addNameRange hasData: false } +5196 silly mapToRegistry name balanced-match +5197 silly mapToRegistry using default registry +5198 silly mapToRegistry registry https://registry.npmjs.org/ +5199 silly mapToRegistry uri https://registry.npmjs.org/balanced-match +5200 verbose addNameRange registry:https://registry.npmjs.org/balanced-match not in flight; fetching +5201 verbose get https://registry.npmjs.org/balanced-match not expired, no request +5202 silly addNameRange number 2 { name: 'balanced-match', +5202 silly addNameRange range: '>=1.0.0 <2.0.0', +5202 silly addNameRange hasData: true } +5203 silly addNameRange versions [ 'balanced-match', +5203 silly addNameRange [ '0.0.0', +5203 silly addNameRange '0.0.1', +5203 silly addNameRange '0.1.0', +5203 silly addNameRange '0.2.0', +5203 silly addNameRange '0.2.1', +5203 silly addNameRange '0.3.0', +5203 silly addNameRange '0.4.0', +5203 silly addNameRange '0.4.1', +5203 silly addNameRange '0.4.2', +5203 silly addNameRange '1.0.0' ] ] +5204 silly addNamed balanced-match@1.0.0 +5205 verbose addNamed "1.0.0" is a plain semver version for balanced-match +5206 silly cache afterAdd balanced-match@1.0.0 +5207 verbose afterAdd /home/wso2/.npm/balanced-match/1.0.0/package/package.json not in flight; writing +5208 verbose afterAdd /home/wso2/.npm/balanced-match/1.0.0/package/package.json written +5209 http 304 https://registry.npmjs.org/concat-map +5210 verbose headers { date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5210 verbose headers via: '1.1 varnish', +5210 verbose headers 'cache-control': 'max-age=300', +5210 verbose headers etag: 'W/"52e9c1bb-f3a"', +5210 verbose headers age: '189', +5210 verbose headers connection: 'keep-alive', +5210 verbose headers 'x-served-by': 'cache-sin18032-SIN', +5210 verbose headers 'x-cache': 'HIT', +5210 verbose headers 'x-cache-hits': '7', +5210 verbose headers 'x-timer': 'S1506936837.137258,VS0,VE0', +5210 verbose headers vary: 'Accept-Encoding, Accept' } +5211 silly get cb [ 304, +5211 silly get { date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5211 silly get via: '1.1 varnish', +5211 silly get 'cache-control': 'max-age=300', +5211 silly get etag: 'W/"52e9c1bb-f3a"', +5211 silly get age: '189', +5211 silly get connection: 'keep-alive', +5211 silly get 'x-served-by': 'cache-sin18032-SIN', +5211 silly get 'x-cache': 'HIT', +5211 silly get 'x-cache-hits': '7', +5211 silly get 'x-timer': 'S1506936837.137258,VS0,VE0', +5211 silly get vary: 'Accept-Encoding, Accept' } ] +5212 verbose etag https://registry.npmjs.org/concat-map from cache +5213 verbose get saving concat-map to /home/wso2/.npm/registry.npmjs.org/concat-map/.cache.json +5214 silly resolveWithNewModule concat-map@0.0.1 checking installable status +5215 silly cache add args [ 'concat-map@0.0.1', null ] +5216 verbose cache add spec concat-map@0.0.1 +5217 silly cache add parsed spec Result { +5217 silly cache add raw: 'concat-map@0.0.1', +5217 silly cache add scope: null, +5217 silly cache add name: 'concat-map', +5217 silly cache add rawSpec: '0.0.1', +5217 silly cache add spec: '0.0.1', +5217 silly cache add type: 'version' } +5218 silly addNamed concat-map@0.0.1 +5219 verbose addNamed "0.0.1" is a plain semver version for concat-map +5220 silly mapToRegistry name concat-map +5221 silly mapToRegistry using default registry +5222 silly mapToRegistry registry https://registry.npmjs.org/ +5223 silly mapToRegistry uri https://registry.npmjs.org/concat-map +5224 verbose addNameVersion registry:https://registry.npmjs.org/concat-map not in flight; fetching +5225 verbose get https://registry.npmjs.org/concat-map not expired, no request +5226 silly cache afterAdd concat-map@0.0.1 +5227 verbose afterAdd /home/wso2/.npm/concat-map/0.0.1/package/package.json not in flight; writing +5228 verbose afterAdd /home/wso2/.npm/concat-map/0.0.1/package/package.json written +5229 silly fetchNamedPackageData core-js +5230 silly mapToRegistry name core-js +5231 silly mapToRegistry using default registry +5232 silly mapToRegistry registry https://registry.npmjs.org/ +5233 silly mapToRegistry uri https://registry.npmjs.org/core-js +5234 silly resolveWithNewModule core-js@2.5.1 checking installable status +5235 silly cache add args [ 'core-js@^2.5.0', null ] +5236 verbose cache add spec core-js@^2.5.0 +5237 silly fetchNamedPackageData regenerator-runtime +5238 silly mapToRegistry name regenerator-runtime +5239 silly mapToRegistry using default registry +5240 silly mapToRegistry registry https://registry.npmjs.org/ +5241 silly mapToRegistry uri https://registry.npmjs.org/regenerator-runtime +5242 silly resolveWithNewModule regenerator-runtime@0.10.5 checking installable status +5243 silly cache add args [ 'regenerator-runtime@^0.10.5', null ] +5244 verbose cache add spec regenerator-runtime@^0.10.5 +5245 silly cache add parsed spec Result { +5245 silly cache add raw: 'core-js@^2.5.0', +5245 silly cache add scope: null, +5245 silly cache add name: 'core-js', +5245 silly cache add rawSpec: '^2.5.0', +5245 silly cache add spec: '>=2.5.0 <3.0.0', +5245 silly cache add type: 'range' } +5246 silly addNamed core-js@>=2.5.0 <3.0.0 +5247 verbose addNamed ">=2.5.0 <3.0.0" is a valid semver range for core-js +5248 silly addNameRange { name: 'core-js', range: '>=2.5.0 <3.0.0', hasData: false } +5249 silly mapToRegistry name core-js +5250 silly mapToRegistry using default registry +5251 silly mapToRegistry registry https://registry.npmjs.org/ +5252 silly mapToRegistry uri https://registry.npmjs.org/core-js +5253 verbose addNameRange registry:https://registry.npmjs.org/core-js not in flight; fetching +5254 silly cache add parsed spec Result { +5254 silly cache add raw: 'regenerator-runtime@^0.10.5', +5254 silly cache add scope: null, +5254 silly cache add name: 'regenerator-runtime', +5254 silly cache add rawSpec: '^0.10.5', +5254 silly cache add spec: '>=0.10.5 <0.11.0', +5254 silly cache add type: 'range' } +5255 silly addNamed regenerator-runtime@>=0.10.5 <0.11.0 +5256 verbose addNamed ">=0.10.5 <0.11.0" is a valid semver range for regenerator-runtime +5257 silly addNameRange { name: 'regenerator-runtime', +5257 silly addNameRange range: '>=0.10.5 <0.11.0', +5257 silly addNameRange hasData: false } +5258 silly mapToRegistry name regenerator-runtime +5259 silly mapToRegistry using default registry +5260 silly mapToRegistry registry https://registry.npmjs.org/ +5261 silly mapToRegistry uri https://registry.npmjs.org/regenerator-runtime +5262 verbose addNameRange registry:https://registry.npmjs.org/regenerator-runtime not in flight; fetching +5263 verbose request uri https://registry.npmjs.org/regenerator-runtime +5264 verbose request no auth needed +5265 info attempt registry request try #1 at 3:03:57 PM +5266 verbose etag W/"59959305-3f9a" +5267 verbose lastModified Thu, 17 Aug 2017 12:58:45 GMT +5268 http request GET https://registry.npmjs.org/regenerator-runtime +5269 verbose get https://registry.npmjs.org/core-js not expired, no request +5270 silly addNameRange number 2 { name: 'core-js', range: '>=2.5.0 <3.0.0', hasData: true } +5271 silly addNameRange versions [ 'core-js', +5271 silly addNameRange [ '0.0.3', +5271 silly addNameRange '0.0.4', +5271 silly addNameRange '0.0.5', +5271 silly addNameRange '0.0.7', +5271 silly addNameRange '0.0.8', +5271 silly addNameRange '0.0.9', +5271 silly addNameRange '0.1.1', +5271 silly addNameRange '0.1.2', +5271 silly addNameRange '0.1.3', +5271 silly addNameRange '0.1.4', +5271 silly addNameRange '0.1.5', +5271 silly addNameRange '0.2.0', +5271 silly addNameRange '0.2.1', +5271 silly addNameRange '0.2.2', +5271 silly addNameRange '0.2.3', +5271 silly addNameRange '0.2.4', +5271 silly addNameRange '0.2.5', +5271 silly addNameRange '0.3.0', +5271 silly addNameRange '0.3.1', +5271 silly addNameRange '0.3.2', +5271 silly addNameRange '0.3.3', +5271 silly addNameRange '0.4.0', +5271 silly addNameRange '0.4.1', +5271 silly addNameRange '0.4.2', +5271 silly addNameRange '0.4.3', +5271 silly addNameRange '0.4.4', +5271 silly addNameRange '0.4.5', +5271 silly addNameRange '0.4.6', +5271 silly addNameRange '0.4.7', +5271 silly addNameRange '0.4.8', +5271 silly addNameRange '0.4.9', +5271 silly addNameRange '0.4.10', +5271 silly addNameRange '0.5.0', +5271 silly addNameRange '0.5.1', +5271 silly addNameRange '0.5.2', +5271 silly addNameRange '0.5.3', +5271 silly addNameRange '0.5.4', +5271 silly addNameRange '0.6.0', +5271 silly addNameRange '0.6.1', +5271 silly addNameRange '0.7.0', +5271 silly addNameRange '0.7.1', +5271 silly addNameRange '0.7.2', +5271 silly addNameRange '0.8.0', +5271 silly addNameRange '0.8.1', +5271 silly addNameRange '0.8.2', +5271 silly addNameRange '0.8.3', +5271 silly addNameRange '0.8.4', +5271 silly addNameRange '0.9.0', +5271 silly addNameRange '0.9.1', +5271 silly addNameRange '0.9.2', +5271 silly addNameRange '0.9.3', +5271 silly addNameRange '0.9.4', +5271 silly addNameRange '0.9.5', +5271 silly addNameRange '0.9.6', +5271 silly addNameRange '0.9.7', +5271 silly addNameRange '0.9.8', +5271 silly addNameRange '0.9.9', +5271 silly addNameRange '0.9.10', +5271 silly addNameRange '0.9.11', +5271 silly addNameRange '0.9.12', +5271 silly addNameRange '0.9.13', +5271 silly addNameRange '0.9.14', +5271 silly addNameRange '0.9.15', +5271 silly addNameRange '0.9.16', +5271 silly addNameRange '0.9.17', +5271 silly addNameRange '0.9.18', +5271 silly addNameRange '1.0.0', +5271 silly addNameRange '1.0.1', +5271 silly addNameRange '1.1.0', +5271 silly addNameRange '1.1.1', +5271 silly addNameRange '1.1.2', +5271 silly addNameRange '1.1.3', +5271 silly addNameRange '1.1.4', +5271 silly addNameRange '1.2.0', +5271 silly addNameRange '1.2.1', +5271 silly addNameRange '1.2.2', +5271 silly addNameRange '1.2.3', +5271 silly addNameRange '1.2.4', +5271 silly addNameRange '1.2.5', +5271 silly addNameRange '1.2.6', +5271 silly addNameRange '2.0.0-alpha', +5271 silly addNameRange '2.0.0-beta', +5271 silly addNameRange '2.0.0-beta.2', +5271 silly addNameRange '2.0.0', +5271 silly addNameRange '2.0.1', +5271 silly addNameRange '2.0.2', +5271 silly addNameRange '2.0.3', +5271 silly addNameRange '2.1.0', +5271 silly addNameRange '2.1.1', +5271 silly addNameRange '2.1.2', +5271 silly addNameRange '2.1.3', +5271 silly addNameRange '2.1.4', +5271 silly addNameRange '2.1.5', +5271 silly addNameRange '2.2.0', +5271 silly addNameRange '2.2.1', +5271 silly addNameRange '2.2.2', +5271 silly addNameRange '2.3.0', +5271 silly addNameRange '2.4.0', +5271 silly addNameRange '1.2.7', +5271 silly addNameRange '2.4.1', +5271 silly addNameRange '2.5.0', +5271 silly addNameRange '2.5.1' ] ] +5272 silly addNamed core-js@2.5.1 +5273 verbose addNamed "2.5.1" is a plain semver version for core-js +5274 silly cache afterAdd core-js@2.5.1 +5275 verbose afterAdd /home/wso2/.npm/core-js/2.5.1/package/package.json not in flight; writing +5276 verbose afterAdd /home/wso2/.npm/core-js/2.5.1/package/package.json written +5277 http 304 https://registry.npmjs.org/regenerator-runtime +5278 verbose headers { date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5278 verbose headers via: '1.1 varnish', +5278 verbose headers 'cache-control': 'max-age=300', +5278 verbose headers etag: 'W/"59959305-3f9a"', +5278 verbose headers age: '242', +5278 verbose headers connection: 'keep-alive', +5278 verbose headers 'x-served-by': 'cache-sin18029-SIN', +5278 verbose headers 'x-cache': 'HIT', +5278 verbose headers 'x-cache-hits': '3', +5278 verbose headers 'x-timer': 'S1506936837.383103,VS0,VE0', +5278 verbose headers vary: 'Accept-Encoding, Accept' } +5279 silly get cb [ 304, +5279 silly get { date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5279 silly get via: '1.1 varnish', +5279 silly get 'cache-control': 'max-age=300', +5279 silly get etag: 'W/"59959305-3f9a"', +5279 silly get age: '242', +5279 silly get connection: 'keep-alive', +5279 silly get 'x-served-by': 'cache-sin18029-SIN', +5279 silly get 'x-cache': 'HIT', +5279 silly get 'x-cache-hits': '3', +5279 silly get 'x-timer': 'S1506936837.383103,VS0,VE0', +5279 silly get vary: 'Accept-Encoding, Accept' } ] +5280 verbose etag https://registry.npmjs.org/regenerator-runtime from cache +5281 verbose get saving regenerator-runtime to /home/wso2/.npm/registry.npmjs.org/regenerator-runtime/.cache.json +5282 silly addNameRange number 2 { name: 'regenerator-runtime', +5282 silly addNameRange range: '>=0.10.5 <0.11.0', +5282 silly addNameRange hasData: true } +5283 silly addNameRange versions [ 'regenerator-runtime', +5283 silly addNameRange [ '0.9.0', +5283 silly addNameRange '0.9.1', +5283 silly addNameRange '0.9.2', +5283 silly addNameRange '0.9.3', +5283 silly addNameRange '0.9.4', +5283 silly addNameRange '0.9.5', +5283 silly addNameRange '0.9.6', +5283 silly addNameRange '0.10.0', +5283 silly addNameRange '0.10.1', +5283 silly addNameRange '0.10.2', +5283 silly addNameRange '0.10.3', +5283 silly addNameRange '0.10.4', +5283 silly addNameRange '0.10.5', +5283 silly addNameRange '0.11.0' ] ] +5284 silly addNamed regenerator-runtime@0.10.5 +5285 verbose addNamed "0.10.5" is a plain semver version for regenerator-runtime +5286 silly cache afterAdd regenerator-runtime@0.10.5 +5287 verbose afterAdd /home/wso2/.npm/regenerator-runtime/0.10.5/package/package.json not in flight; writing +5288 verbose afterAdd /home/wso2/.npm/regenerator-runtime/0.10.5/package/package.json written +5289 silly fetchNamedPackageData hoist-non-react-statics +5290 silly mapToRegistry name hoist-non-react-statics +5291 silly mapToRegistry using default registry +5292 silly mapToRegistry registry https://registry.npmjs.org/ +5293 silly mapToRegistry uri https://registry.npmjs.org/hoist-non-react-statics +5294 silly fetchNamedPackageData object-unfreeze +5295 silly mapToRegistry name object-unfreeze +5296 silly mapToRegistry using default registry +5297 silly mapToRegistry registry https://registry.npmjs.org/ +5298 silly mapToRegistry uri https://registry.npmjs.org/object-unfreeze +5299 verbose request uri https://registry.npmjs.org/object-unfreeze +5300 verbose request no auth needed +5301 info attempt registry request try #1 at 3:03:57 PM +5302 verbose etag W/"58a7905f-1eda" +5303 verbose lastModified Sat, 18 Feb 2017 00:07:59 GMT +5304 http request GET https://registry.npmjs.org/object-unfreeze +5305 http 304 https://registry.npmjs.org/object-unfreeze +5306 verbose headers { date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5306 verbose headers via: '1.1 varnish', +5306 verbose headers 'cache-control': 'max-age=300', +5306 verbose headers etag: 'W/"58a7905f-1eda"', +5306 verbose headers age: '0', +5306 verbose headers connection: 'keep-alive', +5306 verbose headers 'x-served-by': 'cache-sin18022-SIN', +5306 verbose headers 'x-cache': 'MISS', +5306 verbose headers 'x-cache-hits': '0', +5306 verbose headers 'x-timer': 'S1506936838.603799,VS0,VE167', +5306 verbose headers vary: 'Accept-Encoding, Accept' } +5307 silly get cb [ 304, +5307 silly get { date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5307 silly get via: '1.1 varnish', +5307 silly get 'cache-control': 'max-age=300', +5307 silly get etag: 'W/"58a7905f-1eda"', +5307 silly get age: '0', +5307 silly get connection: 'keep-alive', +5307 silly get 'x-served-by': 'cache-sin18022-SIN', +5307 silly get 'x-cache': 'MISS', +5307 silly get 'x-cache-hits': '0', +5307 silly get 'x-timer': 'S1506936838.603799,VS0,VE167', +5307 silly get vary: 'Accept-Encoding, Accept' } ] +5308 verbose etag https://registry.npmjs.org/object-unfreeze from cache +5309 verbose get saving object-unfreeze to /home/wso2/.npm/registry.npmjs.org/object-unfreeze/.cache.json +5310 silly resolveWithNewModule object-unfreeze@1.1.0 checking installable status +5311 silly cache add args [ 'object-unfreeze@^1.1.0', null ] +5312 verbose cache add spec object-unfreeze@^1.1.0 +5313 silly cache add parsed spec Result { +5313 silly cache add raw: 'object-unfreeze@^1.1.0', +5313 silly cache add scope: null, +5313 silly cache add name: 'object-unfreeze', +5313 silly cache add rawSpec: '^1.1.0', +5313 silly cache add spec: '>=1.1.0 <2.0.0', +5313 silly cache add type: 'range' } +5314 silly addNamed object-unfreeze@>=1.1.0 <2.0.0 +5315 verbose addNamed ">=1.1.0 <2.0.0" is a valid semver range for object-unfreeze +5316 silly addNameRange { name: 'object-unfreeze', +5316 silly addNameRange range: '>=1.1.0 <2.0.0', +5316 silly addNameRange hasData: false } +5317 silly mapToRegistry name object-unfreeze +5318 silly mapToRegistry using default registry +5319 silly mapToRegistry registry https://registry.npmjs.org/ +5320 silly mapToRegistry uri https://registry.npmjs.org/object-unfreeze +5321 verbose addNameRange registry:https://registry.npmjs.org/object-unfreeze not in flight; fetching +5322 verbose get https://registry.npmjs.org/object-unfreeze not expired, no request +5323 silly addNameRange number 2 { name: 'object-unfreeze', +5323 silly addNameRange range: '>=1.1.0 <2.0.0', +5323 silly addNameRange hasData: true } +5324 silly addNameRange versions [ 'object-unfreeze', [ '1.0.0', '1.0.1', '1.0.2', '1.1.0' ] ] +5325 silly addNamed object-unfreeze@1.1.0 +5326 verbose addNamed "1.1.0" is a plain semver version for object-unfreeze +5327 silly cache afterAdd object-unfreeze@1.1.0 +5328 verbose afterAdd /home/wso2/.npm/object-unfreeze/1.1.0/package/package.json not in flight; writing +5329 verbose afterAdd /home/wso2/.npm/object-unfreeze/1.1.0/package/package.json written +5330 silly fetchNamedPackageData global +5331 silly mapToRegistry name global +5332 silly mapToRegistry using default registry +5333 silly mapToRegistry registry https://registry.npmjs.org/ +5334 silly mapToRegistry uri https://registry.npmjs.org/global +5335 silly fetchNamedPackageData react-deep-force-update +5336 silly mapToRegistry name react-deep-force-update +5337 silly mapToRegistry using default registry +5338 silly mapToRegistry registry https://registry.npmjs.org/ +5339 silly mapToRegistry uri https://registry.npmjs.org/react-deep-force-update +5340 silly fetchNamedPackageData react-proxy +5341 silly mapToRegistry name react-proxy +5342 silly mapToRegistry using default registry +5343 silly mapToRegistry registry https://registry.npmjs.org/ +5344 silly mapToRegistry uri https://registry.npmjs.org/react-proxy +5345 silly fetchNamedPackageData redbox-react +5346 silly mapToRegistry name redbox-react +5347 silly mapToRegistry using default registry +5348 silly mapToRegistry registry https://registry.npmjs.org/ +5349 silly mapToRegistry uri https://registry.npmjs.org/redbox-react +5350 silly fetchNamedPackageData source-map +5351 silly mapToRegistry name source-map +5352 silly mapToRegistry using default registry +5353 silly mapToRegistry registry https://registry.npmjs.org/ +5354 silly mapToRegistry uri https://registry.npmjs.org/source-map +5355 silly resolveWithNewModule source-map@0.4.4 checking installable status +5356 silly cache add args [ 'source-map@^0.4.4', null ] +5357 verbose cache add spec source-map@^0.4.4 +5358 silly cache add parsed spec Result { +5358 silly cache add raw: 'source-map@^0.4.4', +5358 silly cache add scope: null, +5358 silly cache add name: 'source-map', +5358 silly cache add rawSpec: '^0.4.4', +5358 silly cache add spec: '>=0.4.4 <0.5.0', +5358 silly cache add type: 'range' } +5359 silly addNamed source-map@>=0.4.4 <0.5.0 +5360 verbose addNamed ">=0.4.4 <0.5.0" is a valid semver range for source-map +5361 silly addNameRange { name: 'source-map', range: '>=0.4.4 <0.5.0', hasData: false } +5362 silly mapToRegistry name source-map +5363 silly mapToRegistry using default registry +5364 silly mapToRegistry registry https://registry.npmjs.org/ +5365 silly mapToRegistry uri https://registry.npmjs.org/source-map +5366 verbose addNameRange registry:https://registry.npmjs.org/source-map not in flight; fetching +5367 verbose request uri https://registry.npmjs.org/global +5368 verbose request no auth needed +5369 info attempt registry request try #1 at 3:03:57 PM +5370 verbose etag W/"59488294-7377" +5371 verbose lastModified Tue, 20 Jun 2017 02:04:04 GMT +5372 http request GET https://registry.npmjs.org/global +5373 verbose request uri https://registry.npmjs.org/react-deep-force-update +5374 verbose request no auth needed +5375 info attempt registry request try #1 at 3:03:57 PM +5376 verbose etag W/"599d70fc-3f20" +5377 verbose lastModified Wed, 23 Aug 2017 12:11:40 GMT +5378 http request GET https://registry.npmjs.org/react-deep-force-update +5379 verbose get https://registry.npmjs.org/source-map not expired, no request +5380 silly addNameRange number 2 { name: 'source-map', range: '>=0.4.4 <0.5.0', hasData: true } +5381 silly addNameRange versions [ 'source-map', +5381 silly addNameRange [ '0.0.0', +5381 silly addNameRange '0.1.0', +5381 silly addNameRange '0.1.1', +5381 silly addNameRange '0.1.2', +5381 silly addNameRange '0.1.3', +5381 silly addNameRange '0.1.4', +5381 silly addNameRange '0.1.5', +5381 silly addNameRange '0.1.6', +5381 silly addNameRange '0.1.7', +5381 silly addNameRange '0.1.8', +5381 silly addNameRange '0.1.9', +5381 silly addNameRange '0.1.10', +5381 silly addNameRange '0.1.11', +5381 silly addNameRange '0.1.12', +5381 silly addNameRange '0.1.13', +5381 silly addNameRange '0.1.14', +5381 silly addNameRange '0.1.15', +5381 silly addNameRange '0.1.16', +5381 silly addNameRange '0.1.17', +5381 silly addNameRange '0.1.18', +5381 silly addNameRange '0.1.19', +5381 silly addNameRange '0.1.20', +5381 silly addNameRange '0.1.21', +5381 silly addNameRange '0.1.22', +5381 silly addNameRange '0.1.23', +5381 silly addNameRange '0.1.24', +5381 silly addNameRange '0.1.25', +5381 silly addNameRange '0.1.26', +5381 silly addNameRange '0.1.27', +5381 silly addNameRange '0.1.28', +5381 silly addNameRange '0.1.29', +5381 silly addNameRange '0.1.30', +5381 silly addNameRange '0.1.31', +5381 silly addNameRange '0.1.32', +5381 silly addNameRange '0.1.33', +5381 silly addNameRange '0.1.34', +5381 silly addNameRange '0.1.35', +5381 silly addNameRange '0.1.36', +5381 silly addNameRange '0.1.37', +5381 silly addNameRange '0.1.38', +5381 silly addNameRange '0.1.39', +5381 silly addNameRange '0.1.40', +5381 silly addNameRange '0.1.41', +5381 silly addNameRange '0.1.42', +5381 silly addNameRange '0.1.43', +5381 silly addNameRange '0.2.0', +5381 silly addNameRange '0.3.0', +5381 silly addNameRange '0.4.0', +5381 silly addNameRange '0.4.1', +5381 silly addNameRange '0.4.2', +5381 silly addNameRange '0.4.3', +5381 silly addNameRange '0.4.4', +5381 silly addNameRange '0.5.0', +5381 silly addNameRange '0.5.1', +5381 silly addNameRange '0.5.2', +5381 silly addNameRange '0.5.3', +5381 silly addNameRange '0.5.4', +5381 silly addNameRange '0.5.5', +5381 silly addNameRange '0.5.6', +5381 silly addNameRange '0.5.7', +5381 silly addNameRange '0.6.0', +5381 silly addNameRange '0.6.1' ] ] +5382 silly addNamed source-map@0.4.4 +5383 verbose addNamed "0.4.4" is a plain semver version for source-map +5384 verbose request uri https://registry.npmjs.org/redbox-react +5385 verbose request no auth needed +5386 info attempt registry request try #1 at 3:03:57 PM +5387 verbose etag W/"5980e563-1348d" +5388 verbose lastModified Tue, 01 Aug 2017 20:32:35 GMT +5389 http request GET https://registry.npmjs.org/redbox-react +5390 verbose request uri https://registry.npmjs.org/react-proxy +5391 verbose request no auth needed +5392 info attempt registry request try #1 at 3:03:57 PM +5393 verbose etag W/"599d1d4c-12946" +5394 verbose lastModified Wed, 23 Aug 2017 06:14:36 GMT +5395 http request GET https://registry.npmjs.org/react-proxy +5396 silly cache afterAdd source-map@0.4.4 +5397 verbose afterAdd /home/wso2/.npm/source-map/0.4.4/package/package.json not in flight; writing +5398 verbose afterAdd /home/wso2/.npm/source-map/0.4.4/package/package.json written +5399 http 304 https://registry.npmjs.org/react-proxy +5400 verbose headers { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5400 verbose headers via: '1.1 varnish', +5400 verbose headers 'cache-control': 'max-age=300', +5400 verbose headers etag: 'W/"599d1d4c-12946"', +5400 verbose headers age: '78', +5400 verbose headers connection: 'keep-alive', +5400 verbose headers 'x-served-by': 'cache-sin18020-SIN', +5400 verbose headers 'x-cache': 'HIT', +5400 verbose headers 'x-cache-hits': '2', +5400 verbose headers 'x-timer': 'S1506936838.008125,VS0,VE0', +5400 verbose headers vary: 'Accept-Encoding, Accept' } +5401 silly get cb [ 304, +5401 silly get { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5401 silly get via: '1.1 varnish', +5401 silly get 'cache-control': 'max-age=300', +5401 silly get etag: 'W/"599d1d4c-12946"', +5401 silly get age: '78', +5401 silly get connection: 'keep-alive', +5401 silly get 'x-served-by': 'cache-sin18020-SIN', +5401 silly get 'x-cache': 'HIT', +5401 silly get 'x-cache-hits': '2', +5401 silly get 'x-timer': 'S1506936838.008125,VS0,VE0', +5401 silly get vary: 'Accept-Encoding, Accept' } ] +5402 verbose etag https://registry.npmjs.org/react-proxy from cache +5403 verbose get saving react-proxy to /home/wso2/.npm/registry.npmjs.org/react-proxy/.cache.json +5404 http 200 https://registry.npmjs.org/react-deep-force-update +5405 verbose headers { server: 'nginx/1.10.3', +5405 verbose headers 'content-type': 'application/json', +5405 verbose headers 'last-modified': 'Wed, 20 Sep 2017 15:28:12 GMT', +5405 verbose headers etag: 'W/"59c2890c-3f52"', +5405 verbose headers 'content-encoding': 'gzip', +5405 verbose headers 'cache-control': 'max-age=300', +5405 verbose headers 'content-length': '2775', +5405 verbose headers 'accept-ranges': 'bytes', +5405 verbose headers date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5405 verbose headers via: '1.1 varnish', +5405 verbose headers age: '78', +5405 verbose headers connection: 'keep-alive', +5405 verbose headers 'x-served-by': 'cache-sin18022-SIN', +5405 verbose headers 'x-cache': 'HIT', +5405 verbose headers 'x-cache-hits': '1', +5405 verbose headers 'x-timer': 'S1506936838.993204,VS0,VE0', +5405 verbose headers vary: 'Accept-Encoding, Accept' } +5406 silly get cb [ 200, +5406 silly get { server: 'nginx/1.10.3', +5406 silly get 'content-type': 'application/json', +5406 silly get 'last-modified': 'Wed, 20 Sep 2017 15:28:12 GMT', +5406 silly get etag: 'W/"59c2890c-3f52"', +5406 silly get 'content-encoding': 'gzip', +5406 silly get 'cache-control': 'max-age=300', +5406 silly get 'content-length': '2775', +5406 silly get 'accept-ranges': 'bytes', +5406 silly get date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5406 silly get via: '1.1 varnish', +5406 silly get age: '78', +5406 silly get connection: 'keep-alive', +5406 silly get 'x-served-by': 'cache-sin18022-SIN', +5406 silly get 'x-cache': 'HIT', +5406 silly get 'x-cache-hits': '1', +5406 silly get 'x-timer': 'S1506936838.993204,VS0,VE0', +5406 silly get vary: 'Accept-Encoding, Accept' } ] +5407 verbose get saving react-deep-force-update to /home/wso2/.npm/registry.npmjs.org/react-deep-force-update/.cache.json +5408 http 200 https://registry.npmjs.org/global +5409 verbose headers { server: 'nginx/1.10.3', +5409 verbose headers 'content-type': 'application/json', +5409 verbose headers 'last-modified': 'Thu, 28 Sep 2017 07:00:25 GMT', +5409 verbose headers etag: 'W/"59cc9e09-7389"', +5409 verbose headers 'content-encoding': 'gzip', +5409 verbose headers 'cache-control': 'max-age=300', +5409 verbose headers 'content-length': '3119', +5409 verbose headers 'accept-ranges': 'bytes', +5409 verbose headers date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5409 verbose headers via: '1.1 varnish', +5409 verbose headers age: '128', +5409 verbose headers connection: 'keep-alive', +5409 verbose headers 'x-served-by': 'cache-sin18020-SIN', +5409 verbose headers 'x-cache': 'HIT', +5409 verbose headers 'x-cache-hits': '1', +5409 verbose headers 'x-timer': 'S1506936838.005827,VS0,VE0', +5409 verbose headers vary: 'Accept-Encoding, Accept' } +5410 silly get cb [ 200, +5410 silly get { server: 'nginx/1.10.3', +5410 silly get 'content-type': 'application/json', +5410 silly get 'last-modified': 'Thu, 28 Sep 2017 07:00:25 GMT', +5410 silly get etag: 'W/"59cc9e09-7389"', +5410 silly get 'content-encoding': 'gzip', +5410 silly get 'cache-control': 'max-age=300', +5410 silly get 'content-length': '3119', +5410 silly get 'accept-ranges': 'bytes', +5410 silly get date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5410 silly get via: '1.1 varnish', +5410 silly get age: '128', +5410 silly get connection: 'keep-alive', +5410 silly get 'x-served-by': 'cache-sin18020-SIN', +5410 silly get 'x-cache': 'HIT', +5410 silly get 'x-cache-hits': '1', +5410 silly get 'x-timer': 'S1506936838.005827,VS0,VE0', +5410 silly get vary: 'Accept-Encoding, Accept' } ] +5411 verbose get saving global to /home/wso2/.npm/registry.npmjs.org/global/.cache.json +5412 http 200 https://registry.npmjs.org/redbox-react +5413 verbose headers { server: 'nginx/1.10.3', +5413 verbose headers 'content-type': 'application/json', +5413 verbose headers 'last-modified': 'Tue, 12 Sep 2017 15:38:14 GMT', +5413 verbose headers etag: 'W/"59b7ff66-134b9"', +5413 verbose headers 'content-encoding': 'gzip', +5413 verbose headers 'cache-control': 'max-age=300', +5413 verbose headers 'content-length': '8359', +5413 verbose headers 'accept-ranges': 'bytes', +5413 verbose headers date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5413 verbose headers via: '1.1 varnish', +5413 verbose headers age: '200', +5413 verbose headers connection: 'keep-alive', +5413 verbose headers 'x-served-by': 'cache-sin18027-SIN', +5413 verbose headers 'x-cache': 'HIT', +5413 verbose headers 'x-cache-hits': '1', +5413 verbose headers 'x-timer': 'S1506936838.993823,VS0,VE0', +5413 verbose headers vary: 'Accept-Encoding, Accept' } +5414 silly get cb [ 200, +5414 silly get { server: 'nginx/1.10.3', +5414 silly get 'content-type': 'application/json', +5414 silly get 'last-modified': 'Tue, 12 Sep 2017 15:38:14 GMT', +5414 silly get etag: 'W/"59b7ff66-134b9"', +5414 silly get 'content-encoding': 'gzip', +5414 silly get 'cache-control': 'max-age=300', +5414 silly get 'content-length': '8359', +5414 silly get 'accept-ranges': 'bytes', +5414 silly get date: 'Mon, 02 Oct 2017 09:33:57 GMT', +5414 silly get via: '1.1 varnish', +5414 silly get age: '200', +5414 silly get connection: 'keep-alive', +5414 silly get 'x-served-by': 'cache-sin18027-SIN', +5414 silly get 'x-cache': 'HIT', +5414 silly get 'x-cache-hits': '1', +5414 silly get 'x-timer': 'S1506936838.993823,VS0,VE0', +5414 silly get vary: 'Accept-Encoding, Accept' } ] +5415 verbose get saving redbox-react to /home/wso2/.npm/registry.npmjs.org/redbox-react/.cache.json +5416 silly resolveWithNewModule react-proxy@3.0.0-alpha.1 checking installable status +5417 silly cache add args [ 'react-proxy@^3.0.0-alpha.0', null ] +5418 verbose cache add spec react-proxy@^3.0.0-alpha.0 +5419 silly cache add parsed spec Result { +5419 silly cache add raw: 'react-proxy@^3.0.0-alpha.0', +5419 silly cache add scope: null, +5419 silly cache add name: 'react-proxy', +5419 silly cache add rawSpec: '^3.0.0-alpha.0', +5419 silly cache add spec: '>=3.0.0-alpha.0 <4.0.0', +5419 silly cache add type: 'range' } +5420 silly addNamed react-proxy@>=3.0.0-alpha.0 <4.0.0 +5421 verbose addNamed ">=3.0.0-alpha.0 <4.0.0" is a valid semver range for react-proxy +5422 silly addNameRange { name: 'react-proxy', +5422 silly addNameRange range: '>=3.0.0-alpha.0 <4.0.0', +5422 silly addNameRange hasData: false } +5423 silly mapToRegistry name react-proxy +5424 silly mapToRegistry using default registry +5425 silly mapToRegistry registry https://registry.npmjs.org/ +5426 silly mapToRegistry uri https://registry.npmjs.org/react-proxy +5427 verbose addNameRange registry:https://registry.npmjs.org/react-proxy not in flight; fetching +5428 silly resolveWithNewModule react-deep-force-update@2.1.1 checking installable status +5429 silly cache add args [ 'react-deep-force-update@^2.0.1', null ] +5430 verbose cache add spec react-deep-force-update@^2.0.1 +5431 silly cache add parsed spec Result { +5431 silly cache add raw: 'react-deep-force-update@^2.0.1', +5431 silly cache add scope: null, +5431 silly cache add name: 'react-deep-force-update', +5431 silly cache add rawSpec: '^2.0.1', +5431 silly cache add spec: '>=2.0.1 <3.0.0', +5431 silly cache add type: 'range' } +5432 silly addNamed react-deep-force-update@>=2.0.1 <3.0.0 +5433 verbose addNamed ">=2.0.1 <3.0.0" is a valid semver range for react-deep-force-update +5434 silly addNameRange { name: 'react-deep-force-update', +5434 silly addNameRange range: '>=2.0.1 <3.0.0', +5434 silly addNameRange hasData: false } +5435 silly mapToRegistry name react-deep-force-update +5436 silly mapToRegistry using default registry +5437 silly mapToRegistry registry https://registry.npmjs.org/ +5438 silly mapToRegistry uri https://registry.npmjs.org/react-deep-force-update +5439 verbose addNameRange registry:https://registry.npmjs.org/react-deep-force-update not in flight; fetching +5440 silly resolveWithNewModule global@4.3.2 checking installable status +5441 silly cache add args [ 'global@^4.3.0', null ] +5442 verbose cache add spec global@^4.3.0 +5443 silly cache add parsed spec Result { +5443 silly cache add raw: 'global@^4.3.0', +5443 silly cache add scope: null, +5443 silly cache add name: 'global', +5443 silly cache add rawSpec: '^4.3.0', +5443 silly cache add spec: '>=4.3.0 <5.0.0', +5443 silly cache add type: 'range' } +5444 silly addNamed global@>=4.3.0 <5.0.0 +5445 verbose addNamed ">=4.3.0 <5.0.0" is a valid semver range for global +5446 silly addNameRange { name: 'global', range: '>=4.3.0 <5.0.0', hasData: false } +5447 silly mapToRegistry name global +5448 silly mapToRegistry using default registry +5449 silly mapToRegistry registry https://registry.npmjs.org/ +5450 silly mapToRegistry uri https://registry.npmjs.org/global +5451 verbose addNameRange registry:https://registry.npmjs.org/global not in flight; fetching +5452 verbose get https://registry.npmjs.org/react-proxy not expired, no request +5453 silly addNameRange number 2 { name: 'react-proxy', +5453 silly addNameRange range: '>=3.0.0-alpha.0 <4.0.0', +5453 silly addNameRange hasData: true } +5454 silly addNameRange versions [ 'react-proxy', +5454 silly addNameRange [ '0.3.0', +5454 silly addNameRange '0.4.0', +5454 silly addNameRange '0.5.0', +5454 silly addNameRange '0.6.0', +5454 silly addNameRange '0.6.1', +5454 silly addNameRange '0.6.2', +5454 silly addNameRange '0.6.3', +5454 silly addNameRange '0.6.4', +5454 silly addNameRange '0.6.5', +5454 silly addNameRange '0.6.6', +5454 silly addNameRange '0.6.7', +5454 silly addNameRange '1.0.0', +5454 silly addNameRange '1.1.0', +5454 silly addNameRange '1.1.1', +5454 silly addNameRange '2.0.0', +5454 silly addNameRange '2.0.1', +5454 silly addNameRange '1.1.2', +5454 silly addNameRange '1.1.3', +5454 silly addNameRange '2.0.2', +5454 silly addNameRange '1.1.4', +5454 silly addNameRange '2.0.3', +5454 silly addNameRange '1.1.5', +5454 silly addNameRange '2.0.5', +5454 silly addNameRange '1.1.6', +5454 silly addNameRange '2.0.6', +5454 silly addNameRange '1.1.7', +5454 silly addNameRange '2.0.7', +5454 silly addNameRange '1.1.8', +5454 silly addNameRange '2.0.8', +5454 silly addNameRange '3.0.0-alpha.0', +5454 silly addNameRange '3.0.0-alpha.1' ] ] +5455 silly addNamed react-proxy@3.0.0-alpha.1 +5456 verbose addNamed "3.0.0-alpha.1" is a plain semver version for react-proxy +5457 verbose get https://registry.npmjs.org/global not expired, no request +5458 silly addNameRange number 2 { name: 'global', range: '>=4.3.0 <5.0.0', hasData: true } +5459 silly addNameRange versions [ 'global', +5459 silly addNameRange [ '1.0.0', +5459 silly addNameRange '0.1.5', +5459 silly addNameRange '2.0.1', +5459 silly addNameRange '2.0.2', +5459 silly addNameRange '2.0.3', +5459 silly addNameRange '2.0.4', +5459 silly addNameRange '2.0.5', +5459 silly addNameRange '2.0.6', +5459 silly addNameRange '2.0.7', +5459 silly addNameRange '3.0.0', +5459 silly addNameRange '3.0.1', +5459 silly addNameRange '3.0.2', +5459 silly addNameRange '4.0.0', +5459 silly addNameRange '4.0.1', +5459 silly addNameRange '4.1.0', +5459 silly addNameRange '4.2.0', +5459 silly addNameRange '4.2.1', +5459 silly addNameRange '4.3.0', +5459 silly addNameRange '4.3.1', +5459 silly addNameRange '4.3.2' ] ] +5460 silly addNamed global@4.3.2 +5461 verbose addNamed "4.3.2" is a plain semver version for global +5462 verbose get https://registry.npmjs.org/react-deep-force-update not expired, no request +5463 silly addNameRange number 2 { name: 'react-deep-force-update', +5463 silly addNameRange range: '>=2.0.1 <3.0.0', +5463 silly addNameRange hasData: true } +5464 silly addNameRange versions [ 'react-deep-force-update', +5464 silly addNameRange [ '1.0.0', +5464 silly addNameRange '2.0.0', +5464 silly addNameRange '2.0.1', +5464 silly addNameRange '1.0.1', +5464 silly addNameRange '1.1.0', +5464 silly addNameRange '2.1.0', +5464 silly addNameRange '2.1.1', +5464 silly addNameRange '1.1.1' ] ] +5465 silly addNamed react-deep-force-update@2.1.1 +5466 verbose addNamed "2.1.1" is a plain semver version for react-deep-force-update +5467 silly resolveWithNewModule redbox-react@1.5.0 checking installable status +5468 silly cache add args [ 'redbox-react@^1.3.6', null ] +5469 verbose cache add spec redbox-react@^1.3.6 +5470 silly cache add parsed spec Result { +5470 silly cache add raw: 'redbox-react@^1.3.6', +5470 silly cache add scope: null, +5470 silly cache add name: 'redbox-react', +5470 silly cache add rawSpec: '^1.3.6', +5470 silly cache add spec: '>=1.3.6 <2.0.0', +5470 silly cache add type: 'range' } +5471 silly addNamed redbox-react@>=1.3.6 <2.0.0 +5472 verbose addNamed ">=1.3.6 <2.0.0" is a valid semver range for redbox-react +5473 silly addNameRange { name: 'redbox-react', range: '>=1.3.6 <2.0.0', hasData: false } +5474 silly mapToRegistry name redbox-react +5475 silly mapToRegistry using default registry +5476 silly mapToRegistry registry https://registry.npmjs.org/ +5477 silly mapToRegistry uri https://registry.npmjs.org/redbox-react +5478 verbose addNameRange registry:https://registry.npmjs.org/redbox-react not in flight; fetching +5479 verbose get https://registry.npmjs.org/redbox-react not expired, no request +5480 silly addNameRange number 2 { name: 'redbox-react', range: '>=1.3.6 <2.0.0', hasData: true } +5481 silly addNameRange versions [ 'redbox-react', +5481 silly addNameRange [ '1.0.0', +5481 silly addNameRange '1.0.1', +5481 silly addNameRange '1.0.2', +5481 silly addNameRange '1.0.3', +5481 silly addNameRange '1.0.4', +5481 silly addNameRange '1.0.5', +5481 silly addNameRange '1.0.6', +5481 silly addNameRange '1.1.0', +5481 silly addNameRange '1.1.1', +5481 silly addNameRange '1.2.0', +5481 silly addNameRange '1.2.1', +5481 silly addNameRange '1.2.2', +5481 silly addNameRange '1.2.3', +5481 silly addNameRange '1.2.4', +5481 silly addNameRange '1.2.5', +5481 silly addNameRange '1.2.6', +5481 silly addNameRange '1.2.7', +5481 silly addNameRange '1.2.8', +5481 silly addNameRange '1.2.9', +5481 silly addNameRange '1.2.10', +5481 silly addNameRange '1.3.0', +5481 silly addNameRange '1.3.1', +5481 silly addNameRange '1.3.2', +5481 silly addNameRange '1.3.3', +5481 silly addNameRange '1.3.4', +5481 silly addNameRange '1.3.5', +5481 silly addNameRange '1.3.6', +5481 silly addNameRange '1.3.7', +5481 silly addNameRange '1.4.0', +5481 silly addNameRange '1.4.1', +5481 silly addNameRange '1.4.2', +5481 silly addNameRange '1.4.3', +5481 silly addNameRange '1.5.0' ] ] +5482 silly addNamed redbox-react@1.5.0 +5483 verbose addNamed "1.5.0" is a plain semver version for redbox-react +5484 silly cache afterAdd react-proxy@3.0.0-alpha.1 +5485 verbose afterAdd /home/wso2/.npm/react-proxy/3.0.0-alpha.1/package/package.json not in flight; writing +5486 silly cache afterAdd global@4.3.2 +5487 verbose afterAdd /home/wso2/.npm/global/4.3.2/package/package.json not in flight; writing +5488 silly cache afterAdd react-deep-force-update@2.1.1 +5489 verbose afterAdd /home/wso2/.npm/react-deep-force-update/2.1.1/package/package.json not in flight; writing +5490 silly cache afterAdd redbox-react@1.5.0 +5491 verbose afterAdd /home/wso2/.npm/redbox-react/1.5.0/package/package.json not in flight; writing +5492 verbose afterAdd /home/wso2/.npm/react-proxy/3.0.0-alpha.1/package/package.json written +5493 verbose afterAdd /home/wso2/.npm/global/4.3.2/package/package.json written +5494 verbose afterAdd /home/wso2/.npm/react-deep-force-update/2.1.1/package/package.json written +5495 verbose afterAdd /home/wso2/.npm/redbox-react/1.5.0/package/package.json written +5496 silly fetchNamedPackageData min-document +5497 silly mapToRegistry name min-document +5498 silly mapToRegistry using default registry +5499 silly mapToRegistry registry https://registry.npmjs.org/ +5500 silly mapToRegistry uri https://registry.npmjs.org/min-document +5501 silly fetchNamedPackageData process +5502 silly mapToRegistry name process +5503 silly mapToRegistry using default registry +5504 silly mapToRegistry registry https://registry.npmjs.org/ +5505 silly mapToRegistry uri https://registry.npmjs.org/process +5506 verbose request uri https://registry.npmjs.org/min-document +5507 verbose request no auth needed +5508 info attempt registry request try #1 at 3:03:58 PM +5509 verbose etag W/"593a0cf3-f02f" +5510 verbose lastModified Fri, 09 Jun 2017 02:50:27 GMT +5511 http request GET https://registry.npmjs.org/min-document +5512 verbose request uri https://registry.npmjs.org/process +5513 verbose request no auth needed +5514 info attempt registry request try #1 at 3:03:58 PM +5515 verbose etag W/"59705a9f-61d9" +5516 verbose lastModified Thu, 20 Jul 2017 07:24:15 GMT +5517 http request GET https://registry.npmjs.org/process +5518 http 304 https://registry.npmjs.org/min-document +5519 verbose headers { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5519 verbose headers via: '1.1 varnish', +5519 verbose headers 'cache-control': 'max-age=300', +5519 verbose headers etag: 'W/"593a0cf3-f02f"', +5519 verbose headers age: '120', +5519 verbose headers connection: 'keep-alive', +5519 verbose headers 'x-served-by': 'cache-sin18031-SIN', +5519 verbose headers 'x-cache': 'HIT', +5519 verbose headers 'x-cache-hits': '2', +5519 verbose headers 'x-timer': 'S1506936839.535178,VS0,VE0', +5519 verbose headers vary: 'Accept-Encoding, Accept' } +5520 silly get cb [ 304, +5520 silly get { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5520 silly get via: '1.1 varnish', +5520 silly get 'cache-control': 'max-age=300', +5520 silly get etag: 'W/"593a0cf3-f02f"', +5520 silly get age: '120', +5520 silly get connection: 'keep-alive', +5520 silly get 'x-served-by': 'cache-sin18031-SIN', +5520 silly get 'x-cache': 'HIT', +5520 silly get 'x-cache-hits': '2', +5520 silly get 'x-timer': 'S1506936839.535178,VS0,VE0', +5520 silly get vary: 'Accept-Encoding, Accept' } ] +5521 verbose etag https://registry.npmjs.org/min-document from cache +5522 verbose get saving min-document to /home/wso2/.npm/registry.npmjs.org/min-document/.cache.json +5523 silly resolveWithNewModule min-document@2.19.0 checking installable status +5524 silly cache add args [ 'min-document@^2.19.0', null ] +5525 verbose cache add spec min-document@^2.19.0 +5526 silly cache add parsed spec Result { +5526 silly cache add raw: 'min-document@^2.19.0', +5526 silly cache add scope: null, +5526 silly cache add name: 'min-document', +5526 silly cache add rawSpec: '^2.19.0', +5526 silly cache add spec: '>=2.19.0 <3.0.0', +5526 silly cache add type: 'range' } +5527 silly addNamed min-document@>=2.19.0 <3.0.0 +5528 verbose addNamed ">=2.19.0 <3.0.0" is a valid semver range for min-document +5529 silly addNameRange { name: 'min-document', +5529 silly addNameRange range: '>=2.19.0 <3.0.0', +5529 silly addNameRange hasData: false } +5530 silly mapToRegistry name min-document +5531 silly mapToRegistry using default registry +5532 silly mapToRegistry registry https://registry.npmjs.org/ +5533 silly mapToRegistry uri https://registry.npmjs.org/min-document +5534 verbose addNameRange registry:https://registry.npmjs.org/min-document not in flight; fetching +5535 verbose get https://registry.npmjs.org/min-document not expired, no request +5536 silly addNameRange number 2 { name: 'min-document', range: '>=2.19.0 <3.0.0', hasData: true } +5537 silly addNameRange versions [ 'min-document', +5537 silly addNameRange [ '0.2.2', +5537 silly addNameRange '0.2.3', +5537 silly addNameRange '0.2.4', +5537 silly addNameRange '0.2.6', +5537 silly addNameRange '0.2.7', +5537 silly addNameRange '0.2.8', +5537 silly addNameRange '0.3.1', +5537 silly addNameRange '1.0.1', +5537 silly addNameRange '1.0.2', +5537 silly addNameRange '1.0.3', +5537 silly addNameRange '2.0.0', +5537 silly addNameRange '2.1.0', +5537 silly addNameRange '2.2.0', +5537 silly addNameRange '2.2.1', +5537 silly addNameRange '2.3.0', +5537 silly addNameRange '2.4.0', +5537 silly addNameRange '2.4.1', +5537 silly addNameRange '2.5.0', +5537 silly addNameRange '2.6.0', +5537 silly addNameRange '2.6.1', +5537 silly addNameRange '2.7.0', +5537 silly addNameRange '2.8.0', +5537 silly addNameRange '2.8.1', +5537 silly addNameRange '2.9.0', +5537 silly addNameRange '2.9.1', +5537 silly addNameRange '2.9.2', +5537 silly addNameRange '2.10.0', +5537 silly addNameRange '2.11.0', +5537 silly addNameRange '2.12.0', +5537 silly addNameRange '2.13.0', +5537 silly addNameRange '2.14.0', +5537 silly addNameRange '2.14.1', +5537 silly addNameRange '2.14.2', +5537 silly addNameRange '2.16.0', +5537 silly addNameRange '2.17.0', +5537 silly addNameRange '2.18.0', +5537 silly addNameRange '2.18.1', +5537 silly addNameRange '2.19.0' ] ] +5538 silly addNamed min-document@2.19.0 +5539 verbose addNamed "2.19.0" is a plain semver version for min-document +5540 silly cache afterAdd min-document@2.19.0 +5541 verbose afterAdd /home/wso2/.npm/min-document/2.19.0/package/package.json not in flight; writing +5542 verbose afterAdd /home/wso2/.npm/min-document/2.19.0/package/package.json written +5543 http 200 https://registry.npmjs.org/process +5544 verbose headers { server: 'nginx/1.10.3', +5544 verbose headers 'content-type': 'application/json', +5544 verbose headers 'last-modified': 'Thu, 28 Sep 2017 12:27:40 GMT', +5544 verbose headers etag: 'W/"59cceabc-61ec"', +5544 verbose headers 'content-encoding': 'gzip', +5544 verbose headers 'cache-control': 'max-age=300', +5544 verbose headers 'content-length': '3987', +5544 verbose headers 'accept-ranges': 'bytes', +5544 verbose headers date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5544 verbose headers via: '1.1 varnish', +5544 verbose headers age: '54', +5544 verbose headers connection: 'keep-alive', +5544 verbose headers 'x-served-by': 'cache-sin18020-SIN', +5544 verbose headers 'x-cache': 'HIT', +5544 verbose headers 'x-cache-hits': '2', +5544 verbose headers 'x-timer': 'S1506936839.555571,VS0,VE0', +5544 verbose headers vary: 'Accept-Encoding, Accept' } +5545 silly get cb [ 200, +5545 silly get { server: 'nginx/1.10.3', +5545 silly get 'content-type': 'application/json', +5545 silly get 'last-modified': 'Thu, 28 Sep 2017 12:27:40 GMT', +5545 silly get etag: 'W/"59cceabc-61ec"', +5545 silly get 'content-encoding': 'gzip', +5545 silly get 'cache-control': 'max-age=300', +5545 silly get 'content-length': '3987', +5545 silly get 'accept-ranges': 'bytes', +5545 silly get date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5545 silly get via: '1.1 varnish', +5545 silly get age: '54', +5545 silly get connection: 'keep-alive', +5545 silly get 'x-served-by': 'cache-sin18020-SIN', +5545 silly get 'x-cache': 'HIT', +5545 silly get 'x-cache-hits': '2', +5545 silly get 'x-timer': 'S1506936839.555571,VS0,VE0', +5545 silly get vary: 'Accept-Encoding, Accept' } ] +5546 verbose get saving process to /home/wso2/.npm/registry.npmjs.org/process/.cache.json +5547 silly resolveWithNewModule process@0.5.2 checking installable status +5548 silly cache add args [ 'process@~0.5.1', null ] +5549 verbose cache add spec process@~0.5.1 +5550 silly cache add parsed spec Result { +5550 silly cache add raw: 'process@~0.5.1', +5550 silly cache add scope: null, +5550 silly cache add name: 'process', +5550 silly cache add rawSpec: '~0.5.1', +5550 silly cache add spec: '>=0.5.1 <0.6.0', +5550 silly cache add type: 'range' } +5551 silly addNamed process@>=0.5.1 <0.6.0 +5552 verbose addNamed ">=0.5.1 <0.6.0" is a valid semver range for process +5553 silly addNameRange { name: 'process', range: '>=0.5.1 <0.6.0', hasData: false } +5554 silly mapToRegistry name process +5555 silly mapToRegistry using default registry +5556 silly mapToRegistry registry https://registry.npmjs.org/ +5557 silly mapToRegistry uri https://registry.npmjs.org/process +5558 verbose addNameRange registry:https://registry.npmjs.org/process not in flight; fetching +5559 verbose get https://registry.npmjs.org/process not expired, no request +5560 silly addNameRange number 2 { name: 'process', range: '>=0.5.1 <0.6.0', hasData: true } +5561 silly addNameRange versions [ 'process', +5561 silly addNameRange [ '0.4.9', +5561 silly addNameRange '0.5.0', +5561 silly addNameRange '0.5.1', +5561 silly addNameRange '0.5.2', +5561 silly addNameRange '0.6.0', +5561 silly addNameRange '0.7.0', +5561 silly addNameRange '0.8.0', +5561 silly addNameRange '0.9.0', +5561 silly addNameRange '0.10.0', +5561 silly addNameRange '0.10.1', +5561 silly addNameRange '0.11.0', +5561 silly addNameRange '0.11.1', +5561 silly addNameRange '0.11.2', +5561 silly addNameRange '0.11.3', +5561 silly addNameRange '0.11.4', +5561 silly addNameRange '0.11.5', +5561 silly addNameRange '0.11.6', +5561 silly addNameRange '0.11.7', +5561 silly addNameRange '0.11.8', +5561 silly addNameRange '0.11.9', +5561 silly addNameRange '0.11.10' ] ] +5562 silly addNamed process@0.5.2 +5563 verbose addNamed "0.5.2" is a plain semver version for process +5564 silly cache afterAdd process@0.5.2 +5565 verbose afterAdd /home/wso2/.npm/process/0.5.2/package/package.json not in flight; writing +5566 verbose afterAdd /home/wso2/.npm/process/0.5.2/package/package.json written +5567 silly fetchNamedPackageData dom-walk +5568 silly mapToRegistry name dom-walk +5569 silly mapToRegistry using default registry +5570 silly mapToRegistry registry https://registry.npmjs.org/ +5571 silly mapToRegistry uri https://registry.npmjs.org/dom-walk +5572 verbose request uri https://registry.npmjs.org/dom-walk +5573 verbose request no auth needed +5574 info attempt registry request try #1 at 3:03:58 PM +5575 verbose etag W/"586aa80f-f46" +5576 verbose lastModified Mon, 02 Jan 2017 19:20:47 GMT +5577 http request GET https://registry.npmjs.org/dom-walk +5578 http 304 https://registry.npmjs.org/dom-walk +5579 verbose headers { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5579 verbose headers via: '1.1 varnish', +5579 verbose headers 'cache-control': 'max-age=300', +5579 verbose headers etag: 'W/"586aa80f-f46"', +5579 verbose headers age: '119', +5579 verbose headers connection: 'keep-alive', +5579 verbose headers 'x-served-by': 'cache-sin18025-SIN', +5579 verbose headers 'x-cache': 'HIT', +5579 verbose headers 'x-cache-hits': '2', +5579 verbose headers 'x-timer': 'S1506936839.784037,VS0,VE0', +5579 verbose headers vary: 'Accept-Encoding, Accept' } +5580 silly get cb [ 304, +5580 silly get { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5580 silly get via: '1.1 varnish', +5580 silly get 'cache-control': 'max-age=300', +5580 silly get etag: 'W/"586aa80f-f46"', +5580 silly get age: '119', +5580 silly get connection: 'keep-alive', +5580 silly get 'x-served-by': 'cache-sin18025-SIN', +5580 silly get 'x-cache': 'HIT', +5580 silly get 'x-cache-hits': '2', +5580 silly get 'x-timer': 'S1506936839.784037,VS0,VE0', +5580 silly get vary: 'Accept-Encoding, Accept' } ] +5581 verbose etag https://registry.npmjs.org/dom-walk from cache +5582 verbose get saving dom-walk to /home/wso2/.npm/registry.npmjs.org/dom-walk/.cache.json +5583 silly resolveWithNewModule dom-walk@0.1.1 checking installable status +5584 silly cache add args [ 'dom-walk@^0.1.0', null ] +5585 verbose cache add spec dom-walk@^0.1.0 +5586 silly cache add parsed spec Result { +5586 silly cache add raw: 'dom-walk@^0.1.0', +5586 silly cache add scope: null, +5586 silly cache add name: 'dom-walk', +5586 silly cache add rawSpec: '^0.1.0', +5586 silly cache add spec: '>=0.1.0 <0.2.0', +5586 silly cache add type: 'range' } +5587 silly addNamed dom-walk@>=0.1.0 <0.2.0 +5588 verbose addNamed ">=0.1.0 <0.2.0" is a valid semver range for dom-walk +5589 silly addNameRange { name: 'dom-walk', range: '>=0.1.0 <0.2.0', hasData: false } +5590 silly mapToRegistry name dom-walk +5591 silly mapToRegistry using default registry +5592 silly mapToRegistry registry https://registry.npmjs.org/ +5593 silly mapToRegistry uri https://registry.npmjs.org/dom-walk +5594 verbose addNameRange registry:https://registry.npmjs.org/dom-walk not in flight; fetching +5595 verbose get https://registry.npmjs.org/dom-walk not expired, no request +5596 silly addNameRange number 2 { name: 'dom-walk', range: '>=0.1.0 <0.2.0', hasData: true } +5597 silly addNameRange versions [ 'dom-walk', [ '0.0.1', '0.1.0', '0.1.1' ] ] +5598 silly addNamed dom-walk@0.1.1 +5599 verbose addNamed "0.1.1" is a plain semver version for dom-walk +5600 silly cache afterAdd dom-walk@0.1.1 +5601 verbose afterAdd /home/wso2/.npm/dom-walk/0.1.1/package/package.json not in flight; writing +5602 verbose afterAdd /home/wso2/.npm/dom-walk/0.1.1/package/package.json written +5603 silly fetchNamedPackageData error-stack-parser +5604 silly mapToRegistry name error-stack-parser +5605 silly mapToRegistry using default registry +5606 silly mapToRegistry registry https://registry.npmjs.org/ +5607 silly mapToRegistry uri https://registry.npmjs.org/error-stack-parser +5608 silly fetchNamedPackageData sourcemapped-stacktrace +5609 silly mapToRegistry name sourcemapped-stacktrace +5610 silly mapToRegistry using default registry +5611 silly mapToRegistry registry https://registry.npmjs.org/ +5612 silly mapToRegistry uri https://registry.npmjs.org/sourcemapped-stacktrace +5613 verbose request uri https://registry.npmjs.org/sourcemapped-stacktrace +5614 verbose request no auth needed +5615 info attempt registry request try #1 at 3:03:58 PM +5616 verbose etag W/"597054e6-4c02" +5617 verbose lastModified Thu, 20 Jul 2017 06:59:50 GMT +5618 http request GET https://registry.npmjs.org/sourcemapped-stacktrace +5619 verbose request uri https://registry.npmjs.org/error-stack-parser +5620 verbose request no auth needed +5621 info attempt registry request try #1 at 3:03:58 PM +5622 verbose etag W/"5977b0c6-a23a" +5623 verbose lastModified Tue, 25 Jul 2017 20:57:42 GMT +5624 http request GET https://registry.npmjs.org/error-stack-parser +5625 http 304 https://registry.npmjs.org/sourcemapped-stacktrace +5626 verbose headers { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5626 verbose headers via: '1.1 varnish', +5626 verbose headers 'cache-control': 'max-age=300', +5626 verbose headers etag: 'W/"597054e6-4c02"', +5626 verbose headers age: '199', +5626 verbose headers connection: 'keep-alive', +5626 verbose headers 'x-served-by': 'cache-sin18026-SIN', +5626 verbose headers 'x-cache': 'HIT', +5626 verbose headers 'x-cache-hits': '2', +5626 verbose headers 'x-timer': 'S1506936839.977095,VS0,VE0', +5626 verbose headers vary: 'Accept-Encoding, Accept' } +5627 silly get cb [ 304, +5627 silly get { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5627 silly get via: '1.1 varnish', +5627 silly get 'cache-control': 'max-age=300', +5627 silly get etag: 'W/"597054e6-4c02"', +5627 silly get age: '199', +5627 silly get connection: 'keep-alive', +5627 silly get 'x-served-by': 'cache-sin18026-SIN', +5627 silly get 'x-cache': 'HIT', +5627 silly get 'x-cache-hits': '2', +5627 silly get 'x-timer': 'S1506936839.977095,VS0,VE0', +5627 silly get vary: 'Accept-Encoding, Accept' } ] +5628 verbose etag https://registry.npmjs.org/sourcemapped-stacktrace from cache +5629 verbose get saving sourcemapped-stacktrace to /home/wso2/.npm/registry.npmjs.org/sourcemapped-stacktrace/.cache.json +5630 silly resolveWithNewModule sourcemapped-stacktrace@1.1.7 checking installable status +5631 silly cache add args [ 'sourcemapped-stacktrace@^1.1.6', null ] +5632 verbose cache add spec sourcemapped-stacktrace@^1.1.6 +5633 silly cache add parsed spec Result { +5633 silly cache add raw: 'sourcemapped-stacktrace@^1.1.6', +5633 silly cache add scope: null, +5633 silly cache add name: 'sourcemapped-stacktrace', +5633 silly cache add rawSpec: '^1.1.6', +5633 silly cache add spec: '>=1.1.6 <2.0.0', +5633 silly cache add type: 'range' } +5634 silly addNamed sourcemapped-stacktrace@>=1.1.6 <2.0.0 +5635 verbose addNamed ">=1.1.6 <2.0.0" is a valid semver range for sourcemapped-stacktrace +5636 silly addNameRange { name: 'sourcemapped-stacktrace', +5636 silly addNameRange range: '>=1.1.6 <2.0.0', +5636 silly addNameRange hasData: false } +5637 silly mapToRegistry name sourcemapped-stacktrace +5638 silly mapToRegistry using default registry +5639 silly mapToRegistry registry https://registry.npmjs.org/ +5640 silly mapToRegistry uri https://registry.npmjs.org/sourcemapped-stacktrace +5641 verbose addNameRange registry:https://registry.npmjs.org/sourcemapped-stacktrace not in flight; fetching +5642 verbose get https://registry.npmjs.org/sourcemapped-stacktrace not expired, no request +5643 silly addNameRange number 2 { name: 'sourcemapped-stacktrace', +5643 silly addNameRange range: '>=1.1.6 <2.0.0', +5643 silly addNameRange hasData: true } +5644 silly addNameRange versions [ 'sourcemapped-stacktrace', +5644 silly addNameRange [ '0.0.1', +5644 silly addNameRange '1.0.0', +5644 silly addNameRange '1.0.1', +5644 silly addNameRange '1.1.0', +5644 silly addNameRange '1.1.1', +5644 silly addNameRange '1.1.2', +5644 silly addNameRange '1.1.3', +5644 silly addNameRange '1.1.4', +5644 silly addNameRange '1.1.5', +5644 silly addNameRange '1.1.6', +5644 silly addNameRange '1.1.7' ] ] +5645 silly addNamed sourcemapped-stacktrace@1.1.7 +5646 verbose addNamed "1.1.7" is a plain semver version for sourcemapped-stacktrace +5647 silly cache afterAdd sourcemapped-stacktrace@1.1.7 +5648 verbose afterAdd /home/wso2/.npm/sourcemapped-stacktrace/1.1.7/package/package.json not in flight; writing +5649 verbose afterAdd /home/wso2/.npm/sourcemapped-stacktrace/1.1.7/package/package.json written +5650 http 304 https://registry.npmjs.org/error-stack-parser +5651 verbose headers { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5651 verbose headers via: '1.1 varnish', +5651 verbose headers 'cache-control': 'max-age=300', +5651 verbose headers etag: 'W/"5977b0c6-a23a"', +5651 verbose headers age: '0', +5651 verbose headers connection: 'keep-alive', +5651 verbose headers 'x-served-by': 'cache-sin18028-SIN', +5651 verbose headers 'x-cache': 'HIT', +5651 verbose headers 'x-cache-hits': '1', +5651 verbose headers 'x-timer': 'S1506936839.994153,VS0,VE167', +5651 verbose headers vary: 'Accept-Encoding, Accept' } +5652 silly get cb [ 304, +5652 silly get { date: 'Mon, 02 Oct 2017 09:33:58 GMT', +5652 silly get via: '1.1 varnish', +5652 silly get 'cache-control': 'max-age=300', +5652 silly get etag: 'W/"5977b0c6-a23a"', +5652 silly get age: '0', +5652 silly get connection: 'keep-alive', +5652 silly get 'x-served-by': 'cache-sin18028-SIN', +5652 silly get 'x-cache': 'HIT', +5652 silly get 'x-cache-hits': '1', +5652 silly get 'x-timer': 'S1506936839.994153,VS0,VE167', +5652 silly get vary: 'Accept-Encoding, Accept' } ] +5653 verbose etag https://registry.npmjs.org/error-stack-parser from cache +5654 verbose get saving error-stack-parser to /home/wso2/.npm/registry.npmjs.org/error-stack-parser/.cache.json +5655 silly resolveWithNewModule error-stack-parser@1.3.6 checking installable status +5656 silly cache add args [ 'error-stack-parser@^1.3.6', null ] +5657 verbose cache add spec error-stack-parser@^1.3.6 +5658 silly cache add parsed spec Result { +5658 silly cache add raw: 'error-stack-parser@^1.3.6', +5658 silly cache add scope: null, +5658 silly cache add name: 'error-stack-parser', +5658 silly cache add rawSpec: '^1.3.6', +5658 silly cache add spec: '>=1.3.6 <2.0.0', +5658 silly cache add type: 'range' } +5659 silly addNamed error-stack-parser@>=1.3.6 <2.0.0 +5660 verbose addNamed ">=1.3.6 <2.0.0" is a valid semver range for error-stack-parser +5661 silly addNameRange { name: 'error-stack-parser', +5661 silly addNameRange range: '>=1.3.6 <2.0.0', +5661 silly addNameRange hasData: false } +5662 silly mapToRegistry name error-stack-parser +5663 silly mapToRegistry using default registry +5664 silly mapToRegistry registry https://registry.npmjs.org/ +5665 silly mapToRegistry uri https://registry.npmjs.org/error-stack-parser +5666 verbose addNameRange registry:https://registry.npmjs.org/error-stack-parser not in flight; fetching +5667 verbose get https://registry.npmjs.org/error-stack-parser not expired, no request +5668 silly addNameRange number 2 { name: 'error-stack-parser', +5668 silly addNameRange range: '>=1.3.6 <2.0.0', +5668 silly addNameRange hasData: true } +5669 silly addNameRange versions [ 'error-stack-parser', +5669 silly addNameRange [ '0.1.0', +5669 silly addNameRange '0.2.0', +5669 silly addNameRange '0.2.1', +5669 silly addNameRange '0.2.2', +5669 silly addNameRange '0.2.3', +5669 silly addNameRange '0.2.4', +5669 silly addNameRange '1.0.0', +5669 silly addNameRange '1.1.0', +5669 silly addNameRange '1.1.1', +5669 silly addNameRange '1.1.2', +5669 silly addNameRange '1.2.0', +5669 silly addNameRange '1.2.1', +5669 silly addNameRange '1.2.2', +5669 silly addNameRange '1.2.3', +5669 silly addNameRange '1.3.0', +5669 silly addNameRange '1.3.1', +5669 silly addNameRange '1.3.2', +5669 silly addNameRange '1.3.3', +5669 silly addNameRange '1.3.4', +5669 silly addNameRange '1.3.5', +5669 silly addNameRange '1.3.6', +5669 silly addNameRange '2.0.0', +5669 silly addNameRange '2.0.1' ] ] +5670 silly addNamed error-stack-parser@1.3.6 +5671 verbose addNamed "1.3.6" is a plain semver version for error-stack-parser +5672 silly cache afterAdd error-stack-parser@1.3.6 +5673 verbose afterAdd /home/wso2/.npm/error-stack-parser/1.3.6/package/package.json not in flight; writing +5674 verbose afterAdd /home/wso2/.npm/error-stack-parser/1.3.6/package/package.json written +5675 silly fetchNamedPackageData stackframe +5676 silly mapToRegistry name stackframe +5677 silly mapToRegistry using default registry +5678 silly mapToRegistry registry https://registry.npmjs.org/ +5679 silly mapToRegistry uri https://registry.npmjs.org/stackframe +5680 verbose request uri https://registry.npmjs.org/stackframe +5681 verbose request no auth needed +5682 info attempt registry request try #1 at 3:03:59 PM +5683 verbose etag W/"598f3a42-51e3" +5684 verbose lastModified Sat, 12 Aug 2017 17:26:26 GMT +5685 http request GET https://registry.npmjs.org/stackframe +5686 http 304 https://registry.npmjs.org/stackframe +5687 verbose headers { date: 'Mon, 02 Oct 2017 09:33:59 GMT', +5687 verbose headers via: '1.1 varnish', +5687 verbose headers 'cache-control': 'max-age=300', +5687 verbose headers etag: 'W/"598f3a42-51e3"', +5687 verbose headers age: '0', +5687 verbose headers connection: 'keep-alive', +5687 verbose headers 'x-served-by': 'cache-sin18021-SIN', +5687 verbose headers 'x-cache': 'HIT', +5687 verbose headers 'x-cache-hits': '1', +5687 verbose headers 'x-timer': 'S1506936839.387650,VS0,VE160', +5687 verbose headers vary: 'Accept-Encoding, Accept' } +5688 silly get cb [ 304, +5688 silly get { date: 'Mon, 02 Oct 2017 09:33:59 GMT', +5688 silly get via: '1.1 varnish', +5688 silly get 'cache-control': 'max-age=300', +5688 silly get etag: 'W/"598f3a42-51e3"', +5688 silly get age: '0', +5688 silly get connection: 'keep-alive', +5688 silly get 'x-served-by': 'cache-sin18021-SIN', +5688 silly get 'x-cache': 'HIT', +5688 silly get 'x-cache-hits': '1', +5688 silly get 'x-timer': 'S1506936839.387650,VS0,VE160', +5688 silly get vary: 'Accept-Encoding, Accept' } ] +5689 verbose etag https://registry.npmjs.org/stackframe from cache +5690 verbose get saving stackframe to /home/wso2/.npm/registry.npmjs.org/stackframe/.cache.json +5691 silly resolveWithNewModule stackframe@0.3.1 checking installable status +5692 silly cache add args [ 'stackframe@^0.3.1', null ] +5693 verbose cache add spec stackframe@^0.3.1 +5694 silly cache add parsed spec Result { +5694 silly cache add raw: 'stackframe@^0.3.1', +5694 silly cache add scope: null, +5694 silly cache add name: 'stackframe', +5694 silly cache add rawSpec: '^0.3.1', +5694 silly cache add spec: '>=0.3.1 <0.4.0', +5694 silly cache add type: 'range' } +5695 silly addNamed stackframe@>=0.3.1 <0.4.0 +5696 verbose addNamed ">=0.3.1 <0.4.0" is a valid semver range for stackframe +5697 silly addNameRange { name: 'stackframe', range: '>=0.3.1 <0.4.0', hasData: false } +5698 silly mapToRegistry name stackframe +5699 silly mapToRegistry using default registry +5700 silly mapToRegistry registry https://registry.npmjs.org/ +5701 silly mapToRegistry uri https://registry.npmjs.org/stackframe +5702 verbose addNameRange registry:https://registry.npmjs.org/stackframe not in flight; fetching +5703 verbose get https://registry.npmjs.org/stackframe not expired, no request +5704 silly addNameRange number 2 { name: 'stackframe', range: '>=0.3.1 <0.4.0', hasData: true } +5705 silly addNameRange versions [ 'stackframe', +5705 silly addNameRange [ '0.1.0', +5705 silly addNameRange '0.1.1', +5705 silly addNameRange '0.2.0', +5705 silly addNameRange '0.2.1', +5705 silly addNameRange '0.2.2', +5705 silly addNameRange '0.3.0', +5705 silly addNameRange '0.3.1', +5705 silly addNameRange '1.0.0', +5705 silly addNameRange '1.0.1', +5705 silly addNameRange '1.0.2', +5705 silly addNameRange '1.0.3', +5705 silly addNameRange '1.0.4' ] ] +5706 silly addNamed stackframe@0.3.1 +5707 verbose addNamed "0.3.1" is a plain semver version for stackframe +5708 silly cache afterAdd stackframe@0.3.1 +5709 verbose afterAdd /home/wso2/.npm/stackframe/0.3.1/package/package.json not in flight; writing +5710 verbose afterAdd /home/wso2/.npm/stackframe/0.3.1/package/package.json written +5711 silly fetchNamedPackageData source-map +5712 silly mapToRegistry name source-map +5713 silly mapToRegistry using default registry +5714 silly mapToRegistry registry https://registry.npmjs.org/ +5715 silly mapToRegistry uri https://registry.npmjs.org/source-map +5716 silly resolveWithNewModule source-map@0.5.6 checking installable status +5717 silly cache add args [ 'source-map@0.5.6', null ] +5718 verbose cache add spec source-map@0.5.6 +5719 silly cache add parsed spec Result { +5719 silly cache add raw: 'source-map@0.5.6', +5719 silly cache add scope: null, +5719 silly cache add name: 'source-map', +5719 silly cache add rawSpec: '0.5.6', +5719 silly cache add spec: '0.5.6', +5719 silly cache add type: 'version' } +5720 silly addNamed source-map@0.5.6 +5721 verbose addNamed "0.5.6" is a plain semver version for source-map +5722 silly mapToRegistry name source-map +5723 silly mapToRegistry using default registry +5724 silly mapToRegistry registry https://registry.npmjs.org/ +5725 silly mapToRegistry uri https://registry.npmjs.org/source-map +5726 verbose addNameVersion registry:https://registry.npmjs.org/source-map not in flight; fetching +5727 verbose get https://registry.npmjs.org/source-map not expired, no request +5728 silly cache afterAdd source-map@0.5.6 +5729 verbose afterAdd /home/wso2/.npm/source-map/0.5.6/package/package.json not in flight; writing +5730 verbose afterAdd /home/wso2/.npm/source-map/0.5.6/package/package.json written +5731 silly fetchNamedPackageData amdefine +5732 silly mapToRegistry name amdefine +5733 silly mapToRegistry using default registry +5734 silly mapToRegistry registry https://registry.npmjs.org/ +5735 silly mapToRegistry uri https://registry.npmjs.org/amdefine +5736 verbose request uri https://registry.npmjs.org/amdefine +5737 verbose request no auth needed +5738 info attempt registry request try #1 at 3:03:59 PM +5739 verbose etag W/"594a8a79-48b3" +5740 verbose lastModified Wed, 21 Jun 2017 15:02:17 GMT +5741 http request GET https://registry.npmjs.org/amdefine +5742 http 304 https://registry.npmjs.org/amdefine +5743 verbose headers { date: 'Mon, 02 Oct 2017 09:33:59 GMT', +5743 verbose headers via: '1.1 varnish', +5743 verbose headers 'cache-control': 'max-age=300', +5743 verbose headers etag: 'W/"594a8a79-48b3"', +5743 verbose headers age: '256', +5743 verbose headers connection: 'keep-alive', +5743 verbose headers 'x-served-by': 'cache-sin18028-SIN', +5743 verbose headers 'x-cache': 'HIT', +5743 verbose headers 'x-cache-hits': '2', +5743 verbose headers 'x-timer': 'S1506936840.972002,VS0,VE0', +5743 verbose headers vary: 'Accept-Encoding, Accept' } +5744 silly get cb [ 304, +5744 silly get { date: 'Mon, 02 Oct 2017 09:33:59 GMT', +5744 silly get via: '1.1 varnish', +5744 silly get 'cache-control': 'max-age=300', +5744 silly get etag: 'W/"594a8a79-48b3"', +5744 silly get age: '256', +5744 silly get connection: 'keep-alive', +5744 silly get 'x-served-by': 'cache-sin18028-SIN', +5744 silly get 'x-cache': 'HIT', +5744 silly get 'x-cache-hits': '2', +5744 silly get 'x-timer': 'S1506936840.972002,VS0,VE0', +5744 silly get vary: 'Accept-Encoding, Accept' } ] +5745 verbose etag https://registry.npmjs.org/amdefine from cache +5746 verbose get saving amdefine to /home/wso2/.npm/registry.npmjs.org/amdefine/.cache.json +5747 silly resolveWithNewModule amdefine@1.0.1 checking installable status +5748 silly cache add args [ 'amdefine@>=0.0.4', null ] +5749 verbose cache add spec amdefine@>=0.0.4 +5750 silly cache add parsed spec Result { +5750 silly cache add raw: 'amdefine@>=0.0.4', +5750 silly cache add scope: null, +5750 silly cache add name: 'amdefine', +5750 silly cache add rawSpec: '>=0.0.4', +5750 silly cache add spec: '>=0.0.4', +5750 silly cache add type: 'range' } +5751 silly addNamed amdefine@>=0.0.4 +5752 verbose addNamed ">=0.0.4" is a valid semver range for amdefine +5753 silly addNameRange { name: 'amdefine', range: '>=0.0.4', hasData: false } +5754 silly mapToRegistry name amdefine +5755 silly mapToRegistry using default registry +5756 silly mapToRegistry registry https://registry.npmjs.org/ +5757 silly mapToRegistry uri https://registry.npmjs.org/amdefine +5758 verbose addNameRange registry:https://registry.npmjs.org/amdefine not in flight; fetching +5759 verbose get https://registry.npmjs.org/amdefine not expired, no request +5760 silly addNameRange number 2 { name: 'amdefine', range: '>=0.0.4', hasData: true } +5761 silly addNameRange versions [ 'amdefine', +5761 silly addNameRange [ '0.0.1', +5761 silly addNameRange '0.0.2', +5761 silly addNameRange '0.0.3', +5761 silly addNameRange '0.0.4', +5761 silly addNameRange '0.0.5', +5761 silly addNameRange '0.0.6', +5761 silly addNameRange '0.0.7', +5761 silly addNameRange '0.0.8', +5761 silly addNameRange '0.1.0', +5761 silly addNameRange '0.1.1', +5761 silly addNameRange '1.0.0', +5761 silly addNameRange '1.0.1' ] ] +5762 silly addNamed amdefine@1.0.1 +5763 verbose addNamed "1.0.1" is a plain semver version for amdefine +5764 silly cache afterAdd amdefine@1.0.1 +5765 verbose afterAdd /home/wso2/.npm/amdefine/1.0.1/package/package.json not in flight; writing +5766 verbose afterAdd /home/wso2/.npm/amdefine/1.0.1/package/package.json written +5767 silly fetchNamedPackageData exenv +5768 silly mapToRegistry name exenv +5769 silly mapToRegistry using default registry +5770 silly mapToRegistry registry https://registry.npmjs.org/ +5771 silly mapToRegistry uri https://registry.npmjs.org/exenv +5772 silly fetchNamedPackageData react-dom-factories +5773 silly mapToRegistry name react-dom-factories +5774 silly mapToRegistry using default registry +5775 silly mapToRegistry registry https://registry.npmjs.org/ +5776 silly mapToRegistry uri https://registry.npmjs.org/react-dom-factories +5777 verbose request uri https://registry.npmjs.org/exenv +5778 verbose request no auth needed +5779 info attempt registry request try #1 at 3:03:59 PM +5780 verbose etag W/"58fc5b31-1dac" +5781 verbose lastModified Sun, 23 Apr 2017 07:43:45 GMT +5782 http request GET https://registry.npmjs.org/exenv +5783 verbose request uri https://registry.npmjs.org/react-dom-factories +5784 verbose request no auth needed +5785 info attempt registry request try #1 at 3:03:59 PM +5786 verbose etag W/"59b08b53-e47" +5787 verbose lastModified Wed, 06 Sep 2017 23:57:07 GMT +5788 http request GET https://registry.npmjs.org/react-dom-factories +5789 http 200 https://registry.npmjs.org/exenv +5790 verbose headers { server: 'nginx/1.10.3', +5790 verbose headers 'content-type': 'application/json', +5790 verbose headers 'last-modified': 'Sat, 16 Sep 2017 05:22:44 GMT', +5790 verbose headers etag: 'W/"59bcb524-1dba"', +5790 verbose headers 'content-encoding': 'gzip', +5790 verbose headers 'cache-control': 'max-age=300', +5790 verbose headers 'content-length': '1883', +5790 verbose headers 'accept-ranges': 'bytes', +5790 verbose headers date: 'Mon, 02 Oct 2017 09:34:00 GMT', +5790 verbose headers via: '1.1 varnish', +5790 verbose headers age: '269', +5790 verbose headers connection: 'keep-alive', +5790 verbose headers 'x-served-by': 'cache-sin18022-SIN', +5790 verbose headers 'x-cache': 'HIT', +5790 verbose headers 'x-cache-hits': '1', +5790 verbose headers 'x-timer': 'S1506936840.333508,VS0,VE0', +5790 verbose headers vary: 'Accept-Encoding, Accept' } +5791 silly get cb [ 200, +5791 silly get { server: 'nginx/1.10.3', +5791 silly get 'content-type': 'application/json', +5791 silly get 'last-modified': 'Sat, 16 Sep 2017 05:22:44 GMT', +5791 silly get etag: 'W/"59bcb524-1dba"', +5791 silly get 'content-encoding': 'gzip', +5791 silly get 'cache-control': 'max-age=300', +5791 silly get 'content-length': '1883', +5791 silly get 'accept-ranges': 'bytes', +5791 silly get date: 'Mon, 02 Oct 2017 09:34:00 GMT', +5791 silly get via: '1.1 varnish', +5791 silly get age: '269', +5791 silly get connection: 'keep-alive', +5791 silly get 'x-served-by': 'cache-sin18022-SIN', +5791 silly get 'x-cache': 'HIT', +5791 silly get 'x-cache-hits': '1', +5791 silly get 'x-timer': 'S1506936840.333508,VS0,VE0', +5791 silly get vary: 'Accept-Encoding, Accept' } ] +5792 verbose get saving exenv to /home/wso2/.npm/registry.npmjs.org/exenv/.cache.json +5793 silly resolveWithNewModule exenv@1.2.2 checking installable status +5794 silly cache add args [ 'exenv@^1.2.0', null ] +5795 verbose cache add spec exenv@^1.2.0 +5796 silly cache add parsed spec Result { +5796 silly cache add raw: 'exenv@^1.2.0', +5796 silly cache add scope: null, +5796 silly cache add name: 'exenv', +5796 silly cache add rawSpec: '^1.2.0', +5796 silly cache add spec: '>=1.2.0 <2.0.0', +5796 silly cache add type: 'range' } +5797 silly addNamed exenv@>=1.2.0 <2.0.0 +5798 verbose addNamed ">=1.2.0 <2.0.0" is a valid semver range for exenv +5799 silly addNameRange { name: 'exenv', range: '>=1.2.0 <2.0.0', hasData: false } +5800 silly mapToRegistry name exenv +5801 silly mapToRegistry using default registry +5802 silly mapToRegistry registry https://registry.npmjs.org/ +5803 silly mapToRegistry uri https://registry.npmjs.org/exenv +5804 verbose addNameRange registry:https://registry.npmjs.org/exenv not in flight; fetching +5805 verbose get https://registry.npmjs.org/exenv not expired, no request +5806 silly addNameRange number 2 { name: 'exenv', range: '>=1.2.0 <2.0.0', hasData: true } +5807 silly addNameRange versions [ 'exenv', [ '1.0.0', '1.1.0', '1.2.0', '1.2.1', '1.2.2' ] ] +5808 silly addNamed exenv@1.2.2 +5809 verbose addNamed "1.2.2" is a plain semver version for exenv +5810 silly cache afterAdd exenv@1.2.2 +5811 verbose afterAdd /home/wso2/.npm/exenv/1.2.2/package/package.json not in flight; writing +5812 verbose afterAdd /home/wso2/.npm/exenv/1.2.2/package/package.json written +5813 http 200 https://registry.npmjs.org/react-dom-factories +5814 verbose headers { server: 'nginx/1.10.3', +5814 verbose headers 'content-type': 'application/json', +5814 verbose headers 'last-modified': 'Tue, 26 Sep 2017 00:11:06 GMT', +5814 verbose headers etag: 'W/"59c99b1a-1316"', +5814 verbose headers 'content-encoding': 'gzip', +5814 verbose headers 'cache-control': 'max-age=300', +5814 verbose headers 'content-length': '1386', +5814 verbose headers 'accept-ranges': 'bytes', +5814 verbose headers date: 'Mon, 02 Oct 2017 09:34:00 GMT', +5814 verbose headers via: '1.1 varnish', +5814 verbose headers age: '0', +5814 verbose headers connection: 'keep-alive', +5814 verbose headers 'x-served-by': 'cache-sin18032-SIN', +5814 verbose headers 'x-cache': 'HIT', +5814 verbose headers 'x-cache-hits': '1', +5814 verbose headers 'x-timer': 'S1506936840.351624,VS0,VE161', +5814 verbose headers vary: 'Accept-Encoding, Accept' } +5815 silly get cb [ 200, +5815 silly get { server: 'nginx/1.10.3', +5815 silly get 'content-type': 'application/json', +5815 silly get 'last-modified': 'Tue, 26 Sep 2017 00:11:06 GMT', +5815 silly get etag: 'W/"59c99b1a-1316"', +5815 silly get 'content-encoding': 'gzip', +5815 silly get 'cache-control': 'max-age=300', +5815 silly get 'content-length': '1386', +5815 silly get 'accept-ranges': 'bytes', +5815 silly get date: 'Mon, 02 Oct 2017 09:34:00 GMT', +5815 silly get via: '1.1 varnish', +5815 silly get age: '0', +5815 silly get connection: 'keep-alive', +5815 silly get 'x-served-by': 'cache-sin18032-SIN', +5815 silly get 'x-cache': 'HIT', +5815 silly get 'x-cache-hits': '1', +5815 silly get 'x-timer': 'S1506936840.351624,VS0,VE161', +5815 silly get vary: 'Accept-Encoding, Accept' } ] +5816 verbose get saving react-dom-factories to /home/wso2/.npm/registry.npmjs.org/react-dom-factories/.cache.json +5817 silly resolveWithNewModule react-dom-factories@1.0.2 checking installable status +5818 silly cache add args [ 'react-dom-factories@^1.0.0', null ] +5819 verbose cache add spec react-dom-factories@^1.0.0 +5820 silly cache add parsed spec Result { +5820 silly cache add raw: 'react-dom-factories@^1.0.0', +5820 silly cache add scope: null, +5820 silly cache add name: 'react-dom-factories', +5820 silly cache add rawSpec: '^1.0.0', +5820 silly cache add spec: '>=1.0.0 <2.0.0', +5820 silly cache add type: 'range' } +5821 silly addNamed react-dom-factories@>=1.0.0 <2.0.0 +5822 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for react-dom-factories +5823 silly addNameRange { name: 'react-dom-factories', +5823 silly addNameRange range: '>=1.0.0 <2.0.0', +5823 silly addNameRange hasData: false } +5824 silly mapToRegistry name react-dom-factories +5825 silly mapToRegistry using default registry +5826 silly mapToRegistry registry https://registry.npmjs.org/ +5827 silly mapToRegistry uri https://registry.npmjs.org/react-dom-factories +5828 verbose addNameRange registry:https://registry.npmjs.org/react-dom-factories not in flight; fetching +5829 verbose get https://registry.npmjs.org/react-dom-factories not expired, no request +5830 silly addNameRange number 2 { name: 'react-dom-factories', +5830 silly addNameRange range: '>=1.0.0 <2.0.0', +5830 silly addNameRange hasData: true } +5831 silly addNameRange versions [ 'react-dom-factories', [ '1.0.0', '1.0.1', '1.0.2' ] ] +5832 silly addNamed react-dom-factories@1.0.2 +5833 verbose addNamed "1.0.2" is a plain semver version for react-dom-factories +5834 silly mapToRegistry name react-dom-factories +5835 silly mapToRegistry using default registry +5836 silly mapToRegistry registry https://registry.npmjs.org/ +5837 silly mapToRegistry uri https://registry.npmjs.org/react-dom-factories +5838 verbose addRemoteTarball https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz not in flight; adding +5839 verbose addRemoteTarball [ 'https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz', +5839 verbose addRemoteTarball 'eb7705c4db36fb501b3aa38ff759616aa0ff96e0' ] +5840 info retry fetch attempt 1 at 3:04:00 PM +5841 info attempt registry request try #1 at 3:04:00 PM +5842 http fetch GET https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz +5843 http fetch 200 https://registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz +5844 silly fetchAndShaCheck shasum eb7705c4db36fb501b3aa38ff759616aa0ff96e0 +5845 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/react-dom-factories/-/react-dom-factories-1.0.2.tgz not in flight; adding +5846 verbose addTmpTarball already have metadata; skipping unpack for react-dom-factories@1.0.2 +5847 silly cache afterAdd react-dom-factories@1.0.2 +5848 verbose afterAdd /home/wso2/.npm/react-dom-factories/1.0.2/package/package.json not in flight; writing +5849 verbose afterAdd /home/wso2/.npm/react-dom-factories/1.0.2/package/package.json written +5850 silly fetchNamedPackageData hoist-non-react-statics +5851 silly mapToRegistry name hoist-non-react-statics +5852 silly mapToRegistry using default registry +5853 silly mapToRegistry registry https://registry.npmjs.org/ +5854 silly mapToRegistry uri https://registry.npmjs.org/hoist-non-react-statics +5855 silly resolveWithNewModule hoist-non-react-statics@2.3.1 checking installable status +5856 silly cache add args [ 'hoist-non-react-statics@^2.3.0', null ] +5857 verbose cache add spec hoist-non-react-statics@^2.3.0 +5858 silly fetchNamedPackageData path-to-regexp +5859 silly mapToRegistry name path-to-regexp +5860 silly mapToRegistry using default registry +5861 silly mapToRegistry registry https://registry.npmjs.org/ +5862 silly mapToRegistry uri https://registry.npmjs.org/path-to-regexp +5863 silly cache add parsed spec Result { +5863 silly cache add raw: 'hoist-non-react-statics@^2.3.0', +5863 silly cache add scope: null, +5863 silly cache add name: 'hoist-non-react-statics', +5863 silly cache add rawSpec: '^2.3.0', +5863 silly cache add spec: '>=2.3.0 <3.0.0', +5863 silly cache add type: 'range' } +5864 silly addNamed hoist-non-react-statics@>=2.3.0 <3.0.0 +5865 verbose addNamed ">=2.3.0 <3.0.0" is a valid semver range for hoist-non-react-statics +5866 silly addNameRange { name: 'hoist-non-react-statics', +5866 silly addNameRange range: '>=2.3.0 <3.0.0', +5866 silly addNameRange hasData: false } +5867 silly mapToRegistry name hoist-non-react-statics +5868 silly mapToRegistry using default registry +5869 silly mapToRegistry registry https://registry.npmjs.org/ +5870 silly mapToRegistry uri https://registry.npmjs.org/hoist-non-react-statics +5871 verbose addNameRange registry:https://registry.npmjs.org/hoist-non-react-statics not in flight; fetching +5872 verbose request uri https://registry.npmjs.org/hoist-non-react-statics +5873 verbose request no auth needed +5874 info attempt registry request try #1 at 3:04:00 PM +5875 verbose etag W/"59bb34e5-8640" +5876 verbose lastModified Fri, 15 Sep 2017 02:03:17 GMT +5877 http request GET https://registry.npmjs.org/hoist-non-react-statics +5878 verbose request uri https://registry.npmjs.org/path-to-regexp +5879 verbose request no auth needed +5880 info attempt registry request try #1 at 3:04:00 PM +5881 verbose etag W/"59b0b3bb-17cd5" +5882 verbose lastModified Thu, 07 Sep 2017 02:49:31 GMT +5883 http request GET https://registry.npmjs.org/path-to-regexp +5884 http 304 https://registry.npmjs.org/hoist-non-react-statics +5885 verbose headers { date: 'Mon, 02 Oct 2017 09:34:01 GMT', +5885 verbose headers via: '1.1 varnish', +5885 verbose headers 'cache-control': 'max-age=300', +5885 verbose headers etag: 'W/"59bb34e5-8640"', +5885 verbose headers age: '79', +5885 verbose headers connection: 'keep-alive', +5885 verbose headers 'x-served-by': 'cache-sin18023-SIN', +5885 verbose headers 'x-cache': 'HIT', +5885 verbose headers 'x-cache-hits': '82', +5885 verbose headers 'x-timer': 'S1506936841.345935,VS0,VE0', +5885 verbose headers vary: 'Accept-Encoding, Accept' } +5886 silly get cb [ 304, +5886 silly get { date: 'Mon, 02 Oct 2017 09:34:01 GMT', +5886 silly get via: '1.1 varnish', +5886 silly get 'cache-control': 'max-age=300', +5886 silly get etag: 'W/"59bb34e5-8640"', +5886 silly get age: '79', +5886 silly get connection: 'keep-alive', +5886 silly get 'x-served-by': 'cache-sin18023-SIN', +5886 silly get 'x-cache': 'HIT', +5886 silly get 'x-cache-hits': '82', +5886 silly get 'x-timer': 'S1506936841.345935,VS0,VE0', +5886 silly get vary: 'Accept-Encoding, Accept' } ] +5887 verbose etag https://registry.npmjs.org/hoist-non-react-statics from cache +5888 verbose get saving hoist-non-react-statics to /home/wso2/.npm/registry.npmjs.org/hoist-non-react-statics/.cache.json +5889 silly addNameRange number 2 { name: 'hoist-non-react-statics', +5889 silly addNameRange range: '>=2.3.0 <3.0.0', +5889 silly addNameRange hasData: true } +5890 silly addNameRange versions [ 'hoist-non-react-statics', +5890 silly addNameRange [ '1.0.0', +5890 silly addNameRange '1.0.1', +5890 silly addNameRange '1.0.2', +5890 silly addNameRange '1.0.3', +5890 silly addNameRange '1.0.4', +5890 silly addNameRange '1.0.5', +5890 silly addNameRange '1.0.6', +5890 silly addNameRange '1.1.0', +5890 silly addNameRange '1.2.0', +5890 silly addNameRange '2.0.0', +5890 silly addNameRange '2.1.0', +5890 silly addNameRange '2.1.1', +5890 silly addNameRange '2.2.0', +5890 silly addNameRange '2.2.1', +5890 silly addNameRange '2.2.2', +5890 silly addNameRange '2.3.0', +5890 silly addNameRange '2.3.1' ] ] +5891 silly addNamed hoist-non-react-statics@2.3.1 +5892 verbose addNamed "2.3.1" is a plain semver version for hoist-non-react-statics +5893 silly cache afterAdd hoist-non-react-statics@2.3.1 +5894 verbose afterAdd /home/wso2/.npm/hoist-non-react-statics/2.3.1/package/package.json not in flight; writing +5895 verbose afterAdd /home/wso2/.npm/hoist-non-react-statics/2.3.1/package/package.json written +5896 http 200 https://registry.npmjs.org/path-to-regexp +5897 verbose headers { server: 'nginx/1.10.3', +5897 verbose headers 'content-type': 'application/json', +5897 verbose headers 'last-modified': 'Sun, 01 Oct 2017 20:45:32 GMT', +5897 verbose headers etag: 'W/"59d153ec-17d13"', +5897 verbose headers 'content-encoding': 'gzip', +5897 verbose headers 'cache-control': 'max-age=300', +5897 verbose headers 'content-length': '9189', +5897 verbose headers 'accept-ranges': 'bytes', +5897 verbose headers date: 'Mon, 02 Oct 2017 09:34:01 GMT', +5897 verbose headers via: '1.1 varnish', +5897 verbose headers age: '99', +5897 verbose headers connection: 'keep-alive', +5897 verbose headers 'x-served-by': 'cache-sin18032-SIN', +5897 verbose headers 'x-cache': 'HIT', +5897 verbose headers 'x-cache-hits': '2', +5897 verbose headers 'x-timer': 'S1506936841.367685,VS0,VE0', +5897 verbose headers vary: 'Accept-Encoding, Accept' } +5898 silly get cb [ 200, +5898 silly get { server: 'nginx/1.10.3', +5898 silly get 'content-type': 'application/json', +5898 silly get 'last-modified': 'Sun, 01 Oct 2017 20:45:32 GMT', +5898 silly get etag: 'W/"59d153ec-17d13"', +5898 silly get 'content-encoding': 'gzip', +5898 silly get 'cache-control': 'max-age=300', +5898 silly get 'content-length': '9189', +5898 silly get 'accept-ranges': 'bytes', +5898 silly get date: 'Mon, 02 Oct 2017 09:34:01 GMT', +5898 silly get via: '1.1 varnish', +5898 silly get age: '99', +5898 silly get connection: 'keep-alive', +5898 silly get 'x-served-by': 'cache-sin18032-SIN', +5898 silly get 'x-cache': 'HIT', +5898 silly get 'x-cache-hits': '2', +5898 silly get 'x-timer': 'S1506936841.367685,VS0,VE0', +5898 silly get vary: 'Accept-Encoding, Accept' } ] +5899 verbose get saving path-to-regexp to /home/wso2/.npm/registry.npmjs.org/path-to-regexp/.cache.json +5900 silly resolveWithNewModule path-to-regexp@1.7.0 checking installable status +5901 silly cache add args [ 'path-to-regexp@^1.7.0', null ] +5902 verbose cache add spec path-to-regexp@^1.7.0 +5903 silly cache add parsed spec Result { +5903 silly cache add raw: 'path-to-regexp@^1.7.0', +5903 silly cache add scope: null, +5903 silly cache add name: 'path-to-regexp', +5903 silly cache add rawSpec: '^1.7.0', +5903 silly cache add spec: '>=1.7.0 <2.0.0', +5903 silly cache add type: 'range' } +5904 silly addNamed path-to-regexp@>=1.7.0 <2.0.0 +5905 verbose addNamed ">=1.7.0 <2.0.0" is a valid semver range for path-to-regexp +5906 silly addNameRange { name: 'path-to-regexp', +5906 silly addNameRange range: '>=1.7.0 <2.0.0', +5906 silly addNameRange hasData: false } +5907 silly mapToRegistry name path-to-regexp +5908 silly mapToRegistry using default registry +5909 silly mapToRegistry registry https://registry.npmjs.org/ +5910 silly mapToRegistry uri https://registry.npmjs.org/path-to-regexp +5911 verbose addNameRange registry:https://registry.npmjs.org/path-to-regexp not in flight; fetching +5912 verbose get https://registry.npmjs.org/path-to-regexp not expired, no request +5913 silly addNameRange number 2 { name: 'path-to-regexp', +5913 silly addNameRange range: '>=1.7.0 <2.0.0', +5913 silly addNameRange hasData: true } +5914 silly addNameRange versions [ 'path-to-regexp', +5914 silly addNameRange [ '0.0.1', +5914 silly addNameRange '0.0.2', +5914 silly addNameRange '0.1.0', +5914 silly addNameRange '0.1.1', +5914 silly addNameRange '0.1.2', +5914 silly addNameRange '0.2.0', +5914 silly addNameRange '0.2.1', +5914 silly addNameRange '0.1.3', +5914 silly addNameRange '0.2.2', +5914 silly addNameRange '0.2.3', +5914 silly addNameRange '0.2.4', +5914 silly addNameRange '0.2.5', +5914 silly addNameRange '1.0.0', +5914 silly addNameRange '1.0.1', +5914 silly addNameRange '1.0.2', +5914 silly addNameRange '1.0.3', +5914 silly addNameRange '0.1.4', +5914 silly addNameRange '0.1.5', +5914 silly addNameRange '1.1.0', +5914 silly addNameRange '1.1.1', +5914 silly addNameRange '1.2.0', +5914 silly addNameRange '0.1.6', +5914 silly addNameRange '0.1.7', +5914 silly addNameRange '1.2.1', +5914 silly addNameRange '1.3.0', +5914 silly addNameRange '1.4.0', +5914 silly addNameRange '1.5.0', +5914 silly addNameRange '1.5.1', +5914 silly addNameRange '1.5.2', +5914 silly addNameRange '1.5.3', +5914 silly addNameRange '1.6.0', +5914 silly addNameRange '1.7.0', +5914 silly addNameRange '2.0.0' ] ] +5915 silly addNamed path-to-regexp@1.7.0 +5916 verbose addNamed "1.7.0" is a plain semver version for path-to-regexp +5917 silly cache afterAdd path-to-regexp@1.7.0 +5918 verbose afterAdd /home/wso2/.npm/path-to-regexp/1.7.0/package/package.json not in flight; writing +5919 verbose afterAdd /home/wso2/.npm/path-to-regexp/1.7.0/package/package.json written +5920 silly fetchNamedPackageData isarray +5921 silly mapToRegistry name isarray +5922 silly mapToRegistry using default registry +5923 silly mapToRegistry registry https://registry.npmjs.org/ +5924 silly mapToRegistry uri https://registry.npmjs.org/isarray +5925 verbose request uri https://registry.npmjs.org/isarray +5926 verbose request no auth needed +5927 info attempt registry request try #1 at 3:04:01 PM +5928 verbose etag W/"5965e354-286a" +5929 verbose lastModified Wed, 12 Jul 2017 08:52:36 GMT +5930 http request GET https://registry.npmjs.org/isarray +5931 http 304 https://registry.npmjs.org/isarray +5932 verbose headers { date: 'Mon, 02 Oct 2017 09:34:01 GMT', +5932 verbose headers via: '1.1 varnish', +5932 verbose headers 'cache-control': 'max-age=300', +5932 verbose headers etag: 'W/"5965e354-286a"', +5932 verbose headers age: '163', +5932 verbose headers connection: 'keep-alive', +5932 verbose headers 'x-served-by': 'cache-sin18023-SIN', +5932 verbose headers 'x-cache': 'HIT', +5932 verbose headers 'x-cache-hits': '22', +5932 verbose headers 'x-timer': 'S1506936842.588827,VS0,VE0', +5932 verbose headers vary: 'Accept-Encoding, Accept' } +5933 silly get cb [ 304, +5933 silly get { date: 'Mon, 02 Oct 2017 09:34:01 GMT', +5933 silly get via: '1.1 varnish', +5933 silly get 'cache-control': 'max-age=300', +5933 silly get etag: 'W/"5965e354-286a"', +5933 silly get age: '163', +5933 silly get connection: 'keep-alive', +5933 silly get 'x-served-by': 'cache-sin18023-SIN', +5933 silly get 'x-cache': 'HIT', +5933 silly get 'x-cache-hits': '22', +5933 silly get 'x-timer': 'S1506936842.588827,VS0,VE0', +5933 silly get vary: 'Accept-Encoding, Accept' } ] +5934 verbose etag https://registry.npmjs.org/isarray from cache +5935 verbose get saving isarray to /home/wso2/.npm/registry.npmjs.org/isarray/.cache.json +5936 silly resolveWithNewModule isarray@0.0.1 checking installable status +5937 silly cache add args [ 'isarray@0.0.1', null ] +5938 verbose cache add spec isarray@0.0.1 +5939 silly cache add parsed spec Result { +5939 silly cache add raw: 'isarray@0.0.1', +5939 silly cache add scope: null, +5939 silly cache add name: 'isarray', +5939 silly cache add rawSpec: '0.0.1', +5939 silly cache add spec: '0.0.1', +5939 silly cache add type: 'version' } +5940 silly addNamed isarray@0.0.1 +5941 verbose addNamed "0.0.1" is a plain semver version for isarray +5942 silly mapToRegistry name isarray +5943 silly mapToRegistry using default registry +5944 silly mapToRegistry registry https://registry.npmjs.org/ +5945 silly mapToRegistry uri https://registry.npmjs.org/isarray +5946 verbose addNameVersion registry:https://registry.npmjs.org/isarray not in flight; fetching +5947 verbose get https://registry.npmjs.org/isarray not expired, no request +5948 silly cache afterAdd isarray@0.0.1 +5949 verbose afterAdd /home/wso2/.npm/isarray/0.0.1/package/package.json not in flight; writing +5950 verbose afterAdd /home/wso2/.npm/isarray/0.0.1/package/package.json written +5951 silly fetchNamedPackageData autoprefixer +5952 silly mapToRegistry name autoprefixer +5953 silly mapToRegistry using default registry +5954 silly mapToRegistry registry https://registry.npmjs.org/ +5955 silly mapToRegistry uri https://registry.npmjs.org/autoprefixer +5956 silly fetchNamedPackageData babel-core +5957 silly mapToRegistry name babel-core +5958 silly mapToRegistry using default registry +5959 silly mapToRegistry registry https://registry.npmjs.org/ +5960 silly mapToRegistry uri https://registry.npmjs.org/babel-core +5961 silly resolveWithNewModule babel-core@6.25.0 checking installable status +5962 silly cache add args [ 'babel-core@6.25.0', null ] +5963 verbose cache add spec babel-core@6.25.0 +5964 silly fetchNamedPackageData babel-eslint +5965 silly mapToRegistry name babel-eslint +5966 silly mapToRegistry using default registry +5967 silly mapToRegistry registry https://registry.npmjs.org/ +5968 silly mapToRegistry uri https://registry.npmjs.org/babel-eslint +5969 silly fetchNamedPackageData babel-jest +5970 silly mapToRegistry name babel-jest +5971 silly mapToRegistry using default registry +5972 silly mapToRegistry registry https://registry.npmjs.org/ +5973 silly mapToRegistry uri https://registry.npmjs.org/babel-jest +5974 silly fetchNamedPackageData babel-loader +5975 silly mapToRegistry name babel-loader +5976 silly mapToRegistry using default registry +5977 silly mapToRegistry registry https://registry.npmjs.org/ +5978 silly mapToRegistry uri https://registry.npmjs.org/babel-loader +5979 silly fetchNamedPackageData babel-preset-react-app +5980 silly mapToRegistry name babel-preset-react-app +5981 silly mapToRegistry using default registry +5982 silly mapToRegistry registry https://registry.npmjs.org/ +5983 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-react-app +5984 silly fetchNamedPackageData babel-runtime +5985 silly mapToRegistry name babel-runtime +5986 silly mapToRegistry using default registry +5987 silly mapToRegistry registry https://registry.npmjs.org/ +5988 silly mapToRegistry uri https://registry.npmjs.org/babel-runtime +5989 silly resolveWithNewModule babel-runtime@6.23.0 checking installable status +5990 silly cache add args [ 'babel-runtime@6.23.0', null ] +5991 verbose cache add spec babel-runtime@6.23.0 +5992 silly fetchNamedPackageData case-sensitive-paths-webpack-plugin +5993 silly mapToRegistry name case-sensitive-paths-webpack-plugin +5994 silly mapToRegistry using default registry +5995 silly mapToRegistry registry https://registry.npmjs.org/ +5996 silly mapToRegistry uri https://registry.npmjs.org/case-sensitive-paths-webpack-plugin +5997 silly fetchNamedPackageData css-loader +5998 silly mapToRegistry name css-loader +5999 silly mapToRegistry using default registry +6000 silly mapToRegistry registry https://registry.npmjs.org/ +6001 silly mapToRegistry uri https://registry.npmjs.org/css-loader +6002 silly fetchNamedPackageData dotenv +6003 silly mapToRegistry name dotenv +6004 silly mapToRegistry using default registry +6005 silly mapToRegistry registry https://registry.npmjs.org/ +6006 silly mapToRegistry uri https://registry.npmjs.org/dotenv +6007 silly fetchNamedPackageData eslint +6008 silly mapToRegistry name eslint +6009 silly mapToRegistry using default registry +6010 silly mapToRegistry registry https://registry.npmjs.org/ +6011 silly mapToRegistry uri https://registry.npmjs.org/eslint +6012 silly fetchNamedPackageData eslint-config-react-app +6013 silly mapToRegistry name eslint-config-react-app +6014 silly mapToRegistry using default registry +6015 silly mapToRegistry registry https://registry.npmjs.org/ +6016 silly mapToRegistry uri https://registry.npmjs.org/eslint-config-react-app +6017 silly fetchNamedPackageData eslint-loader +6018 silly mapToRegistry name eslint-loader +6019 silly mapToRegistry using default registry +6020 silly mapToRegistry registry https://registry.npmjs.org/ +6021 silly mapToRegistry uri https://registry.npmjs.org/eslint-loader +6022 silly fetchNamedPackageData eslint-plugin-flowtype +6023 silly mapToRegistry name eslint-plugin-flowtype +6024 silly mapToRegistry using default registry +6025 silly mapToRegistry registry https://registry.npmjs.org/ +6026 silly mapToRegistry uri https://registry.npmjs.org/eslint-plugin-flowtype +6027 silly fetchNamedPackageData eslint-plugin-import +6028 silly mapToRegistry name eslint-plugin-import +6029 silly mapToRegistry using default registry +6030 silly mapToRegistry registry https://registry.npmjs.org/ +6031 silly mapToRegistry uri https://registry.npmjs.org/eslint-plugin-import +6032 silly fetchNamedPackageData eslint-plugin-jsx-a11y +6033 silly mapToRegistry name eslint-plugin-jsx-a11y +6034 silly mapToRegistry using default registry +6035 silly mapToRegistry registry https://registry.npmjs.org/ +6036 silly mapToRegistry uri https://registry.npmjs.org/eslint-plugin-jsx-a11y +6037 silly fetchNamedPackageData eslint-plugin-react +6038 silly mapToRegistry name eslint-plugin-react +6039 silly mapToRegistry using default registry +6040 silly mapToRegistry registry https://registry.npmjs.org/ +6041 silly mapToRegistry uri https://registry.npmjs.org/eslint-plugin-react +6042 silly fetchNamedPackageData extract-text-webpack-plugin +6043 silly mapToRegistry name extract-text-webpack-plugin +6044 silly mapToRegistry using default registry +6045 silly mapToRegistry registry https://registry.npmjs.org/ +6046 silly mapToRegistry uri https://registry.npmjs.org/extract-text-webpack-plugin +6047 silly fetchNamedPackageData file-loader +6048 silly mapToRegistry name file-loader +6049 silly mapToRegistry using default registry +6050 silly mapToRegistry registry https://registry.npmjs.org/ +6051 silly mapToRegistry uri https://registry.npmjs.org/file-loader +6052 silly fetchNamedPackageData fs-extra +6053 silly mapToRegistry name fs-extra +6054 silly mapToRegistry using default registry +6055 silly mapToRegistry registry https://registry.npmjs.org/ +6056 silly mapToRegistry uri https://registry.npmjs.org/fs-extra +6057 silly fetchNamedPackageData html-webpack-plugin +6058 silly mapToRegistry name html-webpack-plugin +6059 silly mapToRegistry using default registry +6060 silly mapToRegistry registry https://registry.npmjs.org/ +6061 silly mapToRegistry uri https://registry.npmjs.org/html-webpack-plugin +6062 silly fetchNamedPackageData jest +6063 silly mapToRegistry name jest +6064 silly mapToRegistry using default registry +6065 silly mapToRegistry registry https://registry.npmjs.org/ +6066 silly mapToRegistry uri https://registry.npmjs.org/jest +6067 silly fetchNamedPackageData postcss-flexbugs-fixes +6068 silly mapToRegistry name postcss-flexbugs-fixes +6069 silly mapToRegistry using default registry +6070 silly mapToRegistry registry https://registry.npmjs.org/ +6071 silly mapToRegistry uri https://registry.npmjs.org/postcss-flexbugs-fixes +6072 silly fetchNamedPackageData postcss-loader +6073 silly mapToRegistry name postcss-loader +6074 silly mapToRegistry using default registry +6075 silly mapToRegistry registry https://registry.npmjs.org/ +6076 silly mapToRegistry uri https://registry.npmjs.org/postcss-loader +6077 silly fetchNamedPackageData promise +6078 silly mapToRegistry name promise +6079 silly mapToRegistry using default registry +6080 silly mapToRegistry registry https://registry.npmjs.org/ +6081 silly mapToRegistry uri https://registry.npmjs.org/promise +6082 silly resolveWithNewModule promise@7.1.1 checking installable status +6083 silly cache add args [ 'promise@7.1.1', null ] +6084 verbose cache add spec promise@7.1.1 +6085 silly fetchNamedPackageData react-dev-utils +6086 silly mapToRegistry name react-dev-utils +6087 silly mapToRegistry using default registry +6088 silly mapToRegistry registry https://registry.npmjs.org/ +6089 silly mapToRegistry uri https://registry.npmjs.org/react-dev-utils +6090 silly fetchNamedPackageData react-error-overlay +6091 silly mapToRegistry name react-error-overlay +6092 silly mapToRegistry using default registry +6093 silly mapToRegistry registry https://registry.npmjs.org/ +6094 silly mapToRegistry uri https://registry.npmjs.org/react-error-overlay +6095 silly fetchNamedPackageData style-loader +6096 silly mapToRegistry name style-loader +6097 silly mapToRegistry using default registry +6098 silly mapToRegistry registry https://registry.npmjs.org/ +6099 silly mapToRegistry uri https://registry.npmjs.org/style-loader +6100 silly fetchNamedPackageData sw-precache-webpack-plugin +6101 silly mapToRegistry name sw-precache-webpack-plugin +6102 silly mapToRegistry using default registry +6103 silly mapToRegistry registry https://registry.npmjs.org/ +6104 silly mapToRegistry uri https://registry.npmjs.org/sw-precache-webpack-plugin +6105 silly fetchNamedPackageData url-loader +6106 silly mapToRegistry name url-loader +6107 silly mapToRegistry using default registry +6108 silly mapToRegistry registry https://registry.npmjs.org/ +6109 silly mapToRegistry uri https://registry.npmjs.org/url-loader +6110 silly fetchNamedPackageData webpack +6111 silly mapToRegistry name webpack +6112 silly mapToRegistry using default registry +6113 silly mapToRegistry registry https://registry.npmjs.org/ +6114 silly mapToRegistry uri https://registry.npmjs.org/webpack +6115 silly fetchNamedPackageData webpack-dev-server +6116 silly mapToRegistry name webpack-dev-server +6117 silly mapToRegistry using default registry +6118 silly mapToRegistry registry https://registry.npmjs.org/ +6119 silly mapToRegistry uri https://registry.npmjs.org/webpack-dev-server +6120 silly fetchNamedPackageData webpack-manifest-plugin +6121 silly mapToRegistry name webpack-manifest-plugin +6122 silly mapToRegistry using default registry +6123 silly mapToRegistry registry https://registry.npmjs.org/ +6124 silly mapToRegistry uri https://registry.npmjs.org/webpack-manifest-plugin +6125 silly fetchNamedPackageData fsevents +6126 silly mapToRegistry name fsevents +6127 silly mapToRegistry using default registry +6128 silly mapToRegistry registry https://registry.npmjs.org/ +6129 silly mapToRegistry uri https://registry.npmjs.org/fsevents +6130 silly cache add parsed spec Result { +6130 silly cache add raw: 'babel-core@6.25.0', +6130 silly cache add scope: null, +6130 silly cache add name: 'babel-core', +6130 silly cache add rawSpec: '6.25.0', +6130 silly cache add spec: '6.25.0', +6130 silly cache add type: 'version' } +6131 silly addNamed babel-core@6.25.0 +6132 verbose addNamed "6.25.0" is a plain semver version for babel-core +6133 silly mapToRegistry name babel-core +6134 silly mapToRegistry using default registry +6135 silly mapToRegistry registry https://registry.npmjs.org/ +6136 silly mapToRegistry uri https://registry.npmjs.org/babel-core +6137 verbose addNameVersion registry:https://registry.npmjs.org/babel-core not in flight; fetching +6138 silly cache add parsed spec Result { +6138 silly cache add raw: 'babel-runtime@6.23.0', +6138 silly cache add scope: null, +6138 silly cache add name: 'babel-runtime', +6138 silly cache add rawSpec: '6.23.0', +6138 silly cache add spec: '6.23.0', +6138 silly cache add type: 'version' } +6139 silly addNamed babel-runtime@6.23.0 +6140 verbose addNamed "6.23.0" is a plain semver version for babel-runtime +6141 silly mapToRegistry name babel-runtime +6142 silly mapToRegistry using default registry +6143 silly mapToRegistry registry https://registry.npmjs.org/ +6144 silly mapToRegistry uri https://registry.npmjs.org/babel-runtime +6145 verbose addNameVersion registry:https://registry.npmjs.org/babel-runtime not in flight; fetching +6146 silly cache add parsed spec Result { +6146 silly cache add raw: 'promise@7.1.1', +6146 silly cache add scope: null, +6146 silly cache add name: 'promise', +6146 silly cache add rawSpec: '7.1.1', +6146 silly cache add spec: '7.1.1', +6146 silly cache add type: 'version' } +6147 silly addNamed promise@7.1.1 +6148 verbose addNamed "7.1.1" is a plain semver version for promise +6149 silly mapToRegistry name promise +6150 silly mapToRegistry using default registry +6151 silly mapToRegistry registry https://registry.npmjs.org/ +6152 silly mapToRegistry uri https://registry.npmjs.org/promise +6153 verbose addNameVersion registry:https://registry.npmjs.org/promise not in flight; fetching +6154 verbose request uri https://registry.npmjs.org/babel-eslint +6155 verbose request no auth needed +6156 info attempt registry request try #1 at 3:04:01 PM +6157 verbose etag W/"59aff027-27ef3" +6158 verbose lastModified Wed, 06 Sep 2017 12:55:03 GMT +6159 http request GET https://registry.npmjs.org/babel-eslint +6160 verbose request uri https://registry.npmjs.org/babel-jest +6161 verbose request no auth needed +6162 info attempt registry request try #1 at 3:04:01 PM +6163 verbose etag W/"59ad6af0-17da5" +6164 verbose lastModified Mon, 04 Sep 2017 15:02:08 GMT +6165 http request GET https://registry.npmjs.org/babel-jest +6166 verbose request uri https://registry.npmjs.org/case-sensitive-paths-webpack-plugin +6167 verbose request no auth needed +6168 info attempt registry request try #1 at 3:04:01 PM +6169 verbose etag W/"5959a82c-464e" +6170 verbose lastModified Mon, 03 Jul 2017 02:13:00 GMT +6171 http request GET https://registry.npmjs.org/case-sensitive-paths-webpack-plugin +6172 verbose request uri https://registry.npmjs.org/babel-loader +6173 verbose request no auth needed +6174 info attempt registry request try #1 at 3:04:01 PM +6175 verbose etag W/"59adb0de-189c9" +6176 verbose lastModified Mon, 04 Sep 2017 20:00:30 GMT +6177 http request GET https://registry.npmjs.org/babel-loader +6178 verbose request uri https://registry.npmjs.org/babel-preset-react-app +6179 verbose request no auth needed +6180 info attempt registry request try #1 at 3:04:01 PM +6181 verbose etag W/"598a8414-aed6" +6182 verbose lastModified Wed, 09 Aug 2017 03:40:04 GMT +6183 http request GET https://registry.npmjs.org/babel-preset-react-app +6184 verbose request uri https://registry.npmjs.org/autoprefixer +6185 verbose request no auth needed +6186 info attempt registry request try #1 at 3:04:01 PM +6187 verbose etag W/"59b0d65b-4ec8d" +6188 verbose lastModified Thu, 07 Sep 2017 05:17:15 GMT +6189 http request GET https://registry.npmjs.org/autoprefixer +6190 verbose request uri https://registry.npmjs.org/dotenv +6191 verbose request no auth needed +6192 info attempt registry request try #1 at 3:04:01 PM +6193 verbose etag W/"59b119dc-9f2c" +6194 verbose lastModified Thu, 07 Sep 2017 10:05:16 GMT +6195 http request GET https://registry.npmjs.org/dotenv +6196 verbose request uri https://registry.npmjs.org/css-loader +6197 verbose request no auth needed +6198 info attempt registry request try #1 at 3:04:01 PM +6199 verbose etag W/"59b12d0f-1fd1c" +6200 verbose lastModified Thu, 07 Sep 2017 11:27:11 GMT +6201 http request GET https://registry.npmjs.org/css-loader +6202 verbose request uri https://registry.npmjs.org/eslint-config-react-app +6203 verbose request no auth needed +6204 info attempt registry request try #1 at 3:04:01 PM +6205 verbose etag W/"598a8414-b9f6" +6206 verbose lastModified Wed, 09 Aug 2017 03:40:04 GMT +6207 http request GET https://registry.npmjs.org/eslint-config-react-app +6208 verbose request uri https://registry.npmjs.org/eslint-loader +6209 verbose request no auth needed +6210 info attempt registry request try #1 at 3:04:01 PM +6211 verbose etag W/"599d77eb-d950" +6212 verbose lastModified Wed, 23 Aug 2017 12:41:15 GMT +6213 http request GET https://registry.npmjs.org/eslint-loader +6214 verbose request uri https://registry.npmjs.org/eslint +6215 verbose request no auth needed +6216 info attempt registry request try #1 at 3:04:01 PM +6217 verbose etag W/"59ac6e9e-7ab6a" +6218 verbose lastModified Sun, 03 Sep 2017 21:05:34 GMT +6219 http request GET https://registry.npmjs.org/eslint +6220 verbose request uri https://registry.npmjs.org/eslint-plugin-flowtype +6221 verbose request no auth needed +6222 info attempt registry request try #1 at 3:04:01 PM +6223 verbose etag W/"59a97a78-372e3" +6224 verbose lastModified Fri, 01 Sep 2017 15:19:20 GMT +6225 http request GET https://registry.npmjs.org/eslint-plugin-flowtype +6226 verbose request uri https://registry.npmjs.org/eslint-plugin-jsx-a11y +6227 verbose request no auth needed +6228 info attempt registry request try #1 at 3:04:01 PM +6229 verbose etag W/"599cfb8a-24d2c" +6230 verbose lastModified Wed, 23 Aug 2017 03:50:34 GMT +6231 http request GET https://registry.npmjs.org/eslint-plugin-jsx-a11y +6232 verbose request uri https://registry.npmjs.org/file-loader +6233 verbose request no auth needed +6234 info attempt registry request try #1 at 3:04:01 PM +6235 verbose etag W/"59b22bba-a3f2" +6236 verbose lastModified Fri, 08 Sep 2017 05:33:46 GMT +6237 http request GET https://registry.npmjs.org/file-loader +6238 verbose request uri https://registry.npmjs.org/eslint-plugin-react +6239 verbose request no auth needed +6240 info attempt registry request try #1 at 3:04:01 PM +6241 verbose etag W/"59b0ba26-30655" +6242 verbose lastModified Thu, 07 Sep 2017 03:16:54 GMT +6243 http request GET https://registry.npmjs.org/eslint-plugin-react +6244 verbose request uri https://registry.npmjs.org/eslint-plugin-import +6245 verbose request no auth needed +6246 info attempt registry request try #1 at 3:04:01 PM +6247 verbose etag W/"5996c814-30dcc" +6248 verbose lastModified Fri, 18 Aug 2017 10:57:24 GMT +6249 http request GET https://registry.npmjs.org/eslint-plugin-import +6250 verbose request uri https://registry.npmjs.org/extract-text-webpack-plugin +6251 verbose request no auth needed +6252 info attempt registry request try #1 at 3:04:01 PM +6253 verbose etag W/"59a97be6-18a76" +6254 verbose lastModified Fri, 01 Sep 2017 15:25:26 GMT +6255 http request GET https://registry.npmjs.org/extract-text-webpack-plugin +6256 verbose request uri https://registry.npmjs.org/html-webpack-plugin +6257 verbose request no auth needed +6258 info attempt registry request try #1 at 3:04:01 PM +6259 verbose etag W/"59ad90c3-217e3" +6260 verbose lastModified Mon, 04 Sep 2017 17:43:31 GMT +6261 http request GET https://registry.npmjs.org/html-webpack-plugin +6262 verbose request uri https://registry.npmjs.org/fs-extra +6263 verbose request no auth needed +6264 info attempt registry request try #1 at 3:04:01 PM +6265 verbose etag W/"59adb064-20a2d" +6266 verbose lastModified Mon, 04 Sep 2017 19:58:28 GMT +6267 http request GET https://registry.npmjs.org/fs-extra +6268 verbose request uri https://registry.npmjs.org/postcss-flexbugs-fixes +6269 verbose request no auth needed +6270 info attempt registry request try #1 at 3:04:01 PM +6271 verbose etag W/"597f4ad0-4c2f" +6272 verbose lastModified Mon, 31 Jul 2017 15:20:48 GMT +6273 http request GET https://registry.npmjs.org/postcss-flexbugs-fixes +6274 verbose request uri https://registry.npmjs.org/jest +6275 verbose request no auth needed +6276 info attempt registry request try #1 at 3:04:01 PM +6277 verbose etag W/"59af09ea-24d4c" +6278 verbose lastModified Tue, 05 Sep 2017 20:32:42 GMT +6279 http request GET https://registry.npmjs.org/jest +6280 verbose request uri https://registry.npmjs.org/postcss-loader +6281 verbose request no auth needed +6282 info attempt registry request try #1 at 3:04:01 PM +6283 verbose etag W/"59af96e1-11fcc" +6284 verbose lastModified Wed, 06 Sep 2017 06:34:09 GMT +6285 http request GET https://registry.npmjs.org/postcss-loader +6286 verbose request uri https://registry.npmjs.org/react-dev-utils +6287 verbose request no auth needed +6288 info attempt registry request try #1 at 3:04:01 PM +6289 verbose etag W/"59ab1b7f-133f4" +6290 verbose lastModified Sat, 02 Sep 2017 20:58:39 GMT +6291 http request GET https://registry.npmjs.org/react-dev-utils +6292 verbose request uri https://registry.npmjs.org/style-loader +6293 verbose request no auth needed +6294 info attempt registry request try #1 at 3:04:01 PM +6295 verbose etag W/"59ad76ca-e90b" +6296 verbose lastModified Mon, 04 Sep 2017 15:52:42 GMT +6297 http request GET https://registry.npmjs.org/style-loader +6298 verbose request uri https://registry.npmjs.org/react-error-overlay +6299 verbose request no auth needed +6300 info attempt registry request try #1 at 3:04:01 PM +6301 verbose etag W/"59ab1b7e-d2dc" +6302 verbose lastModified Sat, 02 Sep 2017 20:58:38 GMT +6303 http request GET https://registry.npmjs.org/react-error-overlay +6304 verbose request uri https://registry.npmjs.org/url-loader +6305 verbose request no auth needed +6306 info attempt registry request try #1 at 3:04:01 PM +6307 verbose etag W/"59a97a69-4975" +6308 verbose lastModified Fri, 01 Sep 2017 15:19:05 GMT +6309 http request GET https://registry.npmjs.org/url-loader +6310 verbose request uri https://registry.npmjs.org/sw-precache-webpack-plugin +6311 verbose request no auth needed +6312 info attempt registry request try #1 at 3:04:01 PM +6313 verbose etag W/"59ada2ad-109ec" +6314 verbose lastModified Mon, 04 Sep 2017 18:59:57 GMT +6315 http request GET https://registry.npmjs.org/sw-precache-webpack-plugin +6316 verbose request uri https://registry.npmjs.org/webpack-dev-server +6317 verbose request no auth needed +6318 info attempt registry request try #1 at 3:04:01 PM +6319 verbose etag W/"59a6f9bf-32613" +6320 verbose lastModified Wed, 30 Aug 2017 17:45:35 GMT +6321 http request GET https://registry.npmjs.org/webpack-dev-server +6322 verbose request uri https://registry.npmjs.org/webpack-manifest-plugin +6323 verbose request no auth needed +6324 info attempt registry request try #1 at 3:04:01 PM +6325 verbose etag W/"5995bcd6-6dee" +6326 verbose lastModified Thu, 17 Aug 2017 15:57:10 GMT +6327 http request GET https://registry.npmjs.org/webpack-manifest-plugin +6328 verbose request uri https://registry.npmjs.org/babel-runtime +6329 verbose request no auth needed +6330 info attempt registry request try #1 at 3:04:01 PM +6331 verbose etag W/"59d0d474-2b3b1" +6332 verbose lastModified Sun, 01 Oct 2017 11:41:40 GMT +6333 http request GET https://registry.npmjs.org/babel-runtime +6334 verbose request uri https://registry.npmjs.org/promise +6335 verbose request no auth needed +6336 info attempt registry request try #1 at 3:04:01 PM +6337 verbose etag W/"59caadb9-ad91" +6338 verbose lastModified Tue, 26 Sep 2017 19:42:49 GMT +6339 http request GET https://registry.npmjs.org/promise +6340 verbose request uri https://registry.npmjs.org/webpack +6341 verbose request no auth needed +6342 info attempt registry request try #1 at 3:04:01 PM +6343 verbose etag W/"59b241ea-104aaa" +6344 verbose lastModified Fri, 08 Sep 2017 07:08:26 GMT +6345 http request GET https://registry.npmjs.org/webpack +6346 verbose request uri https://registry.npmjs.org/babel-core +6347 verbose request no auth needed +6348 info attempt registry request try #1 at 3:04:01 PM +6349 verbose etag W/"59d19dca-8078e" +6350 verbose lastModified Mon, 02 Oct 2017 02:00:42 GMT +6351 http request GET https://registry.npmjs.org/babel-core +6352 verbose request uri https://registry.npmjs.org/fsevents +6353 verbose request no auth needed +6354 info attempt registry request try #1 at 3:04:01 PM +6355 verbose etag W/"597215e7-dd9a" +6356 verbose lastModified Fri, 21 Jul 2017 14:55:35 GMT +6357 http request GET https://registry.npmjs.org/fsevents +6358 http 304 https://registry.npmjs.org/case-sensitive-paths-webpack-plugin +6359 verbose headers { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6359 verbose headers via: '1.1 varnish', +6359 verbose headers 'cache-control': 'max-age=300', +6359 verbose headers etag: 'W/"5959a82c-464e"', +6359 verbose headers age: '89', +6359 verbose headers connection: 'keep-alive', +6359 verbose headers 'x-served-by': 'cache-sin18020-SIN', +6359 verbose headers 'x-cache': 'HIT', +6359 verbose headers 'x-cache-hits': '1', +6359 verbose headers 'x-timer': 'S1506936842.082845,VS0,VE0', +6359 verbose headers vary: 'Accept-Encoding, Accept' } +6360 silly get cb [ 304, +6360 silly get { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6360 silly get via: '1.1 varnish', +6360 silly get 'cache-control': 'max-age=300', +6360 silly get etag: 'W/"5959a82c-464e"', +6360 silly get age: '89', +6360 silly get connection: 'keep-alive', +6360 silly get 'x-served-by': 'cache-sin18020-SIN', +6360 silly get 'x-cache': 'HIT', +6360 silly get 'x-cache-hits': '1', +6360 silly get 'x-timer': 'S1506936842.082845,VS0,VE0', +6360 silly get vary: 'Accept-Encoding, Accept' } ] +6361 verbose etag https://registry.npmjs.org/case-sensitive-paths-webpack-plugin from cache +6362 verbose get saving case-sensitive-paths-webpack-plugin to /home/wso2/.npm/registry.npmjs.org/case-sensitive-paths-webpack-plugin/.cache.json +6363 http 304 https://registry.npmjs.org/postcss-flexbugs-fixes +6364 verbose headers { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6364 verbose headers via: '1.1 varnish', +6364 verbose headers 'cache-control': 'max-age=300', +6364 verbose headers etag: 'W/"597f4ad0-4c2f"', +6364 verbose headers age: '88', +6364 verbose headers connection: 'keep-alive', +6364 verbose headers 'x-served-by': 'cache-sin18033-SIN', +6364 verbose headers 'x-cache': 'HIT', +6364 verbose headers 'x-cache-hits': '2', +6364 verbose headers 'x-timer': 'S1506936842.343799,VS0,VE0', +6364 verbose headers vary: 'Accept-Encoding, Accept' } +6365 silly get cb [ 304, +6365 silly get { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6365 silly get via: '1.1 varnish', +6365 silly get 'cache-control': 'max-age=300', +6365 silly get etag: 'W/"597f4ad0-4c2f"', +6365 silly get age: '88', +6365 silly get connection: 'keep-alive', +6365 silly get 'x-served-by': 'cache-sin18033-SIN', +6365 silly get 'x-cache': 'HIT', +6365 silly get 'x-cache-hits': '2', +6365 silly get 'x-timer': 'S1506936842.343799,VS0,VE0', +6365 silly get vary: 'Accept-Encoding, Accept' } ] +6366 verbose etag https://registry.npmjs.org/postcss-flexbugs-fixes from cache +6367 verbose get saving postcss-flexbugs-fixes to /home/wso2/.npm/registry.npmjs.org/postcss-flexbugs-fixes/.cache.json +6368 http 200 https://registry.npmjs.org/babel-preset-react-app +6369 verbose headers { server: 'nginx/1.10.3', +6369 verbose headers 'content-type': 'application/json', +6369 verbose headers 'last-modified': 'Wed, 27 Sep 2017 00:19:53 GMT', +6369 verbose headers etag: 'W/"59caeea9-b5b2"', +6369 verbose headers 'content-encoding': 'gzip', +6369 verbose headers 'cache-control': 'max-age=300', +6369 verbose headers 'content-length': '4684', +6369 verbose headers 'accept-ranges': 'bytes', +6369 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6369 verbose headers via: '1.1 varnish', +6369 verbose headers age: '90', +6369 verbose headers connection: 'keep-alive', +6369 verbose headers 'x-served-by': 'cache-sin18025-SIN', +6369 verbose headers 'x-cache': 'HIT', +6369 verbose headers 'x-cache-hits': '15', +6369 verbose headers 'x-timer': 'S1506936842.074152,VS0,VE0', +6369 verbose headers vary: 'Accept-Encoding, Accept' } +6370 silly get cb [ 200, +6370 silly get { server: 'nginx/1.10.3', +6370 silly get 'content-type': 'application/json', +6370 silly get 'last-modified': 'Wed, 27 Sep 2017 00:19:53 GMT', +6370 silly get etag: 'W/"59caeea9-b5b2"', +6370 silly get 'content-encoding': 'gzip', +6370 silly get 'cache-control': 'max-age=300', +6370 silly get 'content-length': '4684', +6370 silly get 'accept-ranges': 'bytes', +6370 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6370 silly get via: '1.1 varnish', +6370 silly get age: '90', +6370 silly get connection: 'keep-alive', +6370 silly get 'x-served-by': 'cache-sin18025-SIN', +6370 silly get 'x-cache': 'HIT', +6370 silly get 'x-cache-hits': '15', +6370 silly get 'x-timer': 'S1506936842.074152,VS0,VE0', +6370 silly get vary: 'Accept-Encoding, Accept' } ] +6371 verbose get saving babel-preset-react-app to /home/wso2/.npm/registry.npmjs.org/babel-preset-react-app/.cache.json +6372 http 200 https://registry.npmjs.org/eslint-loader +6373 verbose headers { server: 'nginx/1.10.3', +6373 verbose headers 'content-type': 'application/json', +6373 verbose headers 'last-modified': 'Mon, 25 Sep 2017 12:49:53 GMT', +6373 verbose headers etag: 'W/"59c8fb71-d960"', +6373 verbose headers 'content-encoding': 'gzip', +6373 verbose headers 'cache-control': 'max-age=300', +6373 verbose headers 'content-length': '7760', +6373 verbose headers 'accept-ranges': 'bytes', +6373 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6373 verbose headers via: '1.1 varnish', +6373 verbose headers age: '226', +6373 verbose headers connection: 'keep-alive', +6373 verbose headers 'x-served-by': 'cache-sin18023-SIN', +6373 verbose headers 'x-cache': 'HIT', +6373 verbose headers 'x-cache-hits': '1', +6373 verbose headers 'x-timer': 'S1506936842.166971,VS0,VE0', +6373 verbose headers vary: 'Accept-Encoding, Accept' } +6374 silly get cb [ 200, +6374 silly get { server: 'nginx/1.10.3', +6374 silly get 'content-type': 'application/json', +6374 silly get 'last-modified': 'Mon, 25 Sep 2017 12:49:53 GMT', +6374 silly get etag: 'W/"59c8fb71-d960"', +6374 silly get 'content-encoding': 'gzip', +6374 silly get 'cache-control': 'max-age=300', +6374 silly get 'content-length': '7760', +6374 silly get 'accept-ranges': 'bytes', +6374 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6374 silly get via: '1.1 varnish', +6374 silly get age: '226', +6374 silly get connection: 'keep-alive', +6374 silly get 'x-served-by': 'cache-sin18023-SIN', +6374 silly get 'x-cache': 'HIT', +6374 silly get 'x-cache-hits': '1', +6374 silly get 'x-timer': 'S1506936842.166971,VS0,VE0', +6374 silly get vary: 'Accept-Encoding, Accept' } ] +6375 verbose get saving eslint-loader to /home/wso2/.npm/registry.npmjs.org/eslint-loader/.cache.json +6376 http 200 https://registry.npmjs.org/file-loader +6377 verbose headers { server: 'nginx/1.10.3', +6377 verbose headers 'content-type': 'application/json', +6377 verbose headers 'last-modified': 'Sat, 30 Sep 2017 22:54:05 GMT', +6377 verbose headers etag: 'W/"59d0208d-dfa9"', +6377 verbose headers 'content-encoding': 'gzip', +6377 verbose headers 'cache-control': 'max-age=300', +6377 verbose headers 'content-length': '8482', +6377 verbose headers 'accept-ranges': 'bytes', +6377 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6377 verbose headers via: '1.1 varnish', +6377 verbose headers age: '103', +6377 verbose headers connection: 'keep-alive', +6377 verbose headers 'x-served-by': 'cache-sin18028-SIN', +6377 verbose headers 'x-cache': 'HIT', +6377 verbose headers 'x-cache-hits': '131', +6377 verbose headers 'x-timer': 'S1506936842.247502,VS0,VE0', +6377 verbose headers vary: 'Accept-Encoding, Accept' } +6378 silly get cb [ 200, +6378 silly get { server: 'nginx/1.10.3', +6378 silly get 'content-type': 'application/json', +6378 silly get 'last-modified': 'Sat, 30 Sep 2017 22:54:05 GMT', +6378 silly get etag: 'W/"59d0208d-dfa9"', +6378 silly get 'content-encoding': 'gzip', +6378 silly get 'cache-control': 'max-age=300', +6378 silly get 'content-length': '8482', +6378 silly get 'accept-ranges': 'bytes', +6378 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6378 silly get via: '1.1 varnish', +6378 silly get age: '103', +6378 silly get connection: 'keep-alive', +6378 silly get 'x-served-by': 'cache-sin18028-SIN', +6378 silly get 'x-cache': 'HIT', +6378 silly get 'x-cache-hits': '131', +6378 silly get 'x-timer': 'S1506936842.247502,VS0,VE0', +6378 silly get vary: 'Accept-Encoding, Accept' } ] +6379 verbose get saving file-loader to /home/wso2/.npm/registry.npmjs.org/file-loader/.cache.json +6380 http 200 https://registry.npmjs.org/postcss-loader +6381 verbose headers { server: 'nginx/1.10.3', +6381 verbose headers 'content-type': 'application/json', +6381 verbose headers 'last-modified': 'Tue, 26 Sep 2017 03:09:00 GMT', +6381 verbose headers etag: 'W/"59c9c4cc-12003"', +6381 verbose headers 'content-encoding': 'gzip', +6381 verbose headers 'cache-control': 'max-age=300', +6381 verbose headers 'content-length': '10731', +6381 verbose headers 'accept-ranges': 'bytes', +6381 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6381 verbose headers via: '1.1 varnish', +6381 verbose headers age: '69', +6381 verbose headers connection: 'keep-alive', +6381 verbose headers 'x-served-by': 'cache-sin18032-SIN', +6381 verbose headers 'x-cache': 'HIT', +6381 verbose headers 'x-cache-hits': '78', +6381 verbose headers 'x-timer': 'S1506936842.355504,VS0,VE0', +6381 verbose headers vary: 'Accept-Encoding, Accept' } +6382 silly get cb [ 200, +6382 silly get { server: 'nginx/1.10.3', +6382 silly get 'content-type': 'application/json', +6382 silly get 'last-modified': 'Tue, 26 Sep 2017 03:09:00 GMT', +6382 silly get etag: 'W/"59c9c4cc-12003"', +6382 silly get 'content-encoding': 'gzip', +6382 silly get 'cache-control': 'max-age=300', +6382 silly get 'content-length': '10731', +6382 silly get 'accept-ranges': 'bytes', +6382 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6382 silly get via: '1.1 varnish', +6382 silly get age: '69', +6382 silly get connection: 'keep-alive', +6382 silly get 'x-served-by': 'cache-sin18032-SIN', +6382 silly get 'x-cache': 'HIT', +6382 silly get 'x-cache-hits': '78', +6382 silly get 'x-timer': 'S1506936842.355504,VS0,VE0', +6382 silly get vary: 'Accept-Encoding, Accept' } ] +6383 verbose get saving postcss-loader to /home/wso2/.npm/registry.npmjs.org/postcss-loader/.cache.json +6384 silly resolveWithNewModule case-sensitive-paths-webpack-plugin@2.1.1 checking installable status +6385 silly cache add args [ 'case-sensitive-paths-webpack-plugin@2.1.1', null ] +6386 verbose cache add spec case-sensitive-paths-webpack-plugin@2.1.1 +6387 silly cache add parsed spec Result { +6387 silly cache add raw: 'case-sensitive-paths-webpack-plugin@2.1.1', +6387 silly cache add scope: null, +6387 silly cache add name: 'case-sensitive-paths-webpack-plugin', +6387 silly cache add rawSpec: '2.1.1', +6387 silly cache add spec: '2.1.1', +6387 silly cache add type: 'version' } +6388 silly addNamed case-sensitive-paths-webpack-plugin@2.1.1 +6389 verbose addNamed "2.1.1" is a plain semver version for case-sensitive-paths-webpack-plugin +6390 silly mapToRegistry name case-sensitive-paths-webpack-plugin +6391 silly mapToRegistry using default registry +6392 silly mapToRegistry registry https://registry.npmjs.org/ +6393 silly mapToRegistry uri https://registry.npmjs.org/case-sensitive-paths-webpack-plugin +6394 verbose addNameVersion registry:https://registry.npmjs.org/case-sensitive-paths-webpack-plugin not in flight; fetching +6395 http 200 https://registry.npmjs.org/babel-jest +6396 verbose headers { server: 'nginx/1.10.3', +6396 verbose headers 'content-type': 'application/json', +6396 verbose headers 'last-modified': 'Sun, 01 Oct 2017 20:00:37 GMT', +6396 verbose headers etag: 'W/"59d14965-19416"', +6396 verbose headers 'content-encoding': 'gzip', +6396 verbose headers 'cache-control': 'max-age=300', +6396 verbose headers 'content-length': '11487', +6396 verbose headers 'accept-ranges': 'bytes', +6396 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6396 verbose headers via: '1.1 varnish', +6396 verbose headers age: '150', +6396 verbose headers connection: 'keep-alive', +6396 verbose headers 'x-served-by': 'cache-sin18023-SIN', +6396 verbose headers 'x-cache': 'HIT', +6396 verbose headers 'x-cache-hits': '108', +6396 verbose headers 'x-timer': 'S1506936842.062534,VS0,VE0', +6396 verbose headers vary: 'Accept-Encoding, Accept' } +6397 silly get cb [ 200, +6397 silly get { server: 'nginx/1.10.3', +6397 silly get 'content-type': 'application/json', +6397 silly get 'last-modified': 'Sun, 01 Oct 2017 20:00:37 GMT', +6397 silly get etag: 'W/"59d14965-19416"', +6397 silly get 'content-encoding': 'gzip', +6397 silly get 'cache-control': 'max-age=300', +6397 silly get 'content-length': '11487', +6397 silly get 'accept-ranges': 'bytes', +6397 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6397 silly get via: '1.1 varnish', +6397 silly get age: '150', +6397 silly get connection: 'keep-alive', +6397 silly get 'x-served-by': 'cache-sin18023-SIN', +6397 silly get 'x-cache': 'HIT', +6397 silly get 'x-cache-hits': '108', +6397 silly get 'x-timer': 'S1506936842.062534,VS0,VE0', +6397 silly get vary: 'Accept-Encoding, Accept' } ] +6398 verbose get saving babel-jest to /home/wso2/.npm/registry.npmjs.org/babel-jest/.cache.json +6399 http 200 https://registry.npmjs.org/babel-loader +6400 verbose headers { server: 'nginx/1.10.3', +6400 verbose headers 'content-type': 'application/json', +6400 verbose headers 'last-modified': 'Sun, 01 Oct 2017 19:56:26 GMT', +6400 verbose headers etag: 'W/"59d1486a-18a38"', +6400 verbose headers 'content-encoding': 'gzip', +6400 verbose headers 'cache-control': 'max-age=300', +6400 verbose headers 'content-length': '11783', +6400 verbose headers 'accept-ranges': 'bytes', +6400 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6400 verbose headers via: '1.1 varnish', +6400 verbose headers age: '103', +6400 verbose headers connection: 'keep-alive', +6400 verbose headers 'x-served-by': 'cache-sin18020-SIN', +6400 verbose headers 'x-cache': 'HIT', +6400 verbose headers 'x-cache-hits': '1', +6400 verbose headers 'x-timer': 'S1506936842.068404,VS0,VE0', +6400 verbose headers vary: 'Accept-Encoding, Accept' } +6401 silly get cb [ 200, +6401 silly get { server: 'nginx/1.10.3', +6401 silly get 'content-type': 'application/json', +6401 silly get 'last-modified': 'Sun, 01 Oct 2017 19:56:26 GMT', +6401 silly get etag: 'W/"59d1486a-18a38"', +6401 silly get 'content-encoding': 'gzip', +6401 silly get 'cache-control': 'max-age=300', +6401 silly get 'content-length': '11783', +6401 silly get 'accept-ranges': 'bytes', +6401 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6401 silly get via: '1.1 varnish', +6401 silly get age: '103', +6401 silly get connection: 'keep-alive', +6401 silly get 'x-served-by': 'cache-sin18020-SIN', +6401 silly get 'x-cache': 'HIT', +6401 silly get 'x-cache-hits': '1', +6401 silly get 'x-timer': 'S1506936842.068404,VS0,VE0', +6401 silly get vary: 'Accept-Encoding, Accept' } ] +6402 verbose get saving babel-loader to /home/wso2/.npm/registry.npmjs.org/babel-loader/.cache.json +6403 silly resolveWithNewModule postcss-flexbugs-fixes@3.0.0 checking installable status +6404 silly cache add args [ 'postcss-flexbugs-fixes@3.0.0', null ] +6405 verbose cache add spec postcss-flexbugs-fixes@3.0.0 +6406 silly cache add parsed spec Result { +6406 silly cache add raw: 'postcss-flexbugs-fixes@3.0.0', +6406 silly cache add scope: null, +6406 silly cache add name: 'postcss-flexbugs-fixes', +6406 silly cache add rawSpec: '3.0.0', +6406 silly cache add spec: '3.0.0', +6406 silly cache add type: 'version' } +6407 silly addNamed postcss-flexbugs-fixes@3.0.0 +6408 verbose addNamed "3.0.0" is a plain semver version for postcss-flexbugs-fixes +6409 silly mapToRegistry name postcss-flexbugs-fixes +6410 silly mapToRegistry using default registry +6411 silly mapToRegistry registry https://registry.npmjs.org/ +6412 silly mapToRegistry uri https://registry.npmjs.org/postcss-flexbugs-fixes +6413 verbose addNameVersion registry:https://registry.npmjs.org/postcss-flexbugs-fixes not in flight; fetching +6414 http 200 https://registry.npmjs.org/extract-text-webpack-plugin +6415 verbose headers { server: 'nginx/1.10.3', +6415 verbose headers 'content-type': 'application/json', +6415 verbose headers 'last-modified': 'Sun, 01 Oct 2017 06:59:51 GMT', +6415 verbose headers etag: 'W/"59d09267-18ac3"', +6415 verbose headers 'content-encoding': 'gzip', +6415 verbose headers 'cache-control': 'max-age=300', +6415 verbose headers 'content-length': '11744', +6415 verbose headers 'accept-ranges': 'bytes', +6415 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6415 verbose headers via: '1.1 varnish', +6415 verbose headers age: '271', +6415 verbose headers connection: 'keep-alive', +6415 verbose headers 'x-served-by': 'cache-sin18035-SIN', +6415 verbose headers 'x-cache': 'HIT', +6415 verbose headers 'x-cache-hits': '2', +6415 verbose headers 'x-timer': 'S1506936842.274720,VS0,VE0', +6415 verbose headers vary: 'Accept-Encoding, Accept' } +6416 silly get cb [ 200, +6416 silly get { server: 'nginx/1.10.3', +6416 silly get 'content-type': 'application/json', +6416 silly get 'last-modified': 'Sun, 01 Oct 2017 06:59:51 GMT', +6416 silly get etag: 'W/"59d09267-18ac3"', +6416 silly get 'content-encoding': 'gzip', +6416 silly get 'cache-control': 'max-age=300', +6416 silly get 'content-length': '11744', +6416 silly get 'accept-ranges': 'bytes', +6416 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6416 silly get via: '1.1 varnish', +6416 silly get age: '271', +6416 silly get connection: 'keep-alive', +6416 silly get 'x-served-by': 'cache-sin18035-SIN', +6416 silly get 'x-cache': 'HIT', +6416 silly get 'x-cache-hits': '2', +6416 silly get 'x-timer': 'S1506936842.274720,VS0,VE0', +6416 silly get vary: 'Accept-Encoding, Accept' } ] +6417 verbose get saving extract-text-webpack-plugin to /home/wso2/.npm/registry.npmjs.org/extract-text-webpack-plugin/.cache.json +6418 http 200 https://registry.npmjs.org/html-webpack-plugin +6419 verbose headers { server: 'nginx/1.10.3', +6419 verbose headers 'content-type': 'application/json', +6419 verbose headers 'last-modified': 'Sat, 30 Sep 2017 13:17:05 GMT', +6419 verbose headers etag: 'W/"59cf9951-21878"', +6419 verbose headers 'content-encoding': 'gzip', +6419 verbose headers 'cache-control': 'max-age=300', +6419 verbose headers 'content-length': '15258', +6419 verbose headers 'accept-ranges': 'bytes', +6419 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6419 verbose headers via: '1.1 varnish', +6419 verbose headers age: '103', +6419 verbose headers connection: 'keep-alive', +6419 verbose headers 'x-served-by': 'cache-sin18026-SIN', +6419 verbose headers 'x-cache': 'HIT', +6419 verbose headers 'x-cache-hits': '2', +6419 verbose headers 'x-timer': 'S1506936842.294934,VS0,VE0', +6419 verbose headers vary: 'Accept-Encoding, Accept' } +6420 silly get cb [ 200, +6420 silly get { server: 'nginx/1.10.3', +6420 silly get 'content-type': 'application/json', +6420 silly get 'last-modified': 'Sat, 30 Sep 2017 13:17:05 GMT', +6420 silly get etag: 'W/"59cf9951-21878"', +6420 silly get 'content-encoding': 'gzip', +6420 silly get 'cache-control': 'max-age=300', +6420 silly get 'content-length': '15258', +6420 silly get 'accept-ranges': 'bytes', +6420 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6420 silly get via: '1.1 varnish', +6420 silly get age: '103', +6420 silly get connection: 'keep-alive', +6420 silly get 'x-served-by': 'cache-sin18026-SIN', +6420 silly get 'x-cache': 'HIT', +6420 silly get 'x-cache-hits': '2', +6420 silly get 'x-timer': 'S1506936842.294934,VS0,VE0', +6420 silly get vary: 'Accept-Encoding, Accept' } ] +6421 verbose get saving html-webpack-plugin to /home/wso2/.npm/registry.npmjs.org/html-webpack-plugin/.cache.json +6422 silly resolveWithNewModule babel-preset-react-app@3.0.3 checking installable status +6423 silly cache add args [ 'babel-preset-react-app@^3.0.1', null ] +6424 verbose cache add spec babel-preset-react-app@^3.0.1 +6425 silly cache add parsed spec Result { +6425 silly cache add raw: 'babel-preset-react-app@^3.0.1', +6425 silly cache add scope: null, +6425 silly cache add name: 'babel-preset-react-app', +6425 silly cache add rawSpec: '^3.0.1', +6425 silly cache add spec: '>=3.0.1 <4.0.0', +6425 silly cache add type: 'range' } +6426 silly addNamed babel-preset-react-app@>=3.0.1 <4.0.0 +6427 verbose addNamed ">=3.0.1 <4.0.0" is a valid semver range for babel-preset-react-app +6428 silly addNameRange { name: 'babel-preset-react-app', +6428 silly addNameRange range: '>=3.0.1 <4.0.0', +6428 silly addNameRange hasData: false } +6429 silly mapToRegistry name babel-preset-react-app +6430 silly mapToRegistry using default registry +6431 silly mapToRegistry registry https://registry.npmjs.org/ +6432 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-react-app +6433 verbose addNameRange registry:https://registry.npmjs.org/babel-preset-react-app not in flight; fetching +6434 http 200 https://registry.npmjs.org/babel-eslint +6435 verbose headers { server: 'nginx/1.10.3', +6435 verbose headers 'content-type': 'application/json', +6435 verbose headers 'last-modified': 'Tue, 26 Sep 2017 20:18:51 GMT', +6435 verbose headers etag: 'W/"59cab62b-29091"', +6435 verbose headers 'content-encoding': 'gzip', +6435 verbose headers 'cache-control': 'max-age=300', +6435 verbose headers 'content-length': '16470', +6435 verbose headers 'accept-ranges': 'bytes', +6435 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6435 verbose headers via: '1.1 varnish', +6435 verbose headers age: '0', +6435 verbose headers connection: 'keep-alive', +6435 verbose headers 'x-served-by': 'cache-sin18035-SIN', +6435 verbose headers 'x-cache': 'HIT', +6435 verbose headers 'x-cache-hits': '1', +6435 verbose headers 'x-timer': 'S1506936842.064249,VS0,VE167', +6435 verbose headers vary: 'Accept-Encoding, Accept' } +6436 silly get cb [ 200, +6436 silly get { server: 'nginx/1.10.3', +6436 silly get 'content-type': 'application/json', +6436 silly get 'last-modified': 'Tue, 26 Sep 2017 20:18:51 GMT', +6436 silly get etag: 'W/"59cab62b-29091"', +6436 silly get 'content-encoding': 'gzip', +6436 silly get 'cache-control': 'max-age=300', +6436 silly get 'content-length': '16470', +6436 silly get 'accept-ranges': 'bytes', +6436 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6436 silly get via: '1.1 varnish', +6436 silly get age: '0', +6436 silly get connection: 'keep-alive', +6436 silly get 'x-served-by': 'cache-sin18035-SIN', +6436 silly get 'x-cache': 'HIT', +6436 silly get 'x-cache-hits': '1', +6436 silly get 'x-timer': 'S1506936842.064249,VS0,VE167', +6436 silly get vary: 'Accept-Encoding, Accept' } ] +6437 verbose get saving babel-eslint to /home/wso2/.npm/registry.npmjs.org/babel-eslint/.cache.json +6438 verbose get https://registry.npmjs.org/case-sensitive-paths-webpack-plugin not expired, no request +6439 silly resolveWithNewModule eslint-loader@1.7.1 checking installable status +6440 silly cache add args [ 'eslint-loader@1.7.1', null ] +6441 verbose cache add spec eslint-loader@1.7.1 +6442 silly cache add parsed spec Result { +6442 silly cache add raw: 'eslint-loader@1.7.1', +6442 silly cache add scope: null, +6442 silly cache add name: 'eslint-loader', +6442 silly cache add rawSpec: '1.7.1', +6442 silly cache add spec: '1.7.1', +6442 silly cache add type: 'version' } +6443 silly addNamed eslint-loader@1.7.1 +6444 verbose addNamed "1.7.1" is a plain semver version for eslint-loader +6445 silly mapToRegistry name eslint-loader +6446 silly mapToRegistry using default registry +6447 silly mapToRegistry registry https://registry.npmjs.org/ +6448 silly mapToRegistry uri https://registry.npmjs.org/eslint-loader +6449 verbose addNameVersion registry:https://registry.npmjs.org/eslint-loader not in flight; fetching +6450 silly resolveWithNewModule file-loader@0.11.2 checking installable status +6451 silly cache add args [ 'file-loader@0.11.2', null ] +6452 verbose cache add spec file-loader@0.11.2 +6453 silly cache add parsed spec Result { +6453 silly cache add raw: 'file-loader@0.11.2', +6453 silly cache add scope: null, +6453 silly cache add name: 'file-loader', +6453 silly cache add rawSpec: '0.11.2', +6453 silly cache add spec: '0.11.2', +6453 silly cache add type: 'version' } +6454 silly addNamed file-loader@0.11.2 +6455 verbose addNamed "0.11.2" is a plain semver version for file-loader +6456 silly mapToRegistry name file-loader +6457 silly mapToRegistry using default registry +6458 silly mapToRegistry registry https://registry.npmjs.org/ +6459 silly mapToRegistry uri https://registry.npmjs.org/file-loader +6460 verbose addNameVersion registry:https://registry.npmjs.org/file-loader not in flight; fetching +6461 verbose get https://registry.npmjs.org/postcss-flexbugs-fixes not expired, no request +6462 http 200 https://registry.npmjs.org/eslint-plugin-import +6463 verbose headers { server: 'nginx/1.10.3', +6463 verbose headers 'content-type': 'application/json', +6463 verbose headers 'last-modified': 'Tue, 19 Sep 2017 20:17:52 GMT', +6463 verbose headers etag: 'W/"59c17b70-30de8"', +6463 verbose headers 'content-encoding': 'gzip', +6463 verbose headers 'cache-control': 'max-age=300', +6463 verbose headers 'content-length': '18553', +6463 verbose headers 'accept-ranges': 'bytes', +6463 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6463 verbose headers via: '1.1 varnish', +6463 verbose headers age: '30', +6463 verbose headers connection: 'keep-alive', +6463 verbose headers 'x-served-by': 'cache-sin18024-SIN', +6463 verbose headers 'x-cache': 'HIT', +6463 verbose headers 'x-cache-hits': '1', +6463 verbose headers 'x-timer': 'S1506936842.292306,VS0,VE0', +6463 verbose headers vary: 'Accept-Encoding, Accept' } +6464 silly get cb [ 200, +6464 silly get { server: 'nginx/1.10.3', +6464 silly get 'content-type': 'application/json', +6464 silly get 'last-modified': 'Tue, 19 Sep 2017 20:17:52 GMT', +6464 silly get etag: 'W/"59c17b70-30de8"', +6464 silly get 'content-encoding': 'gzip', +6464 silly get 'cache-control': 'max-age=300', +6464 silly get 'content-length': '18553', +6464 silly get 'accept-ranges': 'bytes', +6464 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6464 silly get via: '1.1 varnish', +6464 silly get age: '30', +6464 silly get connection: 'keep-alive', +6464 silly get 'x-served-by': 'cache-sin18024-SIN', +6464 silly get 'x-cache': 'HIT', +6464 silly get 'x-cache-hits': '1', +6464 silly get 'x-timer': 'S1506936842.292306,VS0,VE0', +6464 silly get vary: 'Accept-Encoding, Accept' } ] +6465 verbose get saving eslint-plugin-import to /home/wso2/.npm/registry.npmjs.org/eslint-plugin-import/.cache.json +6466 silly resolveWithNewModule postcss-loader@2.0.6 checking installable status +6467 silly cache add args [ 'postcss-loader@2.0.6', null ] +6468 verbose cache add spec postcss-loader@2.0.6 +6469 silly cache add parsed spec Result { +6469 silly cache add raw: 'postcss-loader@2.0.6', +6469 silly cache add scope: null, +6469 silly cache add name: 'postcss-loader', +6469 silly cache add rawSpec: '2.0.6', +6469 silly cache add spec: '2.0.6', +6469 silly cache add type: 'version' } +6470 silly addNamed postcss-loader@2.0.6 +6471 verbose addNamed "2.0.6" is a plain semver version for postcss-loader +6472 silly mapToRegistry name postcss-loader +6473 silly mapToRegistry using default registry +6474 silly mapToRegistry registry https://registry.npmjs.org/ +6475 silly mapToRegistry uri https://registry.npmjs.org/postcss-loader +6476 verbose addNameVersion registry:https://registry.npmjs.org/postcss-loader not in flight; fetching +6477 silly resolveWithNewModule babel-jest@20.0.3 checking installable status +6478 silly cache add args [ 'babel-jest@20.0.3', null ] +6479 verbose cache add spec babel-jest@20.0.3 +6480 silly cache add parsed spec Result { +6480 silly cache add raw: 'babel-jest@20.0.3', +6480 silly cache add scope: null, +6480 silly cache add name: 'babel-jest', +6480 silly cache add rawSpec: '20.0.3', +6480 silly cache add spec: '20.0.3', +6480 silly cache add type: 'version' } +6481 silly addNamed babel-jest@20.0.3 +6482 verbose addNamed "20.0.3" is a plain semver version for babel-jest +6483 silly mapToRegistry name babel-jest +6484 silly mapToRegistry using default registry +6485 silly mapToRegistry registry https://registry.npmjs.org/ +6486 silly mapToRegistry uri https://registry.npmjs.org/babel-jest +6487 verbose addNameVersion registry:https://registry.npmjs.org/babel-jest not in flight; fetching +6488 silly resolveWithNewModule babel-loader@7.0.0 checking installable status +6489 silly cache add args [ 'babel-loader@7.0.0', null ] +6490 verbose cache add spec babel-loader@7.0.0 +6491 silly cache add parsed spec Result { +6491 silly cache add raw: 'babel-loader@7.0.0', +6491 silly cache add scope: null, +6491 silly cache add name: 'babel-loader', +6491 silly cache add rawSpec: '7.0.0', +6491 silly cache add spec: '7.0.0', +6491 silly cache add type: 'version' } +6492 silly addNamed babel-loader@7.0.0 +6493 verbose addNamed "7.0.0" is a plain semver version for babel-loader +6494 silly mapToRegistry name babel-loader +6495 silly mapToRegistry using default registry +6496 silly mapToRegistry registry https://registry.npmjs.org/ +6497 silly mapToRegistry uri https://registry.npmjs.org/babel-loader +6498 verbose addNameVersion registry:https://registry.npmjs.org/babel-loader not in flight; fetching +6499 silly resolveWithNewModule extract-text-webpack-plugin@2.1.2 checking installable status +6500 silly cache add args [ 'extract-text-webpack-plugin@2.1.2', null ] +6501 verbose cache add spec extract-text-webpack-plugin@2.1.2 +6502 silly cache add parsed spec Result { +6502 silly cache add raw: 'extract-text-webpack-plugin@2.1.2', +6502 silly cache add scope: null, +6502 silly cache add name: 'extract-text-webpack-plugin', +6502 silly cache add rawSpec: '2.1.2', +6502 silly cache add spec: '2.1.2', +6502 silly cache add type: 'version' } +6503 silly addNamed extract-text-webpack-plugin@2.1.2 +6504 verbose addNamed "2.1.2" is a plain semver version for extract-text-webpack-plugin +6505 silly mapToRegistry name extract-text-webpack-plugin +6506 silly mapToRegistry using default registry +6507 silly mapToRegistry registry https://registry.npmjs.org/ +6508 silly mapToRegistry uri https://registry.npmjs.org/extract-text-webpack-plugin +6509 verbose addNameVersion registry:https://registry.npmjs.org/extract-text-webpack-plugin not in flight; fetching +6510 verbose get https://registry.npmjs.org/babel-preset-react-app not expired, no request +6511 silly addNameRange number 2 { name: 'babel-preset-react-app', +6511 silly addNameRange range: '>=3.0.1 <4.0.0', +6511 silly addNameRange hasData: true } +6512 silly addNameRange versions [ 'babel-preset-react-app', +6512 silly addNameRange [ '0.0.0', +6512 silly addNameRange '0.1.0', +6512 silly addNameRange '0.2.0', +6512 silly addNameRange '0.2.1', +6512 silly addNameRange '1.0.0', +6512 silly addNameRange '1.0.0-alpha.e756d73a', +6512 silly addNameRange '1.0.0-alpha.9c45b252', +6512 silly addNameRange '2.0.0', +6512 silly addNameRange '2.0.1', +6512 silly addNameRange '2.1.0', +6512 silly addNameRange '2.1.1', +6512 silly addNameRange '2.2.0', +6512 silly addNameRange '3.0.0-alpha.f55d2212', +6512 silly addNameRange '3.0.0-alpha.58689133', +6512 silly addNameRange '3.0.0-alpha.dadf93b2', +6512 silly addNameRange '3.0.0-alpha.134d2297', +6512 silly addNameRange '3.0.0-alpha.e280254d', +6512 silly addNameRange '3.0.0-alpha.c82c4f05', +6512 silly addNameRange '3.0.0-alpha.0d0536f9', +6512 silly addNameRange '3.0.0-alpha.02968ecd', +6512 silly addNameRange '3.0.0-alpha.55afd862', +6512 silly addNameRange '3.0.0', +6512 silly addNameRange '3.0.0-alpha.60ae2b6d', +6512 silly addNameRange '3.0.1', +6512 silly addNameRange '3.0.2', +6512 silly addNameRange '3.0.3' ] ] +6513 silly addNamed babel-preset-react-app@3.0.3 +6514 verbose addNamed "3.0.3" is a plain semver version for babel-preset-react-app +6515 http 200 https://registry.npmjs.org/url-loader +6516 verbose headers { server: 'nginx/1.10.3', +6516 verbose headers 'content-type': 'application/json', +6516 verbose headers 'last-modified': 'Sat, 30 Sep 2017 12:45:23 GMT', +6516 verbose headers etag: 'W/"59cf91e3-49c2"', +6516 verbose headers 'content-encoding': 'gzip', +6516 verbose headers 'cache-control': 'max-age=300', +6516 verbose headers 'content-length': '3995', +6516 verbose headers 'accept-ranges': 'bytes', +6516 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6516 verbose headers via: '1.1 varnish', +6516 verbose headers age: '97', +6516 verbose headers connection: 'keep-alive', +6516 verbose headers 'x-served-by': 'cache-sin18028-SIN', +6516 verbose headers 'x-cache': 'HIT', +6516 verbose headers 'x-cache-hits': '1', +6516 verbose headers 'x-timer': 'S1506936842.411747,VS0,VE0', +6516 verbose headers vary: 'Accept-Encoding, Accept' } +6517 silly get cb [ 200, +6517 silly get { server: 'nginx/1.10.3', +6517 silly get 'content-type': 'application/json', +6517 silly get 'last-modified': 'Sat, 30 Sep 2017 12:45:23 GMT', +6517 silly get etag: 'W/"59cf91e3-49c2"', +6517 silly get 'content-encoding': 'gzip', +6517 silly get 'cache-control': 'max-age=300', +6517 silly get 'content-length': '3995', +6517 silly get 'accept-ranges': 'bytes', +6517 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6517 silly get via: '1.1 varnish', +6517 silly get age: '97', +6517 silly get connection: 'keep-alive', +6517 silly get 'x-served-by': 'cache-sin18028-SIN', +6517 silly get 'x-cache': 'HIT', +6517 silly get 'x-cache-hits': '1', +6517 silly get 'x-timer': 'S1506936842.411747,VS0,VE0', +6517 silly get vary: 'Accept-Encoding, Accept' } ] +6518 verbose get saving url-loader to /home/wso2/.npm/registry.npmjs.org/url-loader/.cache.json +6519 silly mapToRegistry name babel-preset-react-app +6520 silly mapToRegistry using default registry +6521 silly mapToRegistry registry https://registry.npmjs.org/ +6522 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-react-app +6523 verbose addRemoteTarball https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.0.3.tgz not in flight; adding +6524 verbose addRemoteTarball [ 'https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.0.3.tgz', +6524 verbose addRemoteTarball '5716d6a8c7354db0cc2707207ab6ceb3b2e0a825' ] +6525 verbose get https://registry.npmjs.org/eslint-loader not expired, no request +6526 verbose get https://registry.npmjs.org/file-loader not expired, no request +6527 http 200 https://registry.npmjs.org/style-loader +6528 verbose headers { server: 'nginx/1.10.3', +6528 verbose headers 'content-type': 'application/json', +6528 verbose headers 'last-modified': 'Sat, 30 Sep 2017 20:40:17 GMT', +6528 verbose headers etag: 'W/"59d00131-e95a"', +6528 verbose headers 'content-encoding': 'gzip', +6528 verbose headers 'cache-control': 'max-age=300', +6528 verbose headers 'content-length': '9481', +6528 verbose headers 'accept-ranges': 'bytes', +6528 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6528 verbose headers via: '1.1 varnish', +6528 verbose headers age: '92', +6528 verbose headers connection: 'keep-alive', +6528 verbose headers 'x-served-by': 'cache-sin18020-SIN', +6528 verbose headers 'x-cache': 'HIT', +6528 verbose headers 'x-cache-hits': '1', +6528 verbose headers 'x-timer': 'S1506936842.407801,VS0,VE1', +6528 verbose headers vary: 'Accept-Encoding, Accept' } +6529 silly get cb [ 200, +6529 silly get { server: 'nginx/1.10.3', +6529 silly get 'content-type': 'application/json', +6529 silly get 'last-modified': 'Sat, 30 Sep 2017 20:40:17 GMT', +6529 silly get etag: 'W/"59d00131-e95a"', +6529 silly get 'content-encoding': 'gzip', +6529 silly get 'cache-control': 'max-age=300', +6529 silly get 'content-length': '9481', +6529 silly get 'accept-ranges': 'bytes', +6529 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6529 silly get via: '1.1 varnish', +6529 silly get age: '92', +6529 silly get connection: 'keep-alive', +6529 silly get 'x-served-by': 'cache-sin18020-SIN', +6529 silly get 'x-cache': 'HIT', +6529 silly get 'x-cache-hits': '1', +6529 silly get 'x-timer': 'S1506936842.407801,VS0,VE1', +6529 silly get vary: 'Accept-Encoding, Accept' } ] +6530 verbose get saving style-loader to /home/wso2/.npm/registry.npmjs.org/style-loader/.cache.json +6531 silly resolveWithNewModule html-webpack-plugin@2.29.0 checking installable status +6532 silly cache add args [ 'html-webpack-plugin@2.29.0', null ] +6533 verbose cache add spec html-webpack-plugin@2.29.0 +6534 silly cache add parsed spec Result { +6534 silly cache add raw: 'html-webpack-plugin@2.29.0', +6534 silly cache add scope: null, +6534 silly cache add name: 'html-webpack-plugin', +6534 silly cache add rawSpec: '2.29.0', +6534 silly cache add spec: '2.29.0', +6534 silly cache add type: 'version' } +6535 silly addNamed html-webpack-plugin@2.29.0 +6536 verbose addNamed "2.29.0" is a plain semver version for html-webpack-plugin +6537 silly mapToRegistry name html-webpack-plugin +6538 silly mapToRegistry using default registry +6539 silly mapToRegistry registry https://registry.npmjs.org/ +6540 silly mapToRegistry uri https://registry.npmjs.org/html-webpack-plugin +6541 verbose addNameVersion registry:https://registry.npmjs.org/html-webpack-plugin not in flight; fetching +6542 silly cache afterAdd case-sensitive-paths-webpack-plugin@2.1.1 +6543 verbose afterAdd /home/wso2/.npm/case-sensitive-paths-webpack-plugin/2.1.1/package/package.json not in flight; writing +6544 silly cache afterAdd postcss-flexbugs-fixes@3.0.0 +6545 verbose afterAdd /home/wso2/.npm/postcss-flexbugs-fixes/3.0.0/package/package.json not in flight; writing +6546 verbose get https://registry.npmjs.org/postcss-loader not expired, no request +6547 http 200 https://registry.npmjs.org/fs-extra +6548 verbose headers { server: 'nginx/1.10.3', +6548 verbose headers 'content-type': 'application/json', +6548 verbose headers 'last-modified': 'Thu, 28 Sep 2017 16:24:47 GMT', +6548 verbose headers etag: 'W/"59cd224f-212c8"', +6548 verbose headers 'content-encoding': 'gzip', +6548 verbose headers 'cache-control': 'max-age=300', +6548 verbose headers 'content-length': '15197', +6548 verbose headers 'accept-ranges': 'bytes', +6548 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6548 verbose headers via: '1.1 varnish', +6548 verbose headers age: '22', +6548 verbose headers connection: 'keep-alive', +6548 verbose headers 'x-served-by': 'cache-sin18024-SIN', +6548 verbose headers 'x-cache': 'HIT', +6548 verbose headers 'x-cache-hits': '1', +6548 verbose headers 'x-timer': 'S1506936842.340970,VS0,VE0', +6548 verbose headers vary: 'Accept-Encoding, Accept' } +6549 silly get cb [ 200, +6549 silly get { server: 'nginx/1.10.3', +6549 silly get 'content-type': 'application/json', +6549 silly get 'last-modified': 'Thu, 28 Sep 2017 16:24:47 GMT', +6549 silly get etag: 'W/"59cd224f-212c8"', +6549 silly get 'content-encoding': 'gzip', +6549 silly get 'cache-control': 'max-age=300', +6549 silly get 'content-length': '15197', +6549 silly get 'accept-ranges': 'bytes', +6549 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6549 silly get via: '1.1 varnish', +6549 silly get age: '22', +6549 silly get connection: 'keep-alive', +6549 silly get 'x-served-by': 'cache-sin18024-SIN', +6549 silly get 'x-cache': 'HIT', +6549 silly get 'x-cache-hits': '1', +6549 silly get 'x-timer': 'S1506936842.340970,VS0,VE0', +6549 silly get vary: 'Accept-Encoding, Accept' } ] +6550 verbose get saving fs-extra to /home/wso2/.npm/registry.npmjs.org/fs-extra/.cache.json +6551 silly resolveWithNewModule babel-eslint@7.2.3 checking installable status +6552 silly cache add args [ 'babel-eslint@7.2.3', null ] +6553 verbose cache add spec babel-eslint@7.2.3 +6554 silly cache add parsed spec Result { +6554 silly cache add raw: 'babel-eslint@7.2.3', +6554 silly cache add scope: null, +6554 silly cache add name: 'babel-eslint', +6554 silly cache add rawSpec: '7.2.3', +6554 silly cache add spec: '7.2.3', +6554 silly cache add type: 'version' } +6555 silly addNamed babel-eslint@7.2.3 +6556 verbose addNamed "7.2.3" is a plain semver version for babel-eslint +6557 silly mapToRegistry name babel-eslint +6558 silly mapToRegistry using default registry +6559 silly mapToRegistry registry https://registry.npmjs.org/ +6560 silly mapToRegistry uri https://registry.npmjs.org/babel-eslint +6561 verbose addNameVersion registry:https://registry.npmjs.org/babel-eslint not in flight; fetching +6562 http 200 https://registry.npmjs.org/jest +6563 verbose headers { server: 'nginx/1.10.3', +6563 verbose headers 'content-type': 'application/json', +6563 verbose headers 'last-modified': 'Sun, 01 Oct 2017 16:47:35 GMT', +6563 verbose headers etag: 'W/"59d11c27-27086"', +6563 verbose headers 'content-encoding': 'gzip', +6563 verbose headers 'cache-control': 'max-age=300', +6563 verbose headers 'content-length': '15470', +6563 verbose headers 'accept-ranges': 'bytes', +6563 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6563 verbose headers via: '1.1 varnish', +6563 verbose headers age: '88', +6563 verbose headers connection: 'keep-alive', +6563 verbose headers 'x-served-by': 'cache-sin18021-SIN', +6563 verbose headers 'x-cache': 'HIT', +6563 verbose headers 'x-cache-hits': '1', +6563 verbose headers 'x-timer': 'S1506936842.342529,VS0,VE0', +6563 verbose headers vary: 'Accept-Encoding, Accept' } +6564 silly get cb [ 200, +6564 silly get { server: 'nginx/1.10.3', +6564 silly get 'content-type': 'application/json', +6564 silly get 'last-modified': 'Sun, 01 Oct 2017 16:47:35 GMT', +6564 silly get etag: 'W/"59d11c27-27086"', +6564 silly get 'content-encoding': 'gzip', +6564 silly get 'cache-control': 'max-age=300', +6564 silly get 'content-length': '15470', +6564 silly get 'accept-ranges': 'bytes', +6564 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6564 silly get via: '1.1 varnish', +6564 silly get age: '88', +6564 silly get connection: 'keep-alive', +6564 silly get 'x-served-by': 'cache-sin18021-SIN', +6564 silly get 'x-cache': 'HIT', +6564 silly get 'x-cache-hits': '1', +6564 silly get 'x-timer': 'S1506936842.342529,VS0,VE0', +6564 silly get vary: 'Accept-Encoding, Accept' } ] +6565 verbose get saving jest to /home/wso2/.npm/registry.npmjs.org/jest/.cache.json +6566 info retry fetch attempt 1 at 3:04:02 PM +6567 info attempt registry request try #1 at 3:04:02 PM +6568 http fetch GET https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.0.3.tgz +6569 verbose get https://registry.npmjs.org/babel-jest not expired, no request +6570 verbose get https://registry.npmjs.org/babel-loader not expired, no request +6571 http 200 https://registry.npmjs.org/autoprefixer +6572 verbose headers { server: 'nginx/1.10.3', +6572 verbose headers 'content-type': 'application/json', +6572 verbose headers 'last-modified': 'Sun, 01 Oct 2017 15:26:25 GMT', +6572 verbose headers etag: 'W/"59d10921-4ecfa"', +6572 verbose headers 'content-encoding': 'gzip', +6572 verbose headers 'cache-control': 'max-age=300', +6572 verbose headers 'content-length': '26587', +6572 verbose headers 'accept-ranges': 'bytes', +6572 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6572 verbose headers via: '1.1 varnish', +6572 verbose headers age: '257', +6572 verbose headers connection: 'keep-alive', +6572 verbose headers 'x-served-by': 'cache-sin18032-SIN', +6572 verbose headers 'x-cache': 'HIT', +6572 verbose headers 'x-cache-hits': '5', +6572 verbose headers 'x-timer': 'S1506936842.074245,VS0,VE0', +6572 verbose headers vary: 'Accept-Encoding, Accept' } +6573 silly get cb [ 200, +6573 silly get { server: 'nginx/1.10.3', +6573 silly get 'content-type': 'application/json', +6573 silly get 'last-modified': 'Sun, 01 Oct 2017 15:26:25 GMT', +6573 silly get etag: 'W/"59d10921-4ecfa"', +6573 silly get 'content-encoding': 'gzip', +6573 silly get 'cache-control': 'max-age=300', +6573 silly get 'content-length': '26587', +6573 silly get 'accept-ranges': 'bytes', +6573 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6573 silly get via: '1.1 varnish', +6573 silly get age: '257', +6573 silly get connection: 'keep-alive', +6573 silly get 'x-served-by': 'cache-sin18032-SIN', +6573 silly get 'x-cache': 'HIT', +6573 silly get 'x-cache-hits': '5', +6573 silly get 'x-timer': 'S1506936842.074245,VS0,VE0', +6573 silly get vary: 'Accept-Encoding, Accept' } ] +6574 verbose get saving autoprefixer to /home/wso2/.npm/registry.npmjs.org/autoprefixer/.cache.json +6575 verbose get https://registry.npmjs.org/extract-text-webpack-plugin not expired, no request +6576 silly resolveWithNewModule eslint-plugin-import@2.2.0 checking installable status +6577 silly cache add args [ 'eslint-plugin-import@2.2.0', null ] +6578 verbose cache add spec eslint-plugin-import@2.2.0 +6579 silly cache add parsed spec Result { +6579 silly cache add raw: 'eslint-plugin-import@2.2.0', +6579 silly cache add scope: null, +6579 silly cache add name: 'eslint-plugin-import', +6579 silly cache add rawSpec: '2.2.0', +6579 silly cache add spec: '2.2.0', +6579 silly cache add type: 'version' } +6580 silly addNamed eslint-plugin-import@2.2.0 +6581 verbose addNamed "2.2.0" is a plain semver version for eslint-plugin-import +6582 silly mapToRegistry name eslint-plugin-import +6583 silly mapToRegistry using default registry +6584 silly mapToRegistry registry https://registry.npmjs.org/ +6585 silly mapToRegistry uri https://registry.npmjs.org/eslint-plugin-import +6586 verbose addNameVersion registry:https://registry.npmjs.org/eslint-plugin-import not in flight; fetching +6587 silly cache afterAdd eslint-loader@1.7.1 +6588 verbose afterAdd /home/wso2/.npm/eslint-loader/1.7.1/package/package.json not in flight; writing +6589 silly cache afterAdd file-loader@0.11.2 +6590 verbose afterAdd /home/wso2/.npm/file-loader/0.11.2/package/package.json not in flight; writing +6591 verbose get https://registry.npmjs.org/html-webpack-plugin not expired, no request +6592 verbose afterAdd /home/wso2/.npm/case-sensitive-paths-webpack-plugin/2.1.1/package/package.json written +6593 http 304 https://registry.npmjs.org/babel-runtime +6594 verbose headers { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6594 verbose headers via: '1.1 varnish', +6594 verbose headers 'cache-control': 'max-age=300', +6594 verbose headers etag: 'W/"59d0d474-2b3b1"', +6594 verbose headers age: '80', +6594 verbose headers connection: 'keep-alive', +6594 verbose headers 'x-served-by': 'cache-sin18022-SIN', +6594 verbose headers 'x-cache': 'HIT', +6594 verbose headers 'x-cache-hits': '1', +6594 verbose headers 'x-timer': 'S1506936842.475766,VS0,VE1', +6594 verbose headers vary: 'Accept-Encoding, Accept' } +6595 silly get cb [ 304, +6595 silly get { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6595 silly get via: '1.1 varnish', +6595 silly get 'cache-control': 'max-age=300', +6595 silly get etag: 'W/"59d0d474-2b3b1"', +6595 silly get age: '80', +6595 silly get connection: 'keep-alive', +6595 silly get 'x-served-by': 'cache-sin18022-SIN', +6595 silly get 'x-cache': 'HIT', +6595 silly get 'x-cache-hits': '1', +6595 silly get 'x-timer': 'S1506936842.475766,VS0,VE1', +6595 silly get vary: 'Accept-Encoding, Accept' } ] +6596 verbose etag https://registry.npmjs.org/babel-runtime from cache +6597 verbose get saving babel-runtime to /home/wso2/.npm/registry.npmjs.org/babel-runtime/.cache.json +6598 verbose afterAdd /home/wso2/.npm/postcss-flexbugs-fixes/3.0.0/package/package.json written +6599 verbose get https://registry.npmjs.org/babel-eslint not expired, no request +6600 silly resolveWithNewModule url-loader@0.5.9 checking installable status +6601 silly cache add args [ 'url-loader@0.5.9', null ] +6602 verbose cache add spec url-loader@0.5.9 +6603 silly cache add parsed spec Result { +6603 silly cache add raw: 'url-loader@0.5.9', +6603 silly cache add scope: null, +6603 silly cache add name: 'url-loader', +6603 silly cache add rawSpec: '0.5.9', +6603 silly cache add spec: '0.5.9', +6603 silly cache add type: 'version' } +6604 silly addNamed url-loader@0.5.9 +6605 verbose addNamed "0.5.9" is a plain semver version for url-loader +6606 silly mapToRegistry name url-loader +6607 silly mapToRegistry using default registry +6608 silly mapToRegistry registry https://registry.npmjs.org/ +6609 silly mapToRegistry uri https://registry.npmjs.org/url-loader +6610 verbose addNameVersion registry:https://registry.npmjs.org/url-loader not in flight; fetching +6611 http 200 https://registry.npmjs.org/eslint-plugin-jsx-a11y +6612 verbose headers { server: 'nginx/1.10.3', +6612 verbose headers 'content-type': 'application/json', +6612 verbose headers 'last-modified': 'Mon, 25 Sep 2017 22:08:59 GMT', +6612 verbose headers etag: 'W/"59c97e7b-24d3f"', +6612 verbose headers 'content-encoding': 'gzip', +6612 verbose headers 'cache-control': 'max-age=300', +6612 verbose headers 'content-length': '15368', +6612 verbose headers 'accept-ranges': 'bytes', +6612 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6612 verbose headers via: '1.1 varnish', +6612 verbose headers age: '0', +6612 verbose headers connection: 'keep-alive', +6612 verbose headers 'x-served-by': 'cache-sin18022-SIN', +6612 verbose headers 'x-cache': 'HIT', +6612 verbose headers 'x-cache-hits': '1', +6612 verbose headers 'x-timer': 'S1506936842.216568,VS0,VE159', +6612 verbose headers vary: 'Accept-Encoding, Accept' } +6613 silly get cb [ 200, +6613 silly get { server: 'nginx/1.10.3', +6613 silly get 'content-type': 'application/json', +6613 silly get 'last-modified': 'Mon, 25 Sep 2017 22:08:59 GMT', +6613 silly get etag: 'W/"59c97e7b-24d3f"', +6613 silly get 'content-encoding': 'gzip', +6613 silly get 'cache-control': 'max-age=300', +6613 silly get 'content-length': '15368', +6613 silly get 'accept-ranges': 'bytes', +6613 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6613 silly get via: '1.1 varnish', +6613 silly get age: '0', +6613 silly get connection: 'keep-alive', +6613 silly get 'x-served-by': 'cache-sin18022-SIN', +6613 silly get 'x-cache': 'HIT', +6613 silly get 'x-cache-hits': '1', +6613 silly get 'x-timer': 'S1506936842.216568,VS0,VE159', +6613 silly get vary: 'Accept-Encoding, Accept' } ] +6614 verbose get saving eslint-plugin-jsx-a11y to /home/wso2/.npm/registry.npmjs.org/eslint-plugin-jsx-a11y/.cache.json +6615 silly cache afterAdd postcss-loader@2.0.6 +6616 verbose afterAdd /home/wso2/.npm/postcss-loader/2.0.6/package/package.json not in flight; writing +6617 silly resolveWithNewModule style-loader@0.18.2 checking installable status +6618 silly cache add args [ 'style-loader@0.18.2', null ] +6619 verbose cache add spec style-loader@0.18.2 +6620 silly cache add parsed spec Result { +6620 silly cache add raw: 'style-loader@0.18.2', +6620 silly cache add scope: null, +6620 silly cache add name: 'style-loader', +6620 silly cache add rawSpec: '0.18.2', +6620 silly cache add spec: '0.18.2', +6620 silly cache add type: 'version' } +6621 silly addNamed style-loader@0.18.2 +6622 verbose addNamed "0.18.2" is a plain semver version for style-loader +6623 silly mapToRegistry name style-loader +6624 silly mapToRegistry using default registry +6625 silly mapToRegistry registry https://registry.npmjs.org/ +6626 silly mapToRegistry uri https://registry.npmjs.org/style-loader +6627 verbose addNameVersion registry:https://registry.npmjs.org/style-loader not in flight; fetching +6628 http 200 https://registry.npmjs.org/eslint-plugin-react +6629 verbose headers { server: 'nginx/1.10.3', +6629 verbose headers 'content-type': 'application/json', +6629 verbose headers 'last-modified': 'Sun, 01 Oct 2017 20:03:30 GMT', +6629 verbose headers etag: 'W/"59d14a12-315f1"', +6629 verbose headers 'content-encoding': 'gzip', +6629 verbose headers 'cache-control': 'max-age=300', +6629 verbose headers 'content-length': '20331', +6629 verbose headers 'accept-ranges': 'bytes', +6629 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6629 verbose headers via: '1.1 varnish', +6629 verbose headers age: '176', +6629 verbose headers connection: 'keep-alive', +6629 verbose headers 'x-served-by': 'cache-sin18020-SIN', +6629 verbose headers 'x-cache': 'HIT', +6629 verbose headers 'x-cache-hits': '1', +6629 verbose headers 'x-timer': 'S1506936842.299452,VS0,VE33', +6629 verbose headers vary: 'Accept-Encoding, Accept' } +6630 silly get cb [ 200, +6630 silly get { server: 'nginx/1.10.3', +6630 silly get 'content-type': 'application/json', +6630 silly get 'last-modified': 'Sun, 01 Oct 2017 20:03:30 GMT', +6630 silly get etag: 'W/"59d14a12-315f1"', +6630 silly get 'content-encoding': 'gzip', +6630 silly get 'cache-control': 'max-age=300', +6630 silly get 'content-length': '20331', +6630 silly get 'accept-ranges': 'bytes', +6630 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6630 silly get via: '1.1 varnish', +6630 silly get age: '176', +6630 silly get connection: 'keep-alive', +6630 silly get 'x-served-by': 'cache-sin18020-SIN', +6630 silly get 'x-cache': 'HIT', +6630 silly get 'x-cache-hits': '1', +6630 silly get 'x-timer': 'S1506936842.299452,VS0,VE33', +6630 silly get vary: 'Accept-Encoding, Accept' } ] +6631 verbose get saving eslint-plugin-react to /home/wso2/.npm/registry.npmjs.org/eslint-plugin-react/.cache.json +6632 silly cache afterAdd babel-jest@20.0.3 +6633 verbose afterAdd /home/wso2/.npm/babel-jest/20.0.3/package/package.json not in flight; writing +6634 silly cache afterAdd babel-loader@7.0.0 +6635 verbose afterAdd /home/wso2/.npm/babel-loader/7.0.0/package/package.json not in flight; writing +6636 verbose get https://registry.npmjs.org/eslint-plugin-import not expired, no request +6637 silly resolveWithNewModule fs-extra@3.0.1 checking installable status +6638 silly cache add args [ 'fs-extra@3.0.1', null ] +6639 verbose cache add spec fs-extra@3.0.1 +6640 silly cache add parsed spec Result { +6640 silly cache add raw: 'fs-extra@3.0.1', +6640 silly cache add scope: null, +6640 silly cache add name: 'fs-extra', +6640 silly cache add rawSpec: '3.0.1', +6640 silly cache add spec: '3.0.1', +6640 silly cache add type: 'version' } +6641 silly addNamed fs-extra@3.0.1 +6642 verbose addNamed "3.0.1" is a plain semver version for fs-extra +6643 silly mapToRegistry name fs-extra +6644 silly mapToRegistry using default registry +6645 silly mapToRegistry registry https://registry.npmjs.org/ +6646 silly mapToRegistry uri https://registry.npmjs.org/fs-extra +6647 verbose addNameVersion registry:https://registry.npmjs.org/fs-extra not in flight; fetching +6648 silly cache afterAdd extract-text-webpack-plugin@2.1.2 +6649 verbose afterAdd /home/wso2/.npm/extract-text-webpack-plugin/2.1.2/package/package.json not in flight; writing +6650 verbose afterAdd /home/wso2/.npm/file-loader/0.11.2/package/package.json written +6651 verbose afterAdd /home/wso2/.npm/eslint-loader/1.7.1/package/package.json written +6652 silly resolveWithNewModule jest@20.0.4 checking installable status +6653 silly cache add args [ 'jest@20.0.4', null ] +6654 verbose cache add spec jest@20.0.4 +6655 silly cache add parsed spec Result { +6655 silly cache add raw: 'jest@20.0.4', +6655 silly cache add scope: null, +6655 silly cache add name: 'jest', +6655 silly cache add rawSpec: '20.0.4', +6655 silly cache add spec: '20.0.4', +6655 silly cache add type: 'version' } +6656 silly addNamed jest@20.0.4 +6657 verbose addNamed "20.0.4" is a plain semver version for jest +6658 silly mapToRegistry name jest +6659 silly mapToRegistry using default registry +6660 silly mapToRegistry registry https://registry.npmjs.org/ +6661 silly mapToRegistry uri https://registry.npmjs.org/jest +6662 verbose addNameVersion registry:https://registry.npmjs.org/jest not in flight; fetching +6663 http 200 https://registry.npmjs.org/sw-precache-webpack-plugin +6664 verbose headers { server: 'nginx/1.10.3', +6664 verbose headers 'content-type': 'application/json', +6664 verbose headers 'last-modified': 'Sat, 30 Sep 2017 07:35:09 GMT', +6664 verbose headers etag: 'W/"59cf492d-109ff"', +6664 verbose headers 'content-encoding': 'gzip', +6664 verbose headers 'cache-control': 'max-age=300', +6664 verbose headers 'content-length': '9357', +6664 verbose headers 'accept-ranges': 'bytes', +6664 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6664 verbose headers via: '1.1 varnish', +6664 verbose headers age: '88', +6664 verbose headers connection: 'keep-alive', +6664 verbose headers 'x-served-by': 'cache-sin18029-SIN', +6664 verbose headers 'x-cache': 'HIT', +6664 verbose headers 'x-cache-hits': '1', +6664 verbose headers 'x-timer': 'S1506936842.465095,VS0,VE1', +6664 verbose headers vary: 'Accept-Encoding, Accept' } +6665 silly get cb [ 200, +6665 silly get { server: 'nginx/1.10.3', +6665 silly get 'content-type': 'application/json', +6665 silly get 'last-modified': 'Sat, 30 Sep 2017 07:35:09 GMT', +6665 silly get etag: 'W/"59cf492d-109ff"', +6665 silly get 'content-encoding': 'gzip', +6665 silly get 'cache-control': 'max-age=300', +6665 silly get 'content-length': '9357', +6665 silly get 'accept-ranges': 'bytes', +6665 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6665 silly get via: '1.1 varnish', +6665 silly get age: '88', +6665 silly get connection: 'keep-alive', +6665 silly get 'x-served-by': 'cache-sin18029-SIN', +6665 silly get 'x-cache': 'HIT', +6665 silly get 'x-cache-hits': '1', +6665 silly get 'x-timer': 'S1506936842.465095,VS0,VE1', +6665 silly get vary: 'Accept-Encoding, Accept' } ] +6666 verbose get saving sw-precache-webpack-plugin to /home/wso2/.npm/registry.npmjs.org/sw-precache-webpack-plugin/.cache.json +6667 silly resolveWithNewModule autoprefixer@7.1.1 checking installable status +6668 silly cache add args [ 'autoprefixer@7.1.1', null ] +6669 verbose cache add spec autoprefixer@7.1.1 +6670 silly cache add parsed spec Result { +6670 silly cache add raw: 'autoprefixer@7.1.1', +6670 silly cache add scope: null, +6670 silly cache add name: 'autoprefixer', +6670 silly cache add rawSpec: '7.1.1', +6670 silly cache add spec: '7.1.1', +6670 silly cache add type: 'version' } +6671 silly addNamed autoprefixer@7.1.1 +6672 verbose addNamed "7.1.1" is a plain semver version for autoprefixer +6673 silly mapToRegistry name autoprefixer +6674 silly mapToRegistry using default registry +6675 silly mapToRegistry registry https://registry.npmjs.org/ +6676 silly mapToRegistry uri https://registry.npmjs.org/autoprefixer +6677 verbose addNameVersion registry:https://registry.npmjs.org/autoprefixer not in flight; fetching +6678 silly cache afterAdd html-webpack-plugin@2.29.0 +6679 verbose afterAdd /home/wso2/.npm/html-webpack-plugin/2.29.0/package/package.json not in flight; writing +6680 verbose get https://registry.npmjs.org/url-loader not expired, no request +6681 verbose afterAdd /home/wso2/.npm/postcss-loader/2.0.6/package/package.json written +6682 verbose get https://registry.npmjs.org/style-loader not expired, no request +6683 silly cache afterAdd babel-eslint@7.2.3 +6684 verbose afterAdd /home/wso2/.npm/babel-eslint/7.2.3/package/package.json not in flight; writing +6685 verbose afterAdd /home/wso2/.npm/babel-jest/20.0.3/package/package.json written +6686 verbose afterAdd /home/wso2/.npm/babel-loader/7.0.0/package/package.json written +6687 verbose get https://registry.npmjs.org/fs-extra not expired, no request +6688 verbose afterAdd /home/wso2/.npm/extract-text-webpack-plugin/2.1.2/package/package.json written +6689 silly resolveWithNewModule eslint-plugin-jsx-a11y@5.0.3 checking installable status +6690 silly cache add args [ 'eslint-plugin-jsx-a11y@5.0.3', null ] +6691 verbose cache add spec eslint-plugin-jsx-a11y@5.0.3 +6692 silly cache add parsed spec Result { +6692 silly cache add raw: 'eslint-plugin-jsx-a11y@5.0.3', +6692 silly cache add scope: null, +6692 silly cache add name: 'eslint-plugin-jsx-a11y', +6692 silly cache add rawSpec: '5.0.3', +6692 silly cache add spec: '5.0.3', +6692 silly cache add type: 'version' } +6693 silly addNamed eslint-plugin-jsx-a11y@5.0.3 +6694 verbose addNamed "5.0.3" is a plain semver version for eslint-plugin-jsx-a11y +6695 silly mapToRegistry name eslint-plugin-jsx-a11y +6696 silly mapToRegistry using default registry +6697 silly mapToRegistry registry https://registry.npmjs.org/ +6698 silly mapToRegistry uri https://registry.npmjs.org/eslint-plugin-jsx-a11y +6699 verbose addNameVersion registry:https://registry.npmjs.org/eslint-plugin-jsx-a11y not in flight; fetching +6700 verbose get https://registry.npmjs.org/jest not expired, no request +6701 http 200 https://registry.npmjs.org/eslint +6702 verbose headers { server: 'nginx/1.10.3', +6702 verbose headers 'content-type': 'application/json', +6702 verbose headers 'last-modified': 'Sun, 01 Oct 2017 20:02:37 GMT', +6702 verbose headers etag: 'W/"59d149dd-7e552"', +6702 verbose headers 'content-encoding': 'gzip', +6702 verbose headers 'cache-control': 'max-age=300', +6702 verbose headers 'content-length': '30795', +6702 verbose headers 'accept-ranges': 'bytes', +6702 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6702 verbose headers via: '1.1 varnish', +6702 verbose headers age: '30', +6702 verbose headers connection: 'keep-alive', +6702 verbose headers 'x-served-by': 'cache-sin18032-SIN', +6702 verbose headers 'x-cache': 'HIT', +6702 verbose headers 'x-cache-hits': '1', +6702 verbose headers 'x-timer': 'S1506936842.216783,VS0,VE0', +6702 verbose headers vary: 'Accept-Encoding, Accept' } +6703 silly get cb [ 200, +6703 silly get { server: 'nginx/1.10.3', +6703 silly get 'content-type': 'application/json', +6703 silly get 'last-modified': 'Sun, 01 Oct 2017 20:02:37 GMT', +6703 silly get etag: 'W/"59d149dd-7e552"', +6703 silly get 'content-encoding': 'gzip', +6703 silly get 'cache-control': 'max-age=300', +6703 silly get 'content-length': '30795', +6703 silly get 'accept-ranges': 'bytes', +6703 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6703 silly get via: '1.1 varnish', +6703 silly get age: '30', +6703 silly get connection: 'keep-alive', +6703 silly get 'x-served-by': 'cache-sin18032-SIN', +6703 silly get 'x-cache': 'HIT', +6703 silly get 'x-cache-hits': '1', +6703 silly get 'x-timer': 'S1506936842.216783,VS0,VE0', +6703 silly get vary: 'Accept-Encoding, Accept' } ] +6704 verbose get saving eslint to /home/wso2/.npm/registry.npmjs.org/eslint/.cache.json +6705 silly cache afterAdd eslint-plugin-import@2.2.0 +6706 verbose afterAdd /home/wso2/.npm/eslint-plugin-import/2.2.0/package/package.json not in flight; writing +6707 verbose get https://registry.npmjs.org/autoprefixer not expired, no request +6708 silly resolveWithNewModule eslint-plugin-react@7.1.0 checking installable status +6709 silly cache add args [ 'eslint-plugin-react@7.1.0', null ] +6710 verbose cache add spec eslint-plugin-react@7.1.0 +6711 silly cache add parsed spec Result { +6711 silly cache add raw: 'eslint-plugin-react@7.1.0', +6711 silly cache add scope: null, +6711 silly cache add name: 'eslint-plugin-react', +6711 silly cache add rawSpec: '7.1.0', +6711 silly cache add spec: '7.1.0', +6711 silly cache add type: 'version' } +6712 silly addNamed eslint-plugin-react@7.1.0 +6713 verbose addNamed "7.1.0" is a plain semver version for eslint-plugin-react +6714 silly mapToRegistry name eslint-plugin-react +6715 silly mapToRegistry using default registry +6716 silly mapToRegistry registry https://registry.npmjs.org/ +6717 silly mapToRegistry uri https://registry.npmjs.org/eslint-plugin-react +6718 verbose addNameVersion registry:https://registry.npmjs.org/eslint-plugin-react not in flight; fetching +6719 http 304 https://registry.npmjs.org/babel-core +6720 verbose headers { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6720 verbose headers via: '1.1 varnish', +6720 verbose headers 'cache-control': 'max-age=300', +6720 verbose headers etag: 'W/"59d19dca-8078e"', +6720 verbose headers age: '275', +6720 verbose headers connection: 'keep-alive', +6720 verbose headers 'x-served-by': 'cache-sin18020-SIN', +6720 verbose headers 'x-cache': 'HIT', +6720 verbose headers 'x-cache-hits': '3', +6720 verbose headers 'x-timer': 'S1506936843.532665,VS0,VE0', +6720 verbose headers vary: 'Accept-Encoding, Accept' } +6721 silly get cb [ 304, +6721 silly get { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6721 silly get via: '1.1 varnish', +6721 silly get 'cache-control': 'max-age=300', +6721 silly get etag: 'W/"59d19dca-8078e"', +6721 silly get age: '275', +6721 silly get connection: 'keep-alive', +6721 silly get 'x-served-by': 'cache-sin18020-SIN', +6721 silly get 'x-cache': 'HIT', +6721 silly get 'x-cache-hits': '3', +6721 silly get 'x-timer': 'S1506936843.532665,VS0,VE0', +6721 silly get vary: 'Accept-Encoding, Accept' } ] +6722 verbose etag https://registry.npmjs.org/babel-core from cache +6723 verbose get saving babel-core to /home/wso2/.npm/registry.npmjs.org/babel-core/.cache.json +6724 http 304 https://registry.npmjs.org/promise +6725 verbose headers { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6725 verbose headers via: '1.1 varnish', +6725 verbose headers 'cache-control': 'max-age=300', +6725 verbose headers etag: 'W/"59caadb9-ad91"', +6725 verbose headers age: '149', +6725 verbose headers connection: 'keep-alive', +6725 verbose headers 'x-served-by': 'cache-sin18033-SIN', +6725 verbose headers 'x-cache': 'HIT', +6725 verbose headers 'x-cache-hits': '5', +6725 verbose headers 'x-timer': 'S1506936843.533711,VS0,VE0', +6725 verbose headers vary: 'Accept-Encoding, Accept' } +6726 silly get cb [ 304, +6726 silly get { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6726 silly get via: '1.1 varnish', +6726 silly get 'cache-control': 'max-age=300', +6726 silly get etag: 'W/"59caadb9-ad91"', +6726 silly get age: '149', +6726 silly get connection: 'keep-alive', +6726 silly get 'x-served-by': 'cache-sin18033-SIN', +6726 silly get 'x-cache': 'HIT', +6726 silly get 'x-cache-hits': '5', +6726 silly get 'x-timer': 'S1506936843.533711,VS0,VE0', +6726 silly get vary: 'Accept-Encoding, Accept' } ] +6727 verbose etag https://registry.npmjs.org/promise from cache +6728 verbose get saving promise to /home/wso2/.npm/registry.npmjs.org/promise/.cache.json +6729 http 304 https://registry.npmjs.org/fsevents +6730 verbose headers { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6730 verbose headers via: '1.1 varnish', +6730 verbose headers 'cache-control': 'max-age=300', +6730 verbose headers etag: 'W/"597215e7-dd9a"', +6730 verbose headers age: '254', +6730 verbose headers connection: 'keep-alive', +6730 verbose headers 'x-served-by': 'cache-sin18031-SIN', +6730 verbose headers 'x-cache': 'HIT', +6730 verbose headers 'x-cache-hits': '18', +6730 verbose headers 'x-timer': 'S1506936843.542336,VS0,VE0', +6730 verbose headers vary: 'Accept-Encoding, Accept' } +6731 silly get cb [ 304, +6731 silly get { date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6731 silly get via: '1.1 varnish', +6731 silly get 'cache-control': 'max-age=300', +6731 silly get etag: 'W/"597215e7-dd9a"', +6731 silly get age: '254', +6731 silly get connection: 'keep-alive', +6731 silly get 'x-served-by': 'cache-sin18031-SIN', +6731 silly get 'x-cache': 'HIT', +6731 silly get 'x-cache-hits': '18', +6731 silly get 'x-timer': 'S1506936843.542336,VS0,VE0', +6731 silly get vary: 'Accept-Encoding, Accept' } ] +6732 verbose etag https://registry.npmjs.org/fsevents from cache +6733 verbose get saving fsevents to /home/wso2/.npm/registry.npmjs.org/fsevents/.cache.json +6734 verbose afterAdd /home/wso2/.npm/html-webpack-plugin/2.29.0/package/package.json written +6735 verbose afterAdd /home/wso2/.npm/babel-eslint/7.2.3/package/package.json written +6736 silly cache afterAdd url-loader@0.5.9 +6737 verbose afterAdd /home/wso2/.npm/url-loader/0.5.9/package/package.json not in flight; writing +6738 silly resolveWithNewModule sw-precache-webpack-plugin@0.11.3 checking installable status +6739 silly cache add args [ 'sw-precache-webpack-plugin@0.11.3', null ] +6740 verbose cache add spec sw-precache-webpack-plugin@0.11.3 +6741 silly cache add parsed spec Result { +6741 silly cache add raw: 'sw-precache-webpack-plugin@0.11.3', +6741 silly cache add scope: null, +6741 silly cache add name: 'sw-precache-webpack-plugin', +6741 silly cache add rawSpec: '0.11.3', +6741 silly cache add spec: '0.11.3', +6741 silly cache add type: 'version' } +6742 silly addNamed sw-precache-webpack-plugin@0.11.3 +6743 verbose addNamed "0.11.3" is a plain semver version for sw-precache-webpack-plugin +6744 silly mapToRegistry name sw-precache-webpack-plugin +6745 silly mapToRegistry using default registry +6746 silly mapToRegistry registry https://registry.npmjs.org/ +6747 silly mapToRegistry uri https://registry.npmjs.org/sw-precache-webpack-plugin +6748 verbose addNameVersion registry:https://registry.npmjs.org/sw-precache-webpack-plugin not in flight; fetching +6749 silly cache afterAdd style-loader@0.18.2 +6750 verbose afterAdd /home/wso2/.npm/style-loader/0.18.2/package/package.json not in flight; writing +6751 silly cache afterAdd babel-runtime@6.23.0 +6752 verbose afterAdd /home/wso2/.npm/babel-runtime/6.23.0/package/package.json not in flight; writing +6753 verbose get https://registry.npmjs.org/eslint-plugin-jsx-a11y not expired, no request +6754 verbose afterAdd /home/wso2/.npm/eslint-plugin-import/2.2.0/package/package.json written +6755 silly cache afterAdd fs-extra@3.0.1 +6756 verbose afterAdd /home/wso2/.npm/fs-extra/3.0.1/package/package.json not in flight; writing +6757 verbose get https://registry.npmjs.org/eslint-plugin-react not expired, no request +6758 silly cache afterAdd jest@20.0.4 +6759 verbose afterAdd /home/wso2/.npm/jest/20.0.4/package/package.json not in flight; writing +6760 silly cache afterAdd autoprefixer@7.1.1 +6761 verbose afterAdd /home/wso2/.npm/autoprefixer/7.1.1/package/package.json not in flight; writing +6762 http 200 https://registry.npmjs.org/react-error-overlay +6763 verbose headers { server: 'nginx/1.10.3', +6763 verbose headers 'content-type': 'application/json', +6763 verbose headers 'last-modified': 'Wed, 27 Sep 2017 00:20:05 GMT', +6763 verbose headers etag: 'W/"59caeeb5-dc8b"', +6763 verbose headers 'content-encoding': 'gzip', +6763 verbose headers 'cache-control': 'max-age=300', +6763 verbose headers 'content-length': '4687', +6763 verbose headers 'accept-ranges': 'bytes', +6763 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6763 verbose headers via: '1.1 varnish', +6763 verbose headers age: '0', +6763 verbose headers connection: 'keep-alive', +6763 verbose headers 'x-served-by': 'cache-sin18032-SIN', +6763 verbose headers 'x-cache': 'HIT', +6763 verbose headers 'x-cache-hits': '1', +6763 verbose headers 'x-timer': 'S1506936842.407910,VS0,VE160', +6763 verbose headers vary: 'Accept-Encoding, Accept' } +6764 silly get cb [ 200, +6764 silly get { server: 'nginx/1.10.3', +6764 silly get 'content-type': 'application/json', +6764 silly get 'last-modified': 'Wed, 27 Sep 2017 00:20:05 GMT', +6764 silly get etag: 'W/"59caeeb5-dc8b"', +6764 silly get 'content-encoding': 'gzip', +6764 silly get 'cache-control': 'max-age=300', +6764 silly get 'content-length': '4687', +6764 silly get 'accept-ranges': 'bytes', +6764 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6764 silly get via: '1.1 varnish', +6764 silly get age: '0', +6764 silly get connection: 'keep-alive', +6764 silly get 'x-served-by': 'cache-sin18032-SIN', +6764 silly get 'x-cache': 'HIT', +6764 silly get 'x-cache-hits': '1', +6764 silly get 'x-timer': 'S1506936842.407910,VS0,VE160', +6764 silly get vary: 'Accept-Encoding, Accept' } ] +6765 verbose get saving react-error-overlay to /home/wso2/.npm/registry.npmjs.org/react-error-overlay/.cache.json +6766 http 200 https://registry.npmjs.org/eslint-plugin-flowtype +6767 verbose headers { server: 'nginx/1.10.3', +6767 verbose headers 'content-type': 'application/json', +6767 verbose headers 'last-modified': 'Fri, 29 Sep 2017 12:52:35 GMT', +6767 verbose headers etag: 'W/"59ce4213-384c1"', +6767 verbose headers 'content-encoding': 'gzip', +6767 verbose headers 'cache-control': 'max-age=300', +6767 verbose headers 'content-length': '21545', +6767 verbose headers 'accept-ranges': 'bytes', +6767 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6767 verbose headers via: '1.1 varnish', +6767 verbose headers age: '0', +6767 verbose headers connection: 'keep-alive', +6767 verbose headers 'x-served-by': 'cache-sin18035-SIN', +6767 verbose headers 'x-cache': 'HIT', +6767 verbose headers 'x-cache-hits': '1', +6767 verbose headers 'x-timer': 'S1506936842.251786,VS0,VE160', +6767 verbose headers vary: 'Accept-Encoding, Accept' } +6768 silly get cb [ 200, +6768 silly get { server: 'nginx/1.10.3', +6768 silly get 'content-type': 'application/json', +6768 silly get 'last-modified': 'Fri, 29 Sep 2017 12:52:35 GMT', +6768 silly get etag: 'W/"59ce4213-384c1"', +6768 silly get 'content-encoding': 'gzip', +6768 silly get 'cache-control': 'max-age=300', +6768 silly get 'content-length': '21545', +6768 silly get 'accept-ranges': 'bytes', +6768 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6768 silly get via: '1.1 varnish', +6768 silly get age: '0', +6768 silly get connection: 'keep-alive', +6768 silly get 'x-served-by': 'cache-sin18035-SIN', +6768 silly get 'x-cache': 'HIT', +6768 silly get 'x-cache-hits': '1', +6768 silly get 'x-timer': 'S1506936842.251786,VS0,VE160', +6768 silly get vary: 'Accept-Encoding, Accept' } ] +6769 verbose get saving eslint-plugin-flowtype to /home/wso2/.npm/registry.npmjs.org/eslint-plugin-flowtype/.cache.json +6770 verbose afterAdd /home/wso2/.npm/url-loader/0.5.9/package/package.json written +6771 verbose get https://registry.npmjs.org/sw-precache-webpack-plugin not expired, no request +6772 silly resolveWithNewModule eslint@3.19.0 checking installable status +6773 silly cache add args [ 'eslint@3.19.0', null ] +6774 verbose cache add spec eslint@3.19.0 +6775 silly cache add parsed spec Result { +6775 silly cache add raw: 'eslint@3.19.0', +6775 silly cache add scope: null, +6775 silly cache add name: 'eslint', +6775 silly cache add rawSpec: '3.19.0', +6775 silly cache add spec: '3.19.0', +6775 silly cache add type: 'version' } +6776 silly addNamed eslint@3.19.0 +6777 verbose addNamed "3.19.0" is a plain semver version for eslint +6778 silly mapToRegistry name eslint +6779 silly mapToRegistry using default registry +6780 silly mapToRegistry registry https://registry.npmjs.org/ +6781 silly mapToRegistry uri https://registry.npmjs.org/eslint +6782 verbose addNameVersion registry:https://registry.npmjs.org/eslint not in flight; fetching +6783 verbose afterAdd /home/wso2/.npm/style-loader/0.18.2/package/package.json written +6784 silly resolveWithNewModule fsevents@1.1.2 checking installable status +6785 verbose afterAdd /home/wso2/.npm/babel-runtime/6.23.0/package/package.json written +6786 verbose afterAdd /home/wso2/.npm/fs-extra/3.0.1/package/package.json written +6787 silly cache afterAdd eslint-plugin-jsx-a11y@5.0.3 +6788 verbose afterAdd /home/wso2/.npm/eslint-plugin-jsx-a11y/5.0.3/package/package.json not in flight; writing +6789 http 200 https://registry.npmjs.org/webpack-dev-server +6790 verbose headers { server: 'nginx/1.10.3', +6790 verbose headers 'content-type': 'application/json', +6790 verbose headers 'last-modified': 'Sun, 01 Oct 2017 11:39:56 GMT', +6790 verbose headers etag: 'W/"59d0d40c-367cb"', +6790 verbose headers 'content-encoding': 'gzip', +6790 verbose headers 'cache-control': 'max-age=300', +6790 verbose headers 'content-length': '16168', +6790 verbose headers 'accept-ranges': 'bytes', +6790 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6790 verbose headers via: '1.1 varnish', +6790 verbose headers age: '86', +6790 verbose headers connection: 'keep-alive', +6790 verbose headers 'x-served-by': 'cache-sin18022-SIN', +6790 verbose headers 'x-cache': 'HIT', +6790 verbose headers 'x-cache-hits': '2', +6790 verbose headers 'x-timer': 'S1506936842.472975,VS0,VE0', +6790 verbose headers vary: 'Accept-Encoding, Accept' } +6791 silly get cb [ 200, +6791 silly get { server: 'nginx/1.10.3', +6791 silly get 'content-type': 'application/json', +6791 silly get 'last-modified': 'Sun, 01 Oct 2017 11:39:56 GMT', +6791 silly get etag: 'W/"59d0d40c-367cb"', +6791 silly get 'content-encoding': 'gzip', +6791 silly get 'cache-control': 'max-age=300', +6791 silly get 'content-length': '16168', +6791 silly get 'accept-ranges': 'bytes', +6791 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6791 silly get via: '1.1 varnish', +6791 silly get age: '86', +6791 silly get connection: 'keep-alive', +6791 silly get 'x-served-by': 'cache-sin18022-SIN', +6791 silly get 'x-cache': 'HIT', +6791 silly get 'x-cache-hits': '2', +6791 silly get 'x-timer': 'S1506936842.472975,VS0,VE0', +6791 silly get vary: 'Accept-Encoding, Accept' } ] +6792 verbose get saving webpack-dev-server to /home/wso2/.npm/registry.npmjs.org/webpack-dev-server/.cache.json +6793 verbose afterAdd /home/wso2/.npm/jest/20.0.4/package/package.json written +6794 silly cache afterAdd eslint-plugin-react@7.1.0 +6795 verbose afterAdd /home/wso2/.npm/eslint-plugin-react/7.1.0/package/package.json not in flight; writing +6796 verbose afterAdd /home/wso2/.npm/autoprefixer/7.1.1/package/package.json written +6797 verbose get https://registry.npmjs.org/eslint not expired, no request +6798 silly cache afterAdd sw-precache-webpack-plugin@0.11.3 +6799 verbose afterAdd /home/wso2/.npm/sw-precache-webpack-plugin/0.11.3/package/package.json not in flight; writing +6800 silly cache afterAdd promise@7.1.1 +6801 verbose afterAdd /home/wso2/.npm/promise/7.1.1/package/package.json not in flight; writing +6802 silly resolveWithNewModule react-error-overlay@1.0.10 checking installable status +6803 silly cache add args [ 'react-error-overlay@^1.0.9', null ] +6804 verbose cache add spec react-error-overlay@^1.0.9 +6805 silly cache add parsed spec Result { +6805 silly cache add raw: 'react-error-overlay@^1.0.9', +6805 silly cache add scope: null, +6805 silly cache add name: 'react-error-overlay', +6805 silly cache add rawSpec: '^1.0.9', +6805 silly cache add spec: '>=1.0.9 <2.0.0', +6805 silly cache add type: 'range' } +6806 silly addNamed react-error-overlay@>=1.0.9 <2.0.0 +6807 verbose addNamed ">=1.0.9 <2.0.0" is a valid semver range for react-error-overlay +6808 silly addNameRange { name: 'react-error-overlay', +6808 silly addNameRange range: '>=1.0.9 <2.0.0', +6808 silly addNameRange hasData: false } +6809 silly mapToRegistry name react-error-overlay +6810 silly mapToRegistry using default registry +6811 silly mapToRegistry registry https://registry.npmjs.org/ +6812 silly mapToRegistry uri https://registry.npmjs.org/react-error-overlay +6813 verbose addNameRange registry:https://registry.npmjs.org/react-error-overlay not in flight; fetching +6814 silly resolveWithNewModule eslint-plugin-flowtype@2.34.0 checking installable status +6815 silly cache add args [ 'eslint-plugin-flowtype@2.34.0', null ] +6816 verbose cache add spec eslint-plugin-flowtype@2.34.0 +6817 silly cache add parsed spec Result { +6817 silly cache add raw: 'eslint-plugin-flowtype@2.34.0', +6817 silly cache add scope: null, +6817 silly cache add name: 'eslint-plugin-flowtype', +6817 silly cache add rawSpec: '2.34.0', +6817 silly cache add spec: '2.34.0', +6817 silly cache add type: 'version' } +6818 silly addNamed eslint-plugin-flowtype@2.34.0 +6819 verbose addNamed "2.34.0" is a plain semver version for eslint-plugin-flowtype +6820 silly mapToRegistry name eslint-plugin-flowtype +6821 silly mapToRegistry using default registry +6822 silly mapToRegistry registry https://registry.npmjs.org/ +6823 silly mapToRegistry uri https://registry.npmjs.org/eslint-plugin-flowtype +6824 verbose addNameVersion registry:https://registry.npmjs.org/eslint-plugin-flowtype not in flight; fetching +6825 silly cache afterAdd babel-core@6.25.0 +6826 verbose afterAdd /home/wso2/.npm/babel-core/6.25.0/package/package.json not in flight; writing +6827 verbose afterAdd /home/wso2/.npm/eslint-plugin-jsx-a11y/5.0.3/package/package.json written +6828 verbose afterAdd /home/wso2/.npm/eslint-plugin-react/7.1.0/package/package.json written +6829 http 200 https://registry.npmjs.org/webpack-manifest-plugin +6830 verbose headers { server: 'nginx/1.10.3', +6830 verbose headers 'content-type': 'application/json', +6830 verbose headers 'last-modified': 'Sat, 30 Sep 2017 13:35:17 GMT', +6830 verbose headers etag: 'W/"59cf9d95-7bde"', +6830 verbose headers 'content-encoding': 'gzip', +6830 verbose headers 'cache-control': 'max-age=300', +6830 verbose headers 'content-length': '5496', +6830 verbose headers 'accept-ranges': 'bytes', +6830 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6830 verbose headers via: '1.1 varnish', +6830 verbose headers age: '0', +6830 verbose headers connection: 'keep-alive', +6830 verbose headers 'x-served-by': 'cache-sin18022-SIN', +6830 verbose headers 'x-cache': 'HIT', +6830 verbose headers 'x-cache-hits': '1', +6830 verbose headers 'x-timer': 'S1506936842.474020,VS0,VE167', +6830 verbose headers vary: 'Accept-Encoding, Accept' } +6831 silly get cb [ 200, +6831 silly get { server: 'nginx/1.10.3', +6831 silly get 'content-type': 'application/json', +6831 silly get 'last-modified': 'Sat, 30 Sep 2017 13:35:17 GMT', +6831 silly get etag: 'W/"59cf9d95-7bde"', +6831 silly get 'content-encoding': 'gzip', +6831 silly get 'cache-control': 'max-age=300', +6831 silly get 'content-length': '5496', +6831 silly get 'accept-ranges': 'bytes', +6831 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6831 silly get via: '1.1 varnish', +6831 silly get age: '0', +6831 silly get connection: 'keep-alive', +6831 silly get 'x-served-by': 'cache-sin18022-SIN', +6831 silly get 'x-cache': 'HIT', +6831 silly get 'x-cache-hits': '1', +6831 silly get 'x-timer': 'S1506936842.474020,VS0,VE167', +6831 silly get vary: 'Accept-Encoding, Accept' } ] +6832 verbose get saving webpack-manifest-plugin to /home/wso2/.npm/registry.npmjs.org/webpack-manifest-plugin/.cache.json +6833 verbose afterAdd /home/wso2/.npm/sw-precache-webpack-plugin/0.11.3/package/package.json written +6834 silly resolveWithNewModule webpack-dev-server@2.5.0 checking installable status +6835 silly cache add args [ 'webpack-dev-server@2.5.0', null ] +6836 verbose cache add spec webpack-dev-server@2.5.0 +6837 silly cache add parsed spec Result { +6837 silly cache add raw: 'webpack-dev-server@2.5.0', +6837 silly cache add scope: null, +6837 silly cache add name: 'webpack-dev-server', +6837 silly cache add rawSpec: '2.5.0', +6837 silly cache add spec: '2.5.0', +6837 silly cache add type: 'version' } +6838 silly addNamed webpack-dev-server@2.5.0 +6839 verbose addNamed "2.5.0" is a plain semver version for webpack-dev-server +6840 silly mapToRegistry name webpack-dev-server +6841 silly mapToRegistry using default registry +6842 silly mapToRegistry registry https://registry.npmjs.org/ +6843 silly mapToRegistry uri https://registry.npmjs.org/webpack-dev-server +6844 verbose addNameVersion registry:https://registry.npmjs.org/webpack-dev-server not in flight; fetching +6845 verbose afterAdd /home/wso2/.npm/promise/7.1.1/package/package.json written +6846 verbose get https://registry.npmjs.org/react-error-overlay not expired, no request +6847 silly addNameRange number 2 { name: 'react-error-overlay', +6847 silly addNameRange range: '>=1.0.9 <2.0.0', +6847 silly addNameRange hasData: true } +6848 silly addNameRange versions [ 'react-error-overlay', +6848 silly addNameRange [ '0.0.0', +6848 silly addNameRange '1.0.0-alpha.58689133', +6848 silly addNameRange '1.0.0-alpha.dadf93b2', +6848 silly addNameRange '1.0.0-alpha.134d2297', +6848 silly addNameRange '1.0.0-alpha.e280254d', +6848 silly addNameRange '1.0.0-alpha.c82c4f05', +6848 silly addNameRange '1.0.0-alpha.0d0536f9', +6848 silly addNameRange '1.0.0-alpha.02968ecd', +6848 silly addNameRange '1.0.0-alpha.55afd862', +6848 silly addNameRange '1.0.0', +6848 silly addNameRange '1.0.1', +6848 silly addNameRange '1.0.2', +6848 silly addNameRange '1.0.3', +6848 silly addNameRange '1.0.4', +6848 silly addNameRange '1.0.5', +6848 silly addNameRange '1.0.6', +6848 silly addNameRange '1.0.7', +6848 silly addNameRange '1.0.7-alpha.60ae2b6d', +6848 silly addNameRange '1.0.8', +6848 silly addNameRange '1.0.9', +6848 silly addNameRange '1.0.10', +6848 silly addNameRange '2.0.0', +6848 silly addNameRange '2.0.1', +6848 silly addNameRange '2.0.2' ] ] +6849 silly addNamed react-error-overlay@1.0.10 +6850 verbose addNamed "1.0.10" is a plain semver version for react-error-overlay +6851 verbose get https://registry.npmjs.org/eslint-plugin-flowtype not expired, no request +6852 silly cache afterAdd eslint@3.19.0 +6853 verbose afterAdd /home/wso2/.npm/eslint/3.19.0/package/package.json not in flight; writing +6854 verbose afterAdd /home/wso2/.npm/babel-core/6.25.0/package/package.json written +6855 verbose get https://registry.npmjs.org/webpack-dev-server not expired, no request +6856 http fetch 200 https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.0.3.tgz +6857 verbose afterAdd /home/wso2/.npm/eslint/3.19.0/package/package.json written +6858 silly resolveWithNewModule webpack-manifest-plugin@1.1.0 checking installable status +6859 silly cache add args [ 'webpack-manifest-plugin@1.1.0', null ] +6860 verbose cache add spec webpack-manifest-plugin@1.1.0 +6861 silly cache add parsed spec Result { +6861 silly cache add raw: 'webpack-manifest-plugin@1.1.0', +6861 silly cache add scope: null, +6861 silly cache add name: 'webpack-manifest-plugin', +6861 silly cache add rawSpec: '1.1.0', +6861 silly cache add spec: '1.1.0', +6861 silly cache add type: 'version' } +6862 silly addNamed webpack-manifest-plugin@1.1.0 +6863 verbose addNamed "1.1.0" is a plain semver version for webpack-manifest-plugin +6864 silly mapToRegistry name webpack-manifest-plugin +6865 silly mapToRegistry using default registry +6866 silly mapToRegistry registry https://registry.npmjs.org/ +6867 silly mapToRegistry uri https://registry.npmjs.org/webpack-manifest-plugin +6868 verbose addNameVersion registry:https://registry.npmjs.org/webpack-manifest-plugin not in flight; fetching +6869 silly cache afterAdd eslint-plugin-flowtype@2.34.0 +6870 verbose afterAdd /home/wso2/.npm/eslint-plugin-flowtype/2.34.0/package/package.json not in flight; writing +6871 silly cache afterAdd react-error-overlay@1.0.10 +6872 verbose afterAdd /home/wso2/.npm/react-error-overlay/1.0.10/package/package.json not in flight; writing +6873 silly fetchAndShaCheck shasum 5716d6a8c7354db0cc2707207ab6ceb3b2e0a825 +6874 verbose get https://registry.npmjs.org/webpack-manifest-plugin not expired, no request +6875 verbose afterAdd /home/wso2/.npm/eslint-plugin-flowtype/2.34.0/package/package.json written +6876 verbose afterAdd /home/wso2/.npm/react-error-overlay/1.0.10/package/package.json written +6877 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.0.3.tgz not in flight; adding +6878 verbose addTmpTarball already have metadata; skipping unpack for babel-preset-react-app@3.0.3 +6879 silly cache afterAdd webpack-dev-server@2.5.0 +6880 verbose afterAdd /home/wso2/.npm/webpack-dev-server/2.5.0/package/package.json not in flight; writing +6881 verbose afterAdd /home/wso2/.npm/webpack-dev-server/2.5.0/package/package.json written +6882 silly cache afterAdd webpack-manifest-plugin@1.1.0 +6883 verbose afterAdd /home/wso2/.npm/webpack-manifest-plugin/1.1.0/package/package.json not in flight; writing +6884 verbose afterAdd /home/wso2/.npm/webpack-manifest-plugin/1.1.0/package/package.json written +6885 silly cache afterAdd babel-preset-react-app@3.0.3 +6886 verbose afterAdd /home/wso2/.npm/babel-preset-react-app/3.0.3/package/package.json not in flight; writing +6887 verbose afterAdd /home/wso2/.npm/babel-preset-react-app/3.0.3/package/package.json written +6888 http 200 https://registry.npmjs.org/webpack +6889 verbose headers { server: 'nginx/1.10.3', +6889 verbose headers 'content-type': 'application/json', +6889 verbose headers 'last-modified': 'Sun, 01 Oct 2017 13:04:29 GMT', +6889 verbose headers etag: 'W/"59d0e7dd-10a0b3"', +6889 verbose headers 'content-encoding': 'gzip', +6889 verbose headers 'cache-control': 'max-age=300', +6889 verbose headers 'content-length': '56657', +6889 verbose headers 'accept-ranges': 'bytes', +6889 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6889 verbose headers via: '1.1 varnish', +6889 verbose headers age: '99', +6889 verbose headers connection: 'keep-alive', +6889 verbose headers 'x-served-by': 'cache-sin18030-SIN', +6889 verbose headers 'x-cache': 'HIT', +6889 verbose headers 'x-cache-hits': '5', +6889 verbose headers 'x-timer': 'S1506936843.521078,VS0,VE0', +6889 verbose headers vary: 'Accept-Encoding, Accept' } +6890 silly get cb [ 200, +6890 silly get { server: 'nginx/1.10.3', +6890 silly get 'content-type': 'application/json', +6890 silly get 'last-modified': 'Sun, 01 Oct 2017 13:04:29 GMT', +6890 silly get etag: 'W/"59d0e7dd-10a0b3"', +6890 silly get 'content-encoding': 'gzip', +6890 silly get 'cache-control': 'max-age=300', +6890 silly get 'content-length': '56657', +6890 silly get 'accept-ranges': 'bytes', +6890 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6890 silly get via: '1.1 varnish', +6890 silly get age: '99', +6890 silly get connection: 'keep-alive', +6890 silly get 'x-served-by': 'cache-sin18030-SIN', +6890 silly get 'x-cache': 'HIT', +6890 silly get 'x-cache-hits': '5', +6890 silly get 'x-timer': 'S1506936843.521078,VS0,VE0', +6890 silly get vary: 'Accept-Encoding, Accept' } ] +6891 verbose get saving webpack to /home/wso2/.npm/registry.npmjs.org/webpack/.cache.json +6892 silly resolveWithNewModule webpack@2.6.1 checking installable status +6893 silly cache add args [ 'webpack@2.6.1', null ] +6894 verbose cache add spec webpack@2.6.1 +6895 silly cache add parsed spec Result { +6895 silly cache add raw: 'webpack@2.6.1', +6895 silly cache add scope: null, +6895 silly cache add name: 'webpack', +6895 silly cache add rawSpec: '2.6.1', +6895 silly cache add spec: '2.6.1', +6895 silly cache add type: 'version' } +6896 silly addNamed webpack@2.6.1 +6897 verbose addNamed "2.6.1" is a plain semver version for webpack +6898 silly mapToRegistry name webpack +6899 silly mapToRegistry using default registry +6900 silly mapToRegistry registry https://registry.npmjs.org/ +6901 silly mapToRegistry uri https://registry.npmjs.org/webpack +6902 verbose addNameVersion registry:https://registry.npmjs.org/webpack not in flight; fetching +6903 verbose get https://registry.npmjs.org/webpack not expired, no request +6904 http 200 https://registry.npmjs.org/dotenv +6905 verbose headers { server: 'nginx/1.10.3', +6905 verbose headers 'content-type': 'application/json', +6905 verbose headers 'last-modified': 'Mon, 02 Oct 2017 01:07:34 GMT', +6905 verbose headers etag: 'W/"59d19156-a036"', +6905 verbose headers 'content-encoding': 'gzip', +6905 verbose headers 'cache-control': 'max-age=300', +6905 verbose headers 'content-length': '8685', +6905 verbose headers 'accept-ranges': 'bytes', +6905 verbose headers date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6905 verbose headers via: '1.1 varnish', +6905 verbose headers age: '0', +6905 verbose headers connection: 'keep-alive', +6905 verbose headers 'x-served-by': 'cache-sin18022-SIN', +6905 verbose headers 'x-cache': 'HIT', +6905 verbose headers 'x-cache-hits': '1', +6905 verbose headers 'x-timer': 'S1506936842.166626,VS0,VE677', +6905 verbose headers vary: 'Accept-Encoding, Accept' } +6906 silly get cb [ 200, +6906 silly get { server: 'nginx/1.10.3', +6906 silly get 'content-type': 'application/json', +6906 silly get 'last-modified': 'Mon, 02 Oct 2017 01:07:34 GMT', +6906 silly get etag: 'W/"59d19156-a036"', +6906 silly get 'content-encoding': 'gzip', +6906 silly get 'cache-control': 'max-age=300', +6906 silly get 'content-length': '8685', +6906 silly get 'accept-ranges': 'bytes', +6906 silly get date: 'Mon, 02 Oct 2017 09:34:02 GMT', +6906 silly get via: '1.1 varnish', +6906 silly get age: '0', +6906 silly get connection: 'keep-alive', +6906 silly get 'x-served-by': 'cache-sin18022-SIN', +6906 silly get 'x-cache': 'HIT', +6906 silly get 'x-cache-hits': '1', +6906 silly get 'x-timer': 'S1506936842.166626,VS0,VE677', +6906 silly get vary: 'Accept-Encoding, Accept' } ] +6907 verbose get saving dotenv to /home/wso2/.npm/registry.npmjs.org/dotenv/.cache.json +6908 silly cache afterAdd webpack@2.6.1 +6909 verbose afterAdd /home/wso2/.npm/webpack/2.6.1/package/package.json not in flight; writing +6910 verbose afterAdd /home/wso2/.npm/webpack/2.6.1/package/package.json written +6911 silly resolveWithNewModule dotenv@4.0.0 checking installable status +6912 silly cache add args [ 'dotenv@4.0.0', null ] +6913 verbose cache add spec dotenv@4.0.0 +6914 silly cache add parsed spec Result { +6914 silly cache add raw: 'dotenv@4.0.0', +6914 silly cache add scope: null, +6914 silly cache add name: 'dotenv', +6914 silly cache add rawSpec: '4.0.0', +6914 silly cache add spec: '4.0.0', +6914 silly cache add type: 'version' } +6915 silly addNamed dotenv@4.0.0 +6916 verbose addNamed "4.0.0" is a plain semver version for dotenv +6917 silly mapToRegistry name dotenv +6918 silly mapToRegistry using default registry +6919 silly mapToRegistry registry https://registry.npmjs.org/ +6920 silly mapToRegistry uri https://registry.npmjs.org/dotenv +6921 verbose addNameVersion registry:https://registry.npmjs.org/dotenv not in flight; fetching +6922 verbose get https://registry.npmjs.org/dotenv not expired, no request +6923 silly cache afterAdd dotenv@4.0.0 +6924 verbose afterAdd /home/wso2/.npm/dotenv/4.0.0/package/package.json not in flight; writing +6925 verbose afterAdd /home/wso2/.npm/dotenv/4.0.0/package/package.json written +6926 http 200 https://registry.npmjs.org/react-dev-utils +6927 verbose headers { server: 'nginx/1.10.3', +6927 verbose headers 'content-type': 'application/json', +6927 verbose headers 'last-modified': 'Wed, 27 Sep 2017 00:20:08 GMT', +6927 verbose headers etag: 'W/"59caeeb8-13c24"', +6927 verbose headers 'content-encoding': 'gzip', +6927 verbose headers 'cache-control': 'max-age=300', +6927 verbose headers 'content-length': '10028', +6927 verbose headers 'accept-ranges': 'bytes', +6927 verbose headers date: 'Mon, 02 Oct 2017 09:34:03 GMT', +6927 verbose headers via: '1.1 varnish', +6927 verbose headers age: '0', +6927 verbose headers connection: 'keep-alive', +6927 verbose headers 'x-served-by': 'cache-sin18024-SIN', +6927 verbose headers 'x-cache': 'HIT', +6927 verbose headers 'x-cache-hits': '1', +6927 verbose headers 'x-timer': 'S1506936842.387282,VS0,VE672', +6927 verbose headers vary: 'Accept-Encoding, Accept' } +6928 silly get cb [ 200, +6928 silly get { server: 'nginx/1.10.3', +6928 silly get 'content-type': 'application/json', +6928 silly get 'last-modified': 'Wed, 27 Sep 2017 00:20:08 GMT', +6928 silly get etag: 'W/"59caeeb8-13c24"', +6928 silly get 'content-encoding': 'gzip', +6928 silly get 'cache-control': 'max-age=300', +6928 silly get 'content-length': '10028', +6928 silly get 'accept-ranges': 'bytes', +6928 silly get date: 'Mon, 02 Oct 2017 09:34:03 GMT', +6928 silly get via: '1.1 varnish', +6928 silly get age: '0', +6928 silly get connection: 'keep-alive', +6928 silly get 'x-served-by': 'cache-sin18024-SIN', +6928 silly get 'x-cache': 'HIT', +6928 silly get 'x-cache-hits': '1', +6928 silly get 'x-timer': 'S1506936842.387282,VS0,VE672', +6928 silly get vary: 'Accept-Encoding, Accept' } ] +6929 verbose get saving react-dev-utils to /home/wso2/.npm/registry.npmjs.org/react-dev-utils/.cache.json +6930 silly resolveWithNewModule react-dev-utils@3.1.1 checking installable status +6931 silly cache add args [ 'react-dev-utils@^3.0.2', null ] +6932 verbose cache add spec react-dev-utils@^3.0.2 +6933 silly cache add parsed spec Result { +6933 silly cache add raw: 'react-dev-utils@^3.0.2', +6933 silly cache add scope: null, +6933 silly cache add name: 'react-dev-utils', +6933 silly cache add rawSpec: '^3.0.2', +6933 silly cache add spec: '>=3.0.2 <4.0.0', +6933 silly cache add type: 'range' } +6934 silly addNamed react-dev-utils@>=3.0.2 <4.0.0 +6935 verbose addNamed ">=3.0.2 <4.0.0" is a valid semver range for react-dev-utils +6936 silly addNameRange { name: 'react-dev-utils', +6936 silly addNameRange range: '>=3.0.2 <4.0.0', +6936 silly addNameRange hasData: false } +6937 silly mapToRegistry name react-dev-utils +6938 silly mapToRegistry using default registry +6939 silly mapToRegistry registry https://registry.npmjs.org/ +6940 silly mapToRegistry uri https://registry.npmjs.org/react-dev-utils +6941 verbose addNameRange registry:https://registry.npmjs.org/react-dev-utils not in flight; fetching +6942 verbose get https://registry.npmjs.org/react-dev-utils not expired, no request +6943 silly addNameRange number 2 { name: 'react-dev-utils', +6943 silly addNameRange range: '>=3.0.2 <4.0.0', +6943 silly addNameRange hasData: true } +6944 silly addNameRange versions [ 'react-dev-utils', +6944 silly addNameRange [ '0.0.0', +6944 silly addNameRange '0.1.0', +6944 silly addNameRange '0.1.1', +6944 silly addNameRange '0.2.0', +6944 silly addNameRange '0.2.1', +6944 silly addNameRange '0.3.0', +6944 silly addNameRange '0.3.0-alpha.e756d73a', +6944 silly addNameRange '0.3.0-alpha.9c45b252', +6944 silly addNameRange '0.4.0', +6944 silly addNameRange '0.4.1', +6944 silly addNameRange '0.4.2', +6944 silly addNameRange '0.5.0', +6944 silly addNameRange '0.5.1', +6944 silly addNameRange '0.5.2', +6944 silly addNameRange '0.6.0-alpha.f55d2212', +6944 silly addNameRange '1.0.0-alpha.58689133', +6944 silly addNameRange '1.0.0-alpha.dadf93b2', +6944 silly addNameRange '1.0.0-alpha.134d2297', +6944 silly addNameRange '1.0.0-alpha.e280254d', +6944 silly addNameRange '1.0.0-alpha.c82c4f05', +6944 silly addNameRange '1.0.0-alpha.0d0536f9', +6944 silly addNameRange '1.0.0-alpha.02968ecd', +6944 silly addNameRange '1.0.0-alpha.55afd862', +6944 silly addNameRange '1.0.0', +6944 silly addNameRange '1.0.1', +6944 silly addNameRange '1.0.2', +6944 silly addNameRange '1.0.3', +6944 silly addNameRange '2.0.0', +6944 silly addNameRange '2.0.1', +6944 silly addNameRange '3.0.0', +6944 silly addNameRange '3.0.0-alpha.60ae2b6d', +6944 silly addNameRange '3.0.1', +6944 silly addNameRange '3.0.2', +6944 silly addNameRange '3.1.0', +6944 silly addNameRange '3.1.1', +6944 silly addNameRange '4.0.0', +6944 silly addNameRange '4.0.1', +6944 silly addNameRange '4.1.0' ] ] +6945 silly addNamed react-dev-utils@3.1.1 +6946 verbose addNamed "3.1.1" is a plain semver version for react-dev-utils +6947 silly cache afterAdd react-dev-utils@3.1.1 +6948 verbose afterAdd /home/wso2/.npm/react-dev-utils/3.1.1/package/package.json not in flight; writing +6949 verbose afterAdd /home/wso2/.npm/react-dev-utils/3.1.1/package/package.json written +6950 http 200 https://registry.npmjs.org/css-loader +6951 verbose headers { server: 'nginx/1.10.3', +6951 verbose headers 'content-type': 'application/json', +6951 verbose headers 'last-modified': 'Sat, 30 Sep 2017 20:39:58 GMT', +6951 verbose headers etag: 'W/"59d0011e-1fd87"', +6951 verbose headers 'content-encoding': 'gzip', +6951 verbose headers 'cache-control': 'max-age=300', +6951 verbose headers 'content-length': '15590', +6951 verbose headers 'accept-ranges': 'bytes', +6951 verbose headers date: 'Mon, 02 Oct 2017 09:34:03 GMT', +6951 verbose headers via: '1.1 varnish', +6951 verbose headers age: '275', +6951 verbose headers connection: 'keep-alive', +6951 verbose headers 'x-served-by': 'cache-sin18033-SIN', +6951 verbose headers 'x-cache': 'HIT', +6951 verbose headers 'x-cache-hits': '5', +6951 verbose headers 'x-timer': 'S1506936843.185705,VS0,VE0', +6951 verbose headers vary: 'Accept-Encoding, Accept' } +6952 silly get cb [ 200, +6952 silly get { server: 'nginx/1.10.3', +6952 silly get 'content-type': 'application/json', +6952 silly get 'last-modified': 'Sat, 30 Sep 2017 20:39:58 GMT', +6952 silly get etag: 'W/"59d0011e-1fd87"', +6952 silly get 'content-encoding': 'gzip', +6952 silly get 'cache-control': 'max-age=300', +6952 silly get 'content-length': '15590', +6952 silly get 'accept-ranges': 'bytes', +6952 silly get date: 'Mon, 02 Oct 2017 09:34:03 GMT', +6952 silly get via: '1.1 varnish', +6952 silly get age: '275', +6952 silly get connection: 'keep-alive', +6952 silly get 'x-served-by': 'cache-sin18033-SIN', +6952 silly get 'x-cache': 'HIT', +6952 silly get 'x-cache-hits': '5', +6952 silly get 'x-timer': 'S1506936843.185705,VS0,VE0', +6952 silly get vary: 'Accept-Encoding, Accept' } ] +6953 verbose get saving css-loader to /home/wso2/.npm/registry.npmjs.org/css-loader/.cache.json +6954 silly resolveWithNewModule css-loader@0.28.4 checking installable status +6955 silly cache add args [ 'css-loader@0.28.4', null ] +6956 verbose cache add spec css-loader@0.28.4 +6957 silly cache add parsed spec Result { +6957 silly cache add raw: 'css-loader@0.28.4', +6957 silly cache add scope: null, +6957 silly cache add name: 'css-loader', +6957 silly cache add rawSpec: '0.28.4', +6957 silly cache add spec: '0.28.4', +6957 silly cache add type: 'version' } +6958 silly addNamed css-loader@0.28.4 +6959 verbose addNamed "0.28.4" is a plain semver version for css-loader +6960 silly mapToRegistry name css-loader +6961 silly mapToRegistry using default registry +6962 silly mapToRegistry registry https://registry.npmjs.org/ +6963 silly mapToRegistry uri https://registry.npmjs.org/css-loader +6964 verbose addNameVersion registry:https://registry.npmjs.org/css-loader not in flight; fetching +6965 verbose get https://registry.npmjs.org/css-loader not expired, no request +6966 silly cache afterAdd css-loader@0.28.4 +6967 verbose afterAdd /home/wso2/.npm/css-loader/0.28.4/package/package.json not in flight; writing +6968 verbose afterAdd /home/wso2/.npm/css-loader/0.28.4/package/package.json written +6969 http 200 https://registry.npmjs.org/eslint-config-react-app +6970 verbose headers { server: 'nginx/1.10.3', +6970 verbose headers 'content-type': 'application/json', +6970 verbose headers 'last-modified': 'Wed, 27 Sep 2017 00:19:53 GMT', +6970 verbose headers etag: 'W/"59caeea9-bf4c"', +6970 verbose headers 'content-encoding': 'gzip', +6970 verbose headers 'cache-control': 'max-age=300', +6970 verbose headers 'content-length': '5607', +6970 verbose headers 'accept-ranges': 'bytes', +6970 verbose headers date: 'Mon, 02 Oct 2017 09:34:03 GMT', +6970 verbose headers via: '1.1 varnish', +6970 verbose headers age: '0', +6970 verbose headers connection: 'keep-alive', +6970 verbose headers 'x-served-by': 'cache-sin18023-SIN', +6970 verbose headers 'x-cache': 'HIT', +6970 verbose headers 'x-cache-hits': '1', +6970 verbose headers 'x-timer': 'S1506936843.185967,VS0,VE167', +6970 verbose headers vary: 'Accept-Encoding, Accept' } +6971 silly get cb [ 200, +6971 silly get { server: 'nginx/1.10.3', +6971 silly get 'content-type': 'application/json', +6971 silly get 'last-modified': 'Wed, 27 Sep 2017 00:19:53 GMT', +6971 silly get etag: 'W/"59caeea9-bf4c"', +6971 silly get 'content-encoding': 'gzip', +6971 silly get 'cache-control': 'max-age=300', +6971 silly get 'content-length': '5607', +6971 silly get 'accept-ranges': 'bytes', +6971 silly get date: 'Mon, 02 Oct 2017 09:34:03 GMT', +6971 silly get via: '1.1 varnish', +6971 silly get age: '0', +6971 silly get connection: 'keep-alive', +6971 silly get 'x-served-by': 'cache-sin18023-SIN', +6971 silly get 'x-cache': 'HIT', +6971 silly get 'x-cache-hits': '1', +6971 silly get 'x-timer': 'S1506936843.185967,VS0,VE167', +6971 silly get vary: 'Accept-Encoding, Accept' } ] +6972 verbose get saving eslint-config-react-app to /home/wso2/.npm/registry.npmjs.org/eslint-config-react-app/.cache.json +6973 silly resolveWithNewModule eslint-config-react-app@1.0.5 checking installable status +6974 silly cache add args [ 'eslint-config-react-app@^1.0.5', null ] +6975 verbose cache add spec eslint-config-react-app@^1.0.5 +6976 silly cache add parsed spec Result { +6976 silly cache add raw: 'eslint-config-react-app@^1.0.5', +6976 silly cache add scope: null, +6976 silly cache add name: 'eslint-config-react-app', +6976 silly cache add rawSpec: '^1.0.5', +6976 silly cache add spec: '>=1.0.5 <2.0.0', +6976 silly cache add type: 'range' } +6977 silly addNamed eslint-config-react-app@>=1.0.5 <2.0.0 +6978 verbose addNamed ">=1.0.5 <2.0.0" is a valid semver range for eslint-config-react-app +6979 silly addNameRange { name: 'eslint-config-react-app', +6979 silly addNameRange range: '>=1.0.5 <2.0.0', +6979 silly addNameRange hasData: false } +6980 silly mapToRegistry name eslint-config-react-app +6981 silly mapToRegistry using default registry +6982 silly mapToRegistry registry https://registry.npmjs.org/ +6983 silly mapToRegistry uri https://registry.npmjs.org/eslint-config-react-app +6984 verbose addNameRange registry:https://registry.npmjs.org/eslint-config-react-app not in flight; fetching +6985 verbose get https://registry.npmjs.org/eslint-config-react-app not expired, no request +6986 silly addNameRange number 2 { name: 'eslint-config-react-app', +6986 silly addNameRange range: '>=1.0.5 <2.0.0', +6986 silly addNameRange hasData: true } +6987 silly addNameRange versions [ 'eslint-config-react-app', +6987 silly addNameRange [ '0.0.0', +6987 silly addNameRange '0.1.0', +6987 silly addNameRange '0.2.0', +6987 silly addNameRange '0.2.1', +6987 silly addNameRange '0.3.0', +6987 silly addNameRange '0.3.0-alpha.e756d73a', +6987 silly addNameRange '0.3.0-alpha.9c45b252', +6987 silly addNameRange '0.4.0', +6987 silly addNameRange '0.5.0', +6987 silly addNameRange '0.5.1', +6987 silly addNameRange '0.5.2', +6987 silly addNameRange '0.6.0', +6987 silly addNameRange '0.6.1', +6987 silly addNameRange '0.6.2', +6987 silly addNameRange '0.7.0-alpha.f55d2212', +6987 silly addNameRange '1.0.0-alpha.58689133', +6987 silly addNameRange '1.0.0-alpha.dadf93b2', +6987 silly addNameRange '1.0.0-alpha.134d2297', +6987 silly addNameRange '1.0.0-alpha.e280254d', +6987 silly addNameRange '1.0.0-alpha.c82c4f05', +6987 silly addNameRange '1.0.0-alpha.0d0536f9', +6987 silly addNameRange '1.0.0-alpha.02968ecd', +6987 silly addNameRange '1.0.0-alpha.55afd862', +6987 silly addNameRange '1.0.0', +6987 silly addNameRange '1.0.1', +6987 silly addNameRange '1.0.2', +6987 silly addNameRange '1.0.3', +6987 silly addNameRange '1.0.4', +6987 silly addNameRange '1.0.4-alpha.60ae2b6d', +6987 silly addNameRange '1.0.5', +6987 silly addNameRange '2.0.0', +6987 silly addNameRange '2.0.1' ] ] +6988 silly addNamed eslint-config-react-app@1.0.5 +6989 verbose addNamed "1.0.5" is a plain semver version for eslint-config-react-app +6990 silly cache afterAdd eslint-config-react-app@1.0.5 +6991 verbose afterAdd /home/wso2/.npm/eslint-config-react-app/1.0.5/package/package.json not in flight; writing +6992 verbose afterAdd /home/wso2/.npm/eslint-config-react-app/1.0.5/package/package.json written +6993 silly fetchNamedPackageData browserslist +6994 silly mapToRegistry name browserslist +6995 silly mapToRegistry using default registry +6996 silly mapToRegistry registry https://registry.npmjs.org/ +6997 silly mapToRegistry uri https://registry.npmjs.org/browserslist +6998 silly fetchNamedPackageData caniuse-lite +6999 silly mapToRegistry name caniuse-lite +7000 silly mapToRegistry using default registry +7001 silly mapToRegistry registry https://registry.npmjs.org/ +7002 silly mapToRegistry uri https://registry.npmjs.org/caniuse-lite +7003 silly fetchNamedPackageData normalize-range +7004 silly mapToRegistry name normalize-range +7005 silly mapToRegistry using default registry +7006 silly mapToRegistry registry https://registry.npmjs.org/ +7007 silly mapToRegistry uri https://registry.npmjs.org/normalize-range +7008 silly fetchNamedPackageData num2fraction +7009 silly mapToRegistry name num2fraction +7010 silly mapToRegistry using default registry +7011 silly mapToRegistry registry https://registry.npmjs.org/ +7012 silly mapToRegistry uri https://registry.npmjs.org/num2fraction +7013 silly fetchNamedPackageData postcss +7014 silly mapToRegistry name postcss +7015 silly mapToRegistry using default registry +7016 silly mapToRegistry registry https://registry.npmjs.org/ +7017 silly mapToRegistry uri https://registry.npmjs.org/postcss +7018 silly fetchNamedPackageData postcss-value-parser +7019 silly mapToRegistry name postcss-value-parser +7020 silly mapToRegistry using default registry +7021 silly mapToRegistry registry https://registry.npmjs.org/ +7022 silly mapToRegistry uri https://registry.npmjs.org/postcss-value-parser +7023 verbose request uri https://registry.npmjs.org/normalize-range +7024 verbose request no auth needed +7025 info attempt registry request try #1 at 3:04:03 PM +7026 verbose etag W/"5653ad61-268b" +7027 verbose lastModified Tue, 24 Nov 2015 00:20:49 GMT +7028 http request GET https://registry.npmjs.org/normalize-range +7029 verbose request uri https://registry.npmjs.org/num2fraction +7030 verbose request no auth needed +7031 info attempt registry request try #1 at 3:04:03 PM +7032 verbose etag W/"55f62cf1-273a" +7033 verbose lastModified Mon, 14 Sep 2015 02:12:01 GMT +7034 http request GET https://registry.npmjs.org/num2fraction +7035 verbose request uri https://registry.npmjs.org/browserslist +7036 verbose request no auth needed +7037 info attempt registry request try #1 at 3:04:03 PM +7038 verbose etag W/"59a2f8e9-17790" +7039 verbose lastModified Sun, 27 Aug 2017 16:52:57 GMT +7040 http request GET https://registry.npmjs.org/browserslist +7041 verbose request uri https://registry.npmjs.org/caniuse-lite +7042 verbose request no auth needed +7043 info attempt registry request try #1 at 3:04:03 PM +7044 verbose etag W/"59af72fe-24c64" +7045 verbose lastModified Wed, 06 Sep 2017 04:01:02 GMT +7046 http request GET https://registry.npmjs.org/caniuse-lite +7047 verbose request uri https://registry.npmjs.org/postcss +7048 verbose request no auth needed +7049 info attempt registry request try #1 at 3:04:03 PM +7050 verbose etag W/"59b08eb0-30c85" +7051 verbose lastModified Thu, 07 Sep 2017 00:11:28 GMT +7052 http request GET https://registry.npmjs.org/postcss +7053 verbose request uri https://registry.npmjs.org/postcss-value-parser +7054 verbose request no auth needed +7055 info attempt registry request try #1 at 3:04:03 PM +7056 verbose etag W/"56c6022b-adaf" +7057 verbose lastModified Thu, 18 Feb 2016 17:40:59 GMT +7058 http request GET https://registry.npmjs.org/postcss-value-parser +7059 http 304 https://registry.npmjs.org/normalize-range +7060 verbose headers { date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7060 verbose headers via: '1.1 varnish', +7060 verbose headers 'cache-control': 'max-age=300', +7060 verbose headers etag: 'W/"5653ad61-268b"', +7060 verbose headers age: '29', +7060 verbose headers connection: 'keep-alive', +7060 verbose headers 'x-served-by': 'cache-sin18025-SIN', +7060 verbose headers 'x-cache': 'HIT', +7060 verbose headers 'x-cache-hits': '1', +7060 verbose headers 'x-timer': 'S1506936844.746943,VS0,VE0', +7060 verbose headers vary: 'Accept-Encoding, Accept' } +7061 silly get cb [ 304, +7061 silly get { date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7061 silly get via: '1.1 varnish', +7061 silly get 'cache-control': 'max-age=300', +7061 silly get etag: 'W/"5653ad61-268b"', +7061 silly get age: '29', +7061 silly get connection: 'keep-alive', +7061 silly get 'x-served-by': 'cache-sin18025-SIN', +7061 silly get 'x-cache': 'HIT', +7061 silly get 'x-cache-hits': '1', +7061 silly get 'x-timer': 'S1506936844.746943,VS0,VE0', +7061 silly get vary: 'Accept-Encoding, Accept' } ] +7062 verbose etag https://registry.npmjs.org/normalize-range from cache +7063 verbose get saving normalize-range to /home/wso2/.npm/registry.npmjs.org/normalize-range/.cache.json +7064 silly resolveWithNewModule normalize-range@0.1.2 checking installable status +7065 silly cache add args [ 'normalize-range@^0.1.2', null ] +7066 verbose cache add spec normalize-range@^0.1.2 +7067 silly cache add parsed spec Result { +7067 silly cache add raw: 'normalize-range@^0.1.2', +7067 silly cache add scope: null, +7067 silly cache add name: 'normalize-range', +7067 silly cache add rawSpec: '^0.1.2', +7067 silly cache add spec: '>=0.1.2 <0.2.0', +7067 silly cache add type: 'range' } +7068 silly addNamed normalize-range@>=0.1.2 <0.2.0 +7069 verbose addNamed ">=0.1.2 <0.2.0" is a valid semver range for normalize-range +7070 silly addNameRange { name: 'normalize-range', +7070 silly addNameRange range: '>=0.1.2 <0.2.0', +7070 silly addNameRange hasData: false } +7071 silly mapToRegistry name normalize-range +7072 silly mapToRegistry using default registry +7073 silly mapToRegistry registry https://registry.npmjs.org/ +7074 silly mapToRegistry uri https://registry.npmjs.org/normalize-range +7075 verbose addNameRange registry:https://registry.npmjs.org/normalize-range not in flight; fetching +7076 verbose get https://registry.npmjs.org/normalize-range not expired, no request +7077 silly addNameRange number 2 { name: 'normalize-range', +7077 silly addNameRange range: '>=0.1.2 <0.2.0', +7077 silly addNameRange hasData: true } +7078 silly addNameRange versions [ 'normalize-range', [ '0.1.0', '0.1.1', '0.1.2' ] ] +7079 silly addNamed normalize-range@0.1.2 +7080 verbose addNamed "0.1.2" is a plain semver version for normalize-range +7081 silly cache afterAdd normalize-range@0.1.2 +7082 verbose afterAdd /home/wso2/.npm/normalize-range/0.1.2/package/package.json not in flight; writing +7083 verbose afterAdd /home/wso2/.npm/normalize-range/0.1.2/package/package.json written +7084 http 304 https://registry.npmjs.org/num2fraction +7085 verbose headers { date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7085 verbose headers via: '1.1 varnish', +7085 verbose headers 'cache-control': 'max-age=300', +7085 verbose headers etag: 'W/"55f62cf1-273a"', +7085 verbose headers age: '30', +7085 verbose headers connection: 'keep-alive', +7085 verbose headers 'x-served-by': 'cache-sin18033-SIN', +7085 verbose headers 'x-cache': 'HIT', +7085 verbose headers 'x-cache-hits': '1', +7085 verbose headers 'x-timer': 'S1506936844.772065,VS0,VE0', +7085 verbose headers vary: 'Accept-Encoding, Accept' } +7086 silly get cb [ 304, +7086 silly get { date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7086 silly get via: '1.1 varnish', +7086 silly get 'cache-control': 'max-age=300', +7086 silly get etag: 'W/"55f62cf1-273a"', +7086 silly get age: '30', +7086 silly get connection: 'keep-alive', +7086 silly get 'x-served-by': 'cache-sin18033-SIN', +7086 silly get 'x-cache': 'HIT', +7086 silly get 'x-cache-hits': '1', +7086 silly get 'x-timer': 'S1506936844.772065,VS0,VE0', +7086 silly get vary: 'Accept-Encoding, Accept' } ] +7087 verbose etag https://registry.npmjs.org/num2fraction from cache +7088 verbose get saving num2fraction to /home/wso2/.npm/registry.npmjs.org/num2fraction/.cache.json +7089 silly resolveWithNewModule num2fraction@1.2.2 checking installable status +7090 silly cache add args [ 'num2fraction@^1.2.2', null ] +7091 verbose cache add spec num2fraction@^1.2.2 +7092 silly cache add parsed spec Result { +7092 silly cache add raw: 'num2fraction@^1.2.2', +7092 silly cache add scope: null, +7092 silly cache add name: 'num2fraction', +7092 silly cache add rawSpec: '^1.2.2', +7092 silly cache add spec: '>=1.2.2 <2.0.0', +7092 silly cache add type: 'range' } +7093 silly addNamed num2fraction@>=1.2.2 <2.0.0 +7094 verbose addNamed ">=1.2.2 <2.0.0" is a valid semver range for num2fraction +7095 silly addNameRange { name: 'num2fraction', range: '>=1.2.2 <2.0.0', hasData: false } +7096 silly mapToRegistry name num2fraction +7097 silly mapToRegistry using default registry +7098 silly mapToRegistry registry https://registry.npmjs.org/ +7099 silly mapToRegistry uri https://registry.npmjs.org/num2fraction +7100 verbose addNameRange registry:https://registry.npmjs.org/num2fraction not in flight; fetching +7101 verbose get https://registry.npmjs.org/num2fraction not expired, no request +7102 silly addNameRange number 2 { name: 'num2fraction', range: '>=1.2.2 <2.0.0', hasData: true } +7103 silly addNameRange versions [ 'num2fraction', +7103 silly addNameRange [ '1.0.0', '1.0.1', '1.1.0', '1.2.0', '1.2.1', '1.2.2' ] ] +7104 silly addNamed num2fraction@1.2.2 +7105 verbose addNamed "1.2.2" is a plain semver version for num2fraction +7106 silly cache afterAdd num2fraction@1.2.2 +7107 verbose afterAdd /home/wso2/.npm/num2fraction/1.2.2/package/package.json not in flight; writing +7108 http 200 https://registry.npmjs.org/caniuse-lite +7109 verbose headers { server: 'nginx/1.10.3', +7109 verbose headers 'content-type': 'application/json', +7109 verbose headers 'last-modified': 'Fri, 29 Sep 2017 05:01:02 GMT', +7109 verbose headers etag: 'W/"59cdd38e-2b04a"', +7109 verbose headers 'content-encoding': 'gzip', +7109 verbose headers 'cache-control': 'max-age=300', +7109 verbose headers 'content-length': '12825', +7109 verbose headers 'accept-ranges': 'bytes', +7109 verbose headers date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7109 verbose headers via: '1.1 varnish', +7109 verbose headers age: '92', +7109 verbose headers connection: 'keep-alive', +7109 verbose headers 'x-served-by': 'cache-sin18025-SIN', +7109 verbose headers 'x-cache': 'HIT', +7109 verbose headers 'x-cache-hits': '5', +7109 verbose headers 'x-timer': 'S1506936844.769633,VS0,VE0', +7109 verbose headers vary: 'Accept-Encoding, Accept' } +7110 silly get cb [ 200, +7110 silly get { server: 'nginx/1.10.3', +7110 silly get 'content-type': 'application/json', +7110 silly get 'last-modified': 'Fri, 29 Sep 2017 05:01:02 GMT', +7110 silly get etag: 'W/"59cdd38e-2b04a"', +7110 silly get 'content-encoding': 'gzip', +7110 silly get 'cache-control': 'max-age=300', +7110 silly get 'content-length': '12825', +7110 silly get 'accept-ranges': 'bytes', +7110 silly get date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7110 silly get via: '1.1 varnish', +7110 silly get age: '92', +7110 silly get connection: 'keep-alive', +7110 silly get 'x-served-by': 'cache-sin18025-SIN', +7110 silly get 'x-cache': 'HIT', +7110 silly get 'x-cache-hits': '5', +7110 silly get 'x-timer': 'S1506936844.769633,VS0,VE0', +7110 silly get vary: 'Accept-Encoding, Accept' } ] +7111 verbose get saving caniuse-lite to /home/wso2/.npm/registry.npmjs.org/caniuse-lite/.cache.json +7112 verbose afterAdd /home/wso2/.npm/num2fraction/1.2.2/package/package.json written +7113 silly resolveWithNewModule caniuse-lite@1.0.30000740 checking installable status +7114 silly cache add args [ 'caniuse-lite@^1.0.30000670', null ] +7115 verbose cache add spec caniuse-lite@^1.0.30000670 +7116 silly cache add parsed spec Result { +7116 silly cache add raw: 'caniuse-lite@^1.0.30000670', +7116 silly cache add scope: null, +7116 silly cache add name: 'caniuse-lite', +7116 silly cache add rawSpec: '^1.0.30000670', +7116 silly cache add spec: '>=1.0.30000670 <2.0.0', +7116 silly cache add type: 'range' } +7117 silly addNamed caniuse-lite@>=1.0.30000670 <2.0.0 +7118 verbose addNamed ">=1.0.30000670 <2.0.0" is a valid semver range for caniuse-lite +7119 silly addNameRange { name: 'caniuse-lite', +7119 silly addNameRange range: '>=1.0.30000670 <2.0.0', +7119 silly addNameRange hasData: false } +7120 silly mapToRegistry name caniuse-lite +7121 silly mapToRegistry using default registry +7122 silly mapToRegistry registry https://registry.npmjs.org/ +7123 silly mapToRegistry uri https://registry.npmjs.org/caniuse-lite +7124 verbose addNameRange registry:https://registry.npmjs.org/caniuse-lite not in flight; fetching +7125 verbose get https://registry.npmjs.org/caniuse-lite not expired, no request +7126 silly addNameRange number 2 { name: 'caniuse-lite', +7126 silly addNameRange range: '>=1.0.30000670 <2.0.0', +7126 silly addNameRange hasData: true } +7127 silly addNameRange versions [ 'caniuse-lite', +7127 silly addNameRange [ '0.1.0', +7127 silly addNameRange '0.2.0', +7127 silly addNameRange '0.3.0', +7127 silly addNameRange '1.0.30000655', +7127 silly addNameRange '1.0.30000656', +7127 silly addNameRange '1.0.30000657', +7127 silly addNameRange '1.0.30000659', +7127 silly addNameRange '1.0.30000660', +7127 silly addNameRange '1.0.30000661', +7127 silly addNameRange '1.0.30000662', +7127 silly addNameRange '1.0.30000663', +7127 silly addNameRange '1.0.30000664', +7127 silly addNameRange '1.0.30000665', +7127 silly addNameRange '1.0.30000666', +7127 silly addNameRange '1.0.30000667', +7127 silly addNameRange '1.0.30000668', +7127 silly addNameRange '1.0.30000669', +7127 silly addNameRange '1.0.30000670', +7127 silly addNameRange '1.0.30000671', +7127 silly addNameRange '1.0.30000672', +7127 silly addNameRange '1.0.30000673', +7127 silly addNameRange '1.0.30000674', +7127 silly addNameRange '1.0.30000676', +7127 silly addNameRange '1.0.30000677', +7127 silly addNameRange '1.0.30000679', +7127 silly addNameRange '1.0.30000680', +7127 silly addNameRange '1.0.30000683', +7127 silly addNameRange '1.0.30000684', +7127 silly addNameRange '1.0.30000686', +7127 silly addNameRange '1.0.30000687', +7127 silly addNameRange '1.0.30000688', +7127 silly addNameRange '1.0.30000689', +7127 silly addNameRange '1.0.30000690', +7127 silly addNameRange '1.0.30000692', +7127 silly addNameRange '1.0.30000693', +7127 silly addNameRange '1.0.30000694', +7127 silly addNameRange '1.0.30000695', +7127 silly addNameRange '1.0.30000696', +7127 silly addNameRange '1.0.30000697', +7127 silly addNameRange '1.0.30000698', +7127 silly addNameRange '1.0.30000699', +7127 silly addNameRange '1.0.30000700', +7127 silly addNameRange '1.0.30000701', +7127 silly addNameRange '1.0.30000702', +7127 silly addNameRange '1.0.30000703', +7127 silly addNameRange '1.0.30000704', +7127 silly addNameRange '1.0.30000706', +7127 silly addNameRange '1.0.30000708', +7127 silly addNameRange '1.0.30000709', +7127 silly addNameRange '1.0.30000710', +7127 silly addNameRange '1.0.30000711', +7127 silly addNameRange '1.0.30000712', +7127 silly addNameRange '1.0.30000713', +7127 silly addNameRange '1.0.30000714', +7127 silly addNameRange '1.0.30000715', +7127 silly addNameRange '1.0.30000716', +7127 silly addNameRange '1.0.30000717', +7127 silly addNameRange '1.0.30000718', +7127 silly addNameRange '1.0.30000720', +7127 silly addNameRange '1.0.30000721', +7127 silly addNameRange '1.0.30000722', +7127 silly addNameRange '1.0.30000723', +7127 silly addNameRange '1.0.30000724', +7127 silly addNameRange '1.0.30000725', +7127 silly addNameRange '1.0.30000726', +7127 silly addNameRange '1.0.30000727', +7127 silly addNameRange '1.0.30000730', +7127 silly addNameRange '1.0.30000731', +7127 silly addNameRange '1.0.30000732', +7127 silly addNameRange '1.0.30000733', +7127 silly addNameRange '1.0.30000734', +7127 silly addNameRange '1.0.30000735', +7127 silly addNameRange '1.0.30000736', +7127 silly addNameRange '1.0.30000737', +7127 silly addNameRange '1.0.30000738', +7127 silly addNameRange '1.0.30000739', +7127 silly addNameRange '1.0.30000740' ] ] +7128 silly addNamed caniuse-lite@1.0.30000740 +7129 verbose addNamed "1.0.30000740" is a plain semver version for caniuse-lite +7130 silly mapToRegistry name caniuse-lite +7131 silly mapToRegistry using default registry +7132 silly mapToRegistry registry https://registry.npmjs.org/ +7133 silly mapToRegistry uri https://registry.npmjs.org/caniuse-lite +7134 verbose addRemoteTarball https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000740.tgz not in flight; adding +7135 verbose addRemoteTarball [ 'https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000740.tgz', +7135 verbose addRemoteTarball 'f2c4c04d6564eb812e61006841700ad557f6f973' ] +7136 info retry fetch attempt 1 at 3:04:03 PM +7137 info attempt registry request try #1 at 3:04:03 PM +7138 http fetch GET https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000740.tgz +7139 http 200 https://registry.npmjs.org/browserslist +7140 verbose headers { server: 'nginx/1.10.3', +7140 verbose headers 'content-type': 'application/json', +7140 verbose headers 'last-modified': 'Thu, 28 Sep 2017 21:20:50 GMT', +7140 verbose headers etag: 'W/"59cd67b2-177c9"', +7140 verbose headers 'content-encoding': 'gzip', +7140 verbose headers 'cache-control': 'max-age=300', +7140 verbose headers 'content-length': '13685', +7140 verbose headers 'accept-ranges': 'bytes', +7140 verbose headers date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7140 verbose headers via: '1.1 varnish', +7140 verbose headers age: '129', +7140 verbose headers connection: 'keep-alive', +7140 verbose headers 'x-served-by': 'cache-sin18022-SIN', +7140 verbose headers 'x-cache': 'HIT', +7140 verbose headers 'x-cache-hits': '2', +7140 verbose headers 'x-timer': 'S1506936844.763997,VS0,VE0', +7140 verbose headers vary: 'Accept-Encoding, Accept' } +7141 silly get cb [ 200, +7141 silly get { server: 'nginx/1.10.3', +7141 silly get 'content-type': 'application/json', +7141 silly get 'last-modified': 'Thu, 28 Sep 2017 21:20:50 GMT', +7141 silly get etag: 'W/"59cd67b2-177c9"', +7141 silly get 'content-encoding': 'gzip', +7141 silly get 'cache-control': 'max-age=300', +7141 silly get 'content-length': '13685', +7141 silly get 'accept-ranges': 'bytes', +7141 silly get date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7141 silly get via: '1.1 varnish', +7141 silly get age: '129', +7141 silly get connection: 'keep-alive', +7141 silly get 'x-served-by': 'cache-sin18022-SIN', +7141 silly get 'x-cache': 'HIT', +7141 silly get 'x-cache-hits': '2', +7141 silly get 'x-timer': 'S1506936844.763997,VS0,VE0', +7141 silly get vary: 'Accept-Encoding, Accept' } ] +7142 verbose get saving browserslist to /home/wso2/.npm/registry.npmjs.org/browserslist/.cache.json +7143 silly resolveWithNewModule browserslist@2.4.0 checking installable status +7144 silly cache add args [ 'browserslist@^2.1.3', null ] +7145 verbose cache add spec browserslist@^2.1.3 +7146 silly cache add parsed spec Result { +7146 silly cache add raw: 'browserslist@^2.1.3', +7146 silly cache add scope: null, +7146 silly cache add name: 'browserslist', +7146 silly cache add rawSpec: '^2.1.3', +7146 silly cache add spec: '>=2.1.3 <3.0.0', +7146 silly cache add type: 'range' } +7147 silly addNamed browserslist@>=2.1.3 <3.0.0 +7148 verbose addNamed ">=2.1.3 <3.0.0" is a valid semver range for browserslist +7149 silly addNameRange { name: 'browserslist', range: '>=2.1.3 <3.0.0', hasData: false } +7150 silly mapToRegistry name browserslist +7151 silly mapToRegistry using default registry +7152 silly mapToRegistry registry https://registry.npmjs.org/ +7153 silly mapToRegistry uri https://registry.npmjs.org/browserslist +7154 verbose addNameRange registry:https://registry.npmjs.org/browserslist not in flight; fetching +7155 verbose get https://registry.npmjs.org/browserslist not expired, no request +7156 silly addNameRange number 2 { name: 'browserslist', range: '>=2.1.3 <3.0.0', hasData: true } +7157 silly addNameRange versions [ 'browserslist', +7157 silly addNameRange [ '0.1.0', +7157 silly addNameRange '0.1.1', +7157 silly addNameRange '0.1.2', +7157 silly addNameRange '0.1.3', +7157 silly addNameRange '0.2.0', +7157 silly addNameRange '0.3.0', +7157 silly addNameRange '0.3.1', +7157 silly addNameRange '0.3.2', +7157 silly addNameRange '0.3.3', +7157 silly addNameRange '0.4.0', +7157 silly addNameRange '0.5.0', +7157 silly addNameRange '1.0.0', +7157 silly addNameRange '1.0.1', +7157 silly addNameRange '1.1.0', +7157 silly addNameRange '1.1.1', +7157 silly addNameRange '1.1.2', +7157 silly addNameRange '1.1.3', +7157 silly addNameRange '1.2.0', +7157 silly addNameRange '1.3.0', +7157 silly addNameRange '1.3.1', +7157 silly addNameRange '1.3.2', +7157 silly addNameRange '1.3.3', +7157 silly addNameRange '1.3.4', +7157 silly addNameRange '1.3.5', +7157 silly addNameRange '1.3.6', +7157 silly addNameRange '1.4.0', +7157 silly addNameRange '1.5.0', +7157 silly addNameRange '1.5.1', +7157 silly addNameRange '1.5.2', +7157 silly addNameRange '1.6.0', +7157 silly addNameRange '1.7.0', +7157 silly addNameRange '1.7.1', +7157 silly addNameRange '1.7.2', +7157 silly addNameRange '1.7.3', +7157 silly addNameRange '1.7.4', +7157 silly addNameRange '1.7.5', +7157 silly addNameRange '1.7.6', +7157 silly addNameRange '1.7.7', +7157 silly addNameRange '2.0.0', +7157 silly addNameRange '2.1.0', +7157 silly addNameRange '2.1.1', +7157 silly addNameRange '2.1.2', +7157 silly addNameRange '2.1.3', +7157 silly addNameRange '2.1.4', +7157 silly addNameRange '2.1.5', +7157 silly addNameRange '2.2.0', +7157 silly addNameRange '2.2.1', +7157 silly addNameRange '2.2.2', +7157 silly addNameRange '2.3.0', +7157 silly addNameRange '2.3.1', +7157 silly addNameRange '2.3.2', +7157 silly addNameRange '2.3.3', +7157 silly addNameRange '2.4.0' ] ] +7158 silly addNamed browserslist@2.4.0 +7159 verbose addNamed "2.4.0" is a plain semver version for browserslist +7160 silly cache afterAdd browserslist@2.4.0 +7161 verbose afterAdd /home/wso2/.npm/browserslist/2.4.0/package/package.json not in flight; writing +7162 verbose afterAdd /home/wso2/.npm/browserslist/2.4.0/package/package.json written +7163 http 304 https://registry.npmjs.org/postcss-value-parser +7164 verbose headers { date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7164 verbose headers via: '1.1 varnish', +7164 verbose headers 'cache-control': 'max-age=300', +7164 verbose headers etag: 'W/"56c6022b-adaf"', +7164 verbose headers age: '73', +7164 verbose headers connection: 'keep-alive', +7164 verbose headers 'x-served-by': 'cache-sin18021-SIN', +7164 verbose headers 'x-cache': 'HIT', +7164 verbose headers 'x-cache-hits': '2', +7164 verbose headers 'x-timer': 'S1506936844.966087,VS0,VE0', +7164 verbose headers vary: 'Accept-Encoding, Accept' } +7165 silly get cb [ 304, +7165 silly get { date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7165 silly get via: '1.1 varnish', +7165 silly get 'cache-control': 'max-age=300', +7165 silly get etag: 'W/"56c6022b-adaf"', +7165 silly get age: '73', +7165 silly get connection: 'keep-alive', +7165 silly get 'x-served-by': 'cache-sin18021-SIN', +7165 silly get 'x-cache': 'HIT', +7165 silly get 'x-cache-hits': '2', +7165 silly get 'x-timer': 'S1506936844.966087,VS0,VE0', +7165 silly get vary: 'Accept-Encoding, Accept' } ] +7166 verbose etag https://registry.npmjs.org/postcss-value-parser from cache +7167 verbose get saving postcss-value-parser to /home/wso2/.npm/registry.npmjs.org/postcss-value-parser/.cache.json +7168 silly resolveWithNewModule postcss-value-parser@3.3.0 checking installable status +7169 silly cache add args [ 'postcss-value-parser@^3.2.3', null ] +7170 verbose cache add spec postcss-value-parser@^3.2.3 +7171 silly cache add parsed spec Result { +7171 silly cache add raw: 'postcss-value-parser@^3.2.3', +7171 silly cache add scope: null, +7171 silly cache add name: 'postcss-value-parser', +7171 silly cache add rawSpec: '^3.2.3', +7171 silly cache add spec: '>=3.2.3 <4.0.0', +7171 silly cache add type: 'range' } +7172 silly addNamed postcss-value-parser@>=3.2.3 <4.0.0 +7173 verbose addNamed ">=3.2.3 <4.0.0" is a valid semver range for postcss-value-parser +7174 silly addNameRange { name: 'postcss-value-parser', +7174 silly addNameRange range: '>=3.2.3 <4.0.0', +7174 silly addNameRange hasData: false } +7175 silly mapToRegistry name postcss-value-parser +7176 silly mapToRegistry using default registry +7177 silly mapToRegistry registry https://registry.npmjs.org/ +7178 silly mapToRegistry uri https://registry.npmjs.org/postcss-value-parser +7179 verbose addNameRange registry:https://registry.npmjs.org/postcss-value-parser not in flight; fetching +7180 verbose get https://registry.npmjs.org/postcss-value-parser not expired, no request +7181 silly addNameRange number 2 { name: 'postcss-value-parser', +7181 silly addNameRange range: '>=3.2.3 <4.0.0', +7181 silly addNameRange hasData: true } +7182 silly addNameRange versions [ 'postcss-value-parser', +7182 silly addNameRange [ '1.0.0', +7182 silly addNameRange '1.0.1', +7182 silly addNameRange '1.0.2', +7182 silly addNameRange '1.1.0', +7182 silly addNameRange '1.2.0', +7182 silly addNameRange '1.2.1', +7182 silly addNameRange '1.2.2', +7182 silly addNameRange '1.3.0', +7182 silly addNameRange '1.4.0', +7182 silly addNameRange '1.4.1', +7182 silly addNameRange '1.4.2', +7182 silly addNameRange '2.0.0', +7182 silly addNameRange '2.0.1', +7182 silly addNameRange '2.0.2', +7182 silly addNameRange '2.0.3', +7182 silly addNameRange '2.0.4', +7182 silly addNameRange '2.0.5', +7182 silly addNameRange '3.0.0', +7182 silly addNameRange '3.0.1', +7182 silly addNameRange '3.0.2', +7182 silly addNameRange '3.0.3', +7182 silly addNameRange '3.1.0', +7182 silly addNameRange '3.1.1', +7182 silly addNameRange '3.1.2', +7182 silly addNameRange '3.1.3', +7182 silly addNameRange '3.2.0', +7182 silly addNameRange '3.2.1', +7182 silly addNameRange '3.2.3', +7182 silly addNameRange '3.3.0' ] ] +7183 silly addNamed postcss-value-parser@3.3.0 +7184 verbose addNamed "3.3.0" is a plain semver version for postcss-value-parser +7185 silly cache afterAdd postcss-value-parser@3.3.0 +7186 verbose afterAdd /home/wso2/.npm/postcss-value-parser/3.3.0/package/package.json not in flight; writing +7187 verbose afterAdd /home/wso2/.npm/postcss-value-parser/3.3.0/package/package.json written +7188 http fetch 200 https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000740.tgz +7189 http 200 https://registry.npmjs.org/postcss +7190 verbose headers { server: 'nginx/1.10.3', +7190 verbose headers 'content-type': 'application/json', +7190 verbose headers 'last-modified': 'Thu, 28 Sep 2017 12:45:48 GMT', +7190 verbose headers etag: 'W/"59cceefc-316c3"', +7190 verbose headers 'content-encoding': 'gzip', +7190 verbose headers 'cache-control': 'max-age=300', +7190 verbose headers 'content-length': '21180', +7190 verbose headers 'accept-ranges': 'bytes', +7190 verbose headers date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7190 verbose headers via: '1.1 varnish', +7190 verbose headers age: '4', +7190 verbose headers connection: 'keep-alive', +7190 verbose headers 'x-served-by': 'cache-sin18033-SIN', +7190 verbose headers 'x-cache': 'HIT', +7190 verbose headers 'x-cache-hits': '1', +7190 verbose headers 'x-timer': 'S1506936844.981765,VS0,VE0', +7190 verbose headers vary: 'Accept-Encoding, Accept' } +7191 silly get cb [ 200, +7191 silly get { server: 'nginx/1.10.3', +7191 silly get 'content-type': 'application/json', +7191 silly get 'last-modified': 'Thu, 28 Sep 2017 12:45:48 GMT', +7191 silly get etag: 'W/"59cceefc-316c3"', +7191 silly get 'content-encoding': 'gzip', +7191 silly get 'cache-control': 'max-age=300', +7191 silly get 'content-length': '21180', +7191 silly get 'accept-ranges': 'bytes', +7191 silly get date: 'Mon, 02 Oct 2017 09:34:03 GMT', +7191 silly get via: '1.1 varnish', +7191 silly get age: '4', +7191 silly get connection: 'keep-alive', +7191 silly get 'x-served-by': 'cache-sin18033-SIN', +7191 silly get 'x-cache': 'HIT', +7191 silly get 'x-cache-hits': '1', +7191 silly get 'x-timer': 'S1506936844.981765,VS0,VE0', +7191 silly get vary: 'Accept-Encoding, Accept' } ] +7192 verbose get saving postcss to /home/wso2/.npm/registry.npmjs.org/postcss/.cache.json +7193 silly resolveWithNewModule postcss@6.0.12 checking installable status +7194 silly cache add args [ 'postcss@^6.0.1', null ] +7195 verbose cache add spec postcss@^6.0.1 +7196 silly cache add parsed spec Result { +7196 silly cache add raw: 'postcss@^6.0.1', +7196 silly cache add scope: null, +7196 silly cache add name: 'postcss', +7196 silly cache add rawSpec: '^6.0.1', +7196 silly cache add spec: '>=6.0.1 <7.0.0', +7196 silly cache add type: 'range' } +7197 silly addNamed postcss@>=6.0.1 <7.0.0 +7198 verbose addNamed ">=6.0.1 <7.0.0" is a valid semver range for postcss +7199 silly addNameRange { name: 'postcss', range: '>=6.0.1 <7.0.0', hasData: false } +7200 silly mapToRegistry name postcss +7201 silly mapToRegistry using default registry +7202 silly mapToRegistry registry https://registry.npmjs.org/ +7203 silly mapToRegistry uri https://registry.npmjs.org/postcss +7204 verbose addNameRange registry:https://registry.npmjs.org/postcss not in flight; fetching +7205 verbose get https://registry.npmjs.org/postcss not expired, no request +7206 silly addNameRange number 2 { name: 'postcss', range: '>=6.0.1 <7.0.0', hasData: true } +7207 silly addNameRange versions [ 'postcss', +7207 silly addNameRange [ '0.1.0', +7207 silly addNameRange '0.2.0', +7207 silly addNameRange '0.3.0', +7207 silly addNameRange '0.3.1', +7207 silly addNameRange '0.3.2', +7207 silly addNameRange '0.3.3', +7207 silly addNameRange '0.3.4', +7207 silly addNameRange '0.3.5', +7207 silly addNameRange '1.0.0', +7207 silly addNameRange '2.0.0', +7207 silly addNameRange '2.1.0', +7207 silly addNameRange '2.1.1', +7207 silly addNameRange '2.1.2', +7207 silly addNameRange '2.2.0', +7207 silly addNameRange '2.2.1', +7207 silly addNameRange '2.2.2', +7207 silly addNameRange '2.2.3', +7207 silly addNameRange '2.2.4', +7207 silly addNameRange '2.2.5', +7207 silly addNameRange '2.2.6', +7207 silly addNameRange '3.0.0', +7207 silly addNameRange '3.0.1', +7207 silly addNameRange '3.0.2', +7207 silly addNameRange '3.0.3', +7207 silly addNameRange '3.0.4', +7207 silly addNameRange '3.0.5', +7207 silly addNameRange '3.0.6', +7207 silly addNameRange '3.0.7', +7207 silly addNameRange '4.0.0', +7207 silly addNameRange '4.0.1', +7207 silly addNameRange '4.0.2', +7207 silly addNameRange '4.0.3', +7207 silly addNameRange '4.0.4', +7207 silly addNameRange '4.0.5', +7207 silly addNameRange '4.0.6', +7207 silly addNameRange '4.1.0', +7207 silly addNameRange '4.1.1', +7207 silly addNameRange '4.1.2', +7207 silly addNameRange '4.1.3', +7207 silly addNameRange '4.1.4', +7207 silly addNameRange '4.1.5', +7207 silly addNameRange '4.1.6', +7207 silly addNameRange '4.1.7', +7207 silly addNameRange '4.1.8', +7207 silly addNameRange '4.1.9', +7207 silly addNameRange '4.1.10', +7207 silly addNameRange '4.1.11', +7207 silly addNameRange '4.1.12', +7207 silly addNameRange '4.1.13', +7207 silly addNameRange '4.1.14', +7207 silly addNameRange '4.1.15', +7207 silly addNameRange '4.1.16', +7207 silly addNameRange '5.0.0', +7207 silly addNameRange '5.0.1', +7207 silly addNameRange '5.0.2', +7207 silly addNameRange '5.0.3', +7207 silly addNameRange '5.0.4', +7207 silly addNameRange '5.0.5', +7207 silly addNameRange '5.0.6', +7207 silly addNameRange '5.0.7', +7207 silly addNameRange '5.0.8', +7207 silly addNameRange '5.0.9', +7207 silly addNameRange '5.0.10', +7207 silly addNameRange '5.0.11', +7207 silly addNameRange '5.0.12', +7207 silly addNameRange '5.0.13', +7207 silly addNameRange '5.0.14', +7207 silly addNameRange '5.0.15', +7207 silly addNameRange '5.0.16', +7207 silly addNameRange '5.0.17', +7207 silly addNameRange '5.0.18', +7207 silly addNameRange '5.0.19', +7207 silly addNameRange '5.0.20', +7207 silly addNameRange '5.0.21', +7207 silly addNameRange '5.1.0', +7207 silly addNameRange '5.1.1', +7207 silly addNameRange '5.1.2', +7207 silly addNameRange '5.2.0', +7207 silly addNameRange '5.2.1', +7207 silly addNameRange '5.2.2', +7207 silly addNameRange '5.2.3', +7207 silly addNameRange '5.2.4', +7207 silly addNameRange '5.2.5', +7207 silly addNameRange '5.2.6', +7207 silly addNameRange '5.2.7', +7207 silly addNameRange '5.2.8', +7207 silly addNameRange '5.2.9', +7207 silly addNameRange '5.2.10', +7207 silly addNameRange '5.2.11', +7207 silly addNameRange '5.2.12', +7207 silly addNameRange '5.2.13', +7207 silly addNameRange '5.2.14', +7207 silly addNameRange '5.2.15', +7207 silly addNameRange '5.2.16', +7207 silly addNameRange '5.2.17', +7207 silly addNameRange '6.0.0', +7207 silly addNameRange '6.0.1', +7207 silly addNameRange '6.0.2', +7207 silly addNameRange '6.0.3', +7207 silly addNameRange '6.0.4', +7207 silly addNameRange '6.0.5', +7207 silly addNameRange '6.0.6', +7207 silly addNameRange '6.0.7', +7207 silly addNameRange '6.0.8', +7207 silly addNameRange '6.0.9', +7207 silly addNameRange '6.0.10', +7207 silly addNameRange '6.0.11', +7207 silly addNameRange '6.0.12' ] ] +7208 silly addNamed postcss@6.0.12 +7209 verbose addNamed "6.0.12" is a plain semver version for postcss +7210 silly mapToRegistry name postcss +7211 silly mapToRegistry using default registry +7212 silly mapToRegistry registry https://registry.npmjs.org/ +7213 silly mapToRegistry uri https://registry.npmjs.org/postcss +7214 verbose addRemoteTarball https://registry.npmjs.org/postcss/-/postcss-6.0.12.tgz not in flight; adding +7215 verbose addRemoteTarball [ 'https://registry.npmjs.org/postcss/-/postcss-6.0.12.tgz', +7215 verbose addRemoteTarball '6b0155089d2d212f7bd6a0cecd4c58c007403535' ] +7216 info retry fetch attempt 1 at 3:04:04 PM +7217 info attempt registry request try #1 at 3:04:04 PM +7218 http fetch GET https://registry.npmjs.org/postcss/-/postcss-6.0.12.tgz +7219 silly fetchAndShaCheck shasum f2c4c04d6564eb812e61006841700ad557f6f973 +7220 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000740.tgz not in flight; adding +7221 verbose addTmpTarball already have metadata; skipping unpack for caniuse-lite@1.0.30000740 +7222 silly cache afterAdd caniuse-lite@1.0.30000740 +7223 verbose afterAdd /home/wso2/.npm/caniuse-lite/1.0.30000740/package/package.json not in flight; writing +7224 verbose afterAdd /home/wso2/.npm/caniuse-lite/1.0.30000740/package/package.json written +7225 http fetch 200 https://registry.npmjs.org/postcss/-/postcss-6.0.12.tgz +7226 silly fetchAndShaCheck shasum 6b0155089d2d212f7bd6a0cecd4c58c007403535 +7227 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/postcss/-/postcss-6.0.12.tgz not in flight; adding +7228 verbose addTmpTarball already have metadata; skipping unpack for postcss@6.0.12 +7229 silly cache afterAdd postcss@6.0.12 +7230 verbose afterAdd /home/wso2/.npm/postcss/6.0.12/package/package.json not in flight; writing +7231 verbose afterAdd /home/wso2/.npm/postcss/6.0.12/package/package.json written +7232 silly fetchNamedPackageData electron-to-chromium +7233 silly mapToRegistry name electron-to-chromium +7234 silly mapToRegistry using default registry +7235 silly mapToRegistry registry https://registry.npmjs.org/ +7236 silly mapToRegistry uri https://registry.npmjs.org/electron-to-chromium +7237 verbose request uri https://registry.npmjs.org/electron-to-chromium +7238 verbose request no auth needed +7239 info attempt registry request try #1 at 3:04:04 PM +7240 verbose etag W/"59b0fd1b-c9d6" +7241 verbose lastModified Thu, 07 Sep 2017 08:02:35 GMT +7242 http request GET https://registry.npmjs.org/electron-to-chromium +7243 http 200 https://registry.npmjs.org/electron-to-chromium +7244 verbose headers { server: 'nginx/1.10.3', +7244 verbose headers 'content-type': 'application/json', +7244 verbose headers 'last-modified': 'Fri, 29 Sep 2017 08:02:24 GMT', +7244 verbose headers etag: 'W/"59cdfe10-da4a"', +7244 verbose headers 'content-encoding': 'gzip', +7244 verbose headers 'cache-control': 'max-age=300', +7244 verbose headers 'content-length': '6750', +7244 verbose headers 'accept-ranges': 'bytes', +7244 verbose headers date: 'Mon, 02 Oct 2017 09:34:04 GMT', +7244 verbose headers via: '1.1 varnish', +7244 verbose headers age: '112', +7244 verbose headers connection: 'keep-alive', +7244 verbose headers 'x-served-by': 'cache-sin18032-SIN', +7244 verbose headers 'x-cache': 'HIT', +7244 verbose headers 'x-cache-hits': '2', +7244 verbose headers 'x-timer': 'S1506936845.870322,VS0,VE0', +7244 verbose headers vary: 'Accept-Encoding, Accept' } +7245 silly get cb [ 200, +7245 silly get { server: 'nginx/1.10.3', +7245 silly get 'content-type': 'application/json', +7245 silly get 'last-modified': 'Fri, 29 Sep 2017 08:02:24 GMT', +7245 silly get etag: 'W/"59cdfe10-da4a"', +7245 silly get 'content-encoding': 'gzip', +7245 silly get 'cache-control': 'max-age=300', +7245 silly get 'content-length': '6750', +7245 silly get 'accept-ranges': 'bytes', +7245 silly get date: 'Mon, 02 Oct 2017 09:34:04 GMT', +7245 silly get via: '1.1 varnish', +7245 silly get age: '112', +7245 silly get connection: 'keep-alive', +7245 silly get 'x-served-by': 'cache-sin18032-SIN', +7245 silly get 'x-cache': 'HIT', +7245 silly get 'x-cache-hits': '2', +7245 silly get 'x-timer': 'S1506936845.870322,VS0,VE0', +7245 silly get vary: 'Accept-Encoding, Accept' } ] +7246 verbose get saving electron-to-chromium to /home/wso2/.npm/registry.npmjs.org/electron-to-chromium/.cache.json +7247 silly resolveWithNewModule electron-to-chromium@1.3.24 checking installable status +7248 silly cache add args [ 'electron-to-chromium@^1.3.18', null ] +7249 verbose cache add spec electron-to-chromium@^1.3.18 +7250 silly cache add parsed spec Result { +7250 silly cache add raw: 'electron-to-chromium@^1.3.18', +7250 silly cache add scope: null, +7250 silly cache add name: 'electron-to-chromium', +7250 silly cache add rawSpec: '^1.3.18', +7250 silly cache add spec: '>=1.3.18 <2.0.0', +7250 silly cache add type: 'range' } +7251 silly addNamed electron-to-chromium@>=1.3.18 <2.0.0 +7252 verbose addNamed ">=1.3.18 <2.0.0" is a valid semver range for electron-to-chromium +7253 silly addNameRange { name: 'electron-to-chromium', +7253 silly addNameRange range: '>=1.3.18 <2.0.0', +7253 silly addNameRange hasData: false } +7254 silly mapToRegistry name electron-to-chromium +7255 silly mapToRegistry using default registry +7256 silly mapToRegistry registry https://registry.npmjs.org/ +7257 silly mapToRegistry uri https://registry.npmjs.org/electron-to-chromium +7258 verbose addNameRange registry:https://registry.npmjs.org/electron-to-chromium not in flight; fetching +7259 verbose get https://registry.npmjs.org/electron-to-chromium not expired, no request +7260 silly addNameRange number 2 { name: 'electron-to-chromium', +7260 silly addNameRange range: '>=1.3.18 <2.0.0', +7260 silly addNameRange hasData: true } +7261 silly addNameRange versions [ 'electron-to-chromium', +7261 silly addNameRange [ '1.0.0', +7261 silly addNameRange '1.0.1', +7261 silly addNameRange '1.1.0', +7261 silly addNameRange '1.1.1', +7261 silly addNameRange '1.2.0', +7261 silly addNameRange '1.2.1', +7261 silly addNameRange '1.2.2', +7261 silly addNameRange '1.2.3', +7261 silly addNameRange '1.2.4', +7261 silly addNameRange '1.2.5', +7261 silly addNameRange '1.2.6', +7261 silly addNameRange '1.2.7', +7261 silly addNameRange '1.2.8', +7261 silly addNameRange '1.3.0', +7261 silly addNameRange '1.3.1', +7261 silly addNameRange '1.3.2', +7261 silly addNameRange '1.3.3', +7261 silly addNameRange '1.3.4', +7261 silly addNameRange '1.3.5', +7261 silly addNameRange '1.3.6', +7261 silly addNameRange '1.3.7', +7261 silly addNameRange '1.3.8', +7261 silly addNameRange '1.3.9', +7261 silly addNameRange '1.3.10', +7261 silly addNameRange '1.3.11', +7261 silly addNameRange '1.3.12', +7261 silly addNameRange '1.3.13', +7261 silly addNameRange '1.3.14', +7261 silly addNameRange '1.3.15', +7261 silly addNameRange '1.3.16', +7261 silly addNameRange '1.3.17', +7261 silly addNameRange '1.3.18', +7261 silly addNameRange '1.3.19', +7261 silly addNameRange '1.3.20', +7261 silly addNameRange '1.3.21', +7261 silly addNameRange '1.3.22', +7261 silly addNameRange '1.3.23', +7261 silly addNameRange '1.3.24' ] ] +7262 silly addNamed electron-to-chromium@1.3.24 +7263 verbose addNamed "1.3.24" is a plain semver version for electron-to-chromium +7264 silly mapToRegistry name electron-to-chromium +7265 silly mapToRegistry using default registry +7266 silly mapToRegistry registry https://registry.npmjs.org/ +7267 silly mapToRegistry uri https://registry.npmjs.org/electron-to-chromium +7268 verbose addRemoteTarball https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz not in flight; adding +7269 verbose addRemoteTarball [ 'https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz', +7269 verbose addRemoteTarball '9b7b88bb05ceb9fa016a177833cc2dde388f21b6' ] +7270 info retry fetch attempt 1 at 3:04:04 PM +7271 info attempt registry request try #1 at 3:04:04 PM +7272 http fetch GET https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz +7273 http fetch 200 https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz +7274 silly fetchAndShaCheck shasum 9b7b88bb05ceb9fa016a177833cc2dde388f21b6 +7275 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.24.tgz not in flight; adding +7276 verbose addTmpTarball already have metadata; skipping unpack for electron-to-chromium@1.3.24 +7277 silly cache afterAdd electron-to-chromium@1.3.24 +7278 verbose afterAdd /home/wso2/.npm/electron-to-chromium/1.3.24/package/package.json not in flight; writing +7279 verbose afterAdd /home/wso2/.npm/electron-to-chromium/1.3.24/package/package.json written +7280 silly fetchNamedPackageData chalk +7281 silly mapToRegistry name chalk +7282 silly mapToRegistry using default registry +7283 silly mapToRegistry registry https://registry.npmjs.org/ +7284 silly mapToRegistry uri https://registry.npmjs.org/chalk +7285 silly resolveWithNewModule chalk@2.1.0 checking installable status +7286 silly cache add args [ 'chalk@^2.1.0', null ] +7287 verbose cache add spec chalk@^2.1.0 +7288 silly fetchNamedPackageData supports-color +7289 silly mapToRegistry name supports-color +7290 silly mapToRegistry using default registry +7291 silly mapToRegistry registry https://registry.npmjs.org/ +7292 silly mapToRegistry uri https://registry.npmjs.org/supports-color +7293 silly resolveWithNewModule supports-color@4.4.0 checking installable status +7294 silly cache add args [ 'supports-color@^4.4.0', null ] +7295 verbose cache add spec supports-color@^4.4.0 +7296 silly cache add parsed spec Result { +7296 silly cache add raw: 'chalk@^2.1.0', +7296 silly cache add scope: null, +7296 silly cache add name: 'chalk', +7296 silly cache add rawSpec: '^2.1.0', +7296 silly cache add spec: '>=2.1.0 <3.0.0', +7296 silly cache add type: 'range' } +7297 silly addNamed chalk@>=2.1.0 <3.0.0 +7298 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for chalk +7299 silly addNameRange { name: 'chalk', range: '>=2.1.0 <3.0.0', hasData: false } +7300 silly mapToRegistry name chalk +7301 silly mapToRegistry using default registry +7302 silly mapToRegistry registry https://registry.npmjs.org/ +7303 silly mapToRegistry uri https://registry.npmjs.org/chalk +7304 verbose addNameRange registry:https://registry.npmjs.org/chalk not in flight; fetching +7305 silly cache add parsed spec Result { +7305 silly cache add raw: 'supports-color@^4.4.0', +7305 silly cache add scope: null, +7305 silly cache add name: 'supports-color', +7305 silly cache add rawSpec: '^4.4.0', +7305 silly cache add spec: '>=4.4.0 <5.0.0', +7305 silly cache add type: 'range' } +7306 silly addNamed supports-color@>=4.4.0 <5.0.0 +7307 verbose addNamed ">=4.4.0 <5.0.0" is a valid semver range for supports-color +7308 silly addNameRange { name: 'supports-color', +7308 silly addNameRange range: '>=4.4.0 <5.0.0', +7308 silly addNameRange hasData: false } +7309 silly mapToRegistry name supports-color +7310 silly mapToRegistry using default registry +7311 silly mapToRegistry registry https://registry.npmjs.org/ +7312 silly mapToRegistry uri https://registry.npmjs.org/supports-color +7313 verbose addNameRange registry:https://registry.npmjs.org/supports-color not in flight; fetching +7314 verbose request uri https://registry.npmjs.org/chalk +7315 verbose request no auth needed +7316 info attempt registry request try #1 at 3:04:05 PM +7317 verbose etag W/"59d153d8-b735" +7318 verbose lastModified Sun, 01 Oct 2017 20:45:12 GMT +7319 http request GET https://registry.npmjs.org/chalk +7320 verbose request uri https://registry.npmjs.org/supports-color +7321 verbose request no auth needed +7322 info attempt registry request try #1 at 3:04:05 PM +7323 verbose etag W/"59d12938-8ec4" +7324 verbose lastModified Sun, 01 Oct 2017 17:43:20 GMT +7325 http request GET https://registry.npmjs.org/supports-color +7326 http 304 https://registry.npmjs.org/chalk +7327 verbose headers { date: 'Mon, 02 Oct 2017 09:34:05 GMT', +7327 verbose headers via: '1.1 varnish', +7327 verbose headers 'cache-control': 'max-age=300', +7327 verbose headers etag: 'W/"59d153d8-b735"', +7327 verbose headers age: '282', +7327 verbose headers connection: 'keep-alive', +7327 verbose headers 'x-served-by': 'cache-sin18022-SIN', +7327 verbose headers 'x-cache': 'HIT', +7327 verbose headers 'x-cache-hits': '21', +7327 verbose headers 'x-timer': 'S1506936845.329341,VS0,VE0', +7327 verbose headers vary: 'Accept-Encoding, Accept' } +7328 silly get cb [ 304, +7328 silly get { date: 'Mon, 02 Oct 2017 09:34:05 GMT', +7328 silly get via: '1.1 varnish', +7328 silly get 'cache-control': 'max-age=300', +7328 silly get etag: 'W/"59d153d8-b735"', +7328 silly get age: '282', +7328 silly get connection: 'keep-alive', +7328 silly get 'x-served-by': 'cache-sin18022-SIN', +7328 silly get 'x-cache': 'HIT', +7328 silly get 'x-cache-hits': '21', +7328 silly get 'x-timer': 'S1506936845.329341,VS0,VE0', +7328 silly get vary: 'Accept-Encoding, Accept' } ] +7329 verbose etag https://registry.npmjs.org/chalk from cache +7330 verbose get saving chalk to /home/wso2/.npm/registry.npmjs.org/chalk/.cache.json +7331 silly addNameRange number 2 { name: 'chalk', range: '>=2.1.0 <3.0.0', hasData: true } +7332 silly addNameRange versions [ 'chalk', +7332 silly addNameRange [ '0.1.0', +7332 silly addNameRange '0.1.1', +7332 silly addNameRange '0.2.0', +7332 silly addNameRange '0.2.1', +7332 silly addNameRange '0.3.0', +7332 silly addNameRange '0.4.0', +7332 silly addNameRange '0.5.0', +7332 silly addNameRange '0.5.1', +7332 silly addNameRange '1.0.0', +7332 silly addNameRange '1.1.0', +7332 silly addNameRange '1.1.1', +7332 silly addNameRange '1.1.2', +7332 silly addNameRange '1.1.3', +7332 silly addNameRange '2.0.0', +7332 silly addNameRange '2.0.1', +7332 silly addNameRange '2.1.0' ] ] +7333 silly addNamed chalk@2.1.0 +7334 verbose addNamed "2.1.0" is a plain semver version for chalk +7335 silly cache afterAdd chalk@2.1.0 +7336 verbose afterAdd /home/wso2/.npm/chalk/2.1.0/package/package.json not in flight; writing +7337 verbose afterAdd /home/wso2/.npm/chalk/2.1.0/package/package.json written +7338 http 304 https://registry.npmjs.org/supports-color +7339 verbose headers { date: 'Mon, 02 Oct 2017 09:34:05 GMT', +7339 verbose headers via: '1.1 varnish', +7339 verbose headers 'cache-control': 'max-age=300', +7339 verbose headers etag: 'W/"59d12938-8ec4"', +7339 verbose headers age: '289', +7339 verbose headers connection: 'keep-alive', +7339 verbose headers 'x-served-by': 'cache-sin18030-SIN', +7339 verbose headers 'x-cache': 'HIT', +7339 verbose headers 'x-cache-hits': '21', +7339 verbose headers 'x-timer': 'S1506936845.337000,VS0,VE0', +7339 verbose headers vary: 'Accept-Encoding, Accept' } +7340 silly get cb [ 304, +7340 silly get { date: 'Mon, 02 Oct 2017 09:34:05 GMT', +7340 silly get via: '1.1 varnish', +7340 silly get 'cache-control': 'max-age=300', +7340 silly get etag: 'W/"59d12938-8ec4"', +7340 silly get age: '289', +7340 silly get connection: 'keep-alive', +7340 silly get 'x-served-by': 'cache-sin18030-SIN', +7340 silly get 'x-cache': 'HIT', +7340 silly get 'x-cache-hits': '21', +7340 silly get 'x-timer': 'S1506936845.337000,VS0,VE0', +7340 silly get vary: 'Accept-Encoding, Accept' } ] +7341 verbose etag https://registry.npmjs.org/supports-color from cache +7342 verbose get saving supports-color to /home/wso2/.npm/registry.npmjs.org/supports-color/.cache.json +7343 silly addNameRange number 2 { name: 'supports-color', +7343 silly addNameRange range: '>=4.4.0 <5.0.0', +7343 silly addNameRange hasData: true } +7344 silly addNameRange versions [ 'supports-color', +7344 silly addNameRange [ '0.2.0', +7344 silly addNameRange '1.0.0', +7344 silly addNameRange '1.1.0', +7344 silly addNameRange '1.2.0', +7344 silly addNameRange '1.2.1', +7344 silly addNameRange '1.3.0', +7344 silly addNameRange '1.3.1', +7344 silly addNameRange '2.0.0', +7344 silly addNameRange '3.0.0', +7344 silly addNameRange '3.0.1', +7344 silly addNameRange '3.1.0', +7344 silly addNameRange '3.1.1', +7344 silly addNameRange '3.1.2', +7344 silly addNameRange '3.2.0', +7344 silly addNameRange '3.2.1', +7344 silly addNameRange '3.2.2', +7344 silly addNameRange '3.2.3', +7344 silly addNameRange '4.0.0', +7344 silly addNameRange '4.1.0', +7344 silly addNameRange '4.2.0', +7344 silly addNameRange '4.2.1', +7344 silly addNameRange '4.3.0', +7344 silly addNameRange '4.4.0' ] ] +7345 silly addNamed supports-color@4.4.0 +7346 verbose addNamed "4.4.0" is a plain semver version for supports-color +7347 silly cache afterAdd supports-color@4.4.0 +7348 verbose afterAdd /home/wso2/.npm/supports-color/4.4.0/package/package.json not in flight; writing +7349 verbose afterAdd /home/wso2/.npm/supports-color/4.4.0/package/package.json written +7350 silly fetchNamedPackageData ansi-styles +7351 silly mapToRegistry name ansi-styles +7352 silly mapToRegistry using default registry +7353 silly mapToRegistry registry https://registry.npmjs.org/ +7354 silly mapToRegistry uri https://registry.npmjs.org/ansi-styles +7355 silly resolveWithNewModule ansi-styles@3.2.0 checking installable status +7356 silly cache add args [ 'ansi-styles@^3.1.0', null ] +7357 verbose cache add spec ansi-styles@^3.1.0 +7358 silly cache add parsed spec Result { +7358 silly cache add raw: 'ansi-styles@^3.1.0', +7358 silly cache add scope: null, +7358 silly cache add name: 'ansi-styles', +7358 silly cache add rawSpec: '^3.1.0', +7358 silly cache add spec: '>=3.1.0 <4.0.0', +7358 silly cache add type: 'range' } +7359 silly addNamed ansi-styles@>=3.1.0 <4.0.0 +7360 verbose addNamed ">=3.1.0 <4.0.0" is a valid semver range for ansi-styles +7361 silly addNameRange { name: 'ansi-styles', range: '>=3.1.0 <4.0.0', hasData: false } +7362 silly mapToRegistry name ansi-styles +7363 silly mapToRegistry using default registry +7364 silly mapToRegistry registry https://registry.npmjs.org/ +7365 silly mapToRegistry uri https://registry.npmjs.org/ansi-styles +7366 verbose addNameRange registry:https://registry.npmjs.org/ansi-styles not in flight; fetching +7367 verbose request uri https://registry.npmjs.org/ansi-styles +7368 verbose request no auth needed +7369 info attempt registry request try #1 at 3:04:05 PM +7370 verbose etag W/"59bc16cc-54b8" +7371 verbose lastModified Fri, 15 Sep 2017 18:07:08 GMT +7372 http request GET https://registry.npmjs.org/ansi-styles +7373 http 304 https://registry.npmjs.org/ansi-styles +7374 verbose headers { date: 'Mon, 02 Oct 2017 09:34:05 GMT', +7374 verbose headers via: '1.1 varnish', +7374 verbose headers 'cache-control': 'max-age=300', +7374 verbose headers etag: 'W/"59bc16cc-54b8"', +7374 verbose headers age: '210', +7374 verbose headers connection: 'keep-alive', +7374 verbose headers 'x-served-by': 'cache-sin18031-SIN', +7374 verbose headers 'x-cache': 'HIT', +7374 verbose headers 'x-cache-hits': '10', +7374 verbose headers 'x-timer': 'S1506936846.843414,VS0,VE0', +7374 verbose headers vary: 'Accept-Encoding, Accept' } +7375 silly get cb [ 304, +7375 silly get { date: 'Mon, 02 Oct 2017 09:34:05 GMT', +7375 silly get via: '1.1 varnish', +7375 silly get 'cache-control': 'max-age=300', +7375 silly get etag: 'W/"59bc16cc-54b8"', +7375 silly get age: '210', +7375 silly get connection: 'keep-alive', +7375 silly get 'x-served-by': 'cache-sin18031-SIN', +7375 silly get 'x-cache': 'HIT', +7375 silly get 'x-cache-hits': '10', +7375 silly get 'x-timer': 'S1506936846.843414,VS0,VE0', +7375 silly get vary: 'Accept-Encoding, Accept' } ] +7376 verbose etag https://registry.npmjs.org/ansi-styles from cache +7377 verbose get saving ansi-styles to /home/wso2/.npm/registry.npmjs.org/ansi-styles/.cache.json +7378 silly addNameRange number 2 { name: 'ansi-styles', range: '>=3.1.0 <4.0.0', hasData: true } +7379 silly addNameRange versions [ 'ansi-styles', +7379 silly addNameRange [ '0.1.0', +7379 silly addNameRange '0.1.1', +7379 silly addNameRange '0.1.2', +7379 silly addNameRange '0.2.0', +7379 silly addNameRange '1.0.0', +7379 silly addNameRange '1.1.0', +7379 silly addNameRange '2.0.0', +7379 silly addNameRange '2.0.1', +7379 silly addNameRange '2.1.0', +7379 silly addNameRange '2.2.1', +7379 silly addNameRange '3.0.0', +7379 silly addNameRange '3.1.0', +7379 silly addNameRange '3.2.0' ] ] +7380 silly addNamed ansi-styles@3.2.0 +7381 verbose addNamed "3.2.0" is a plain semver version for ansi-styles +7382 silly cache afterAdd ansi-styles@3.2.0 +7383 verbose afterAdd /home/wso2/.npm/ansi-styles/3.2.0/package/package.json not in flight; writing +7384 verbose afterAdd /home/wso2/.npm/ansi-styles/3.2.0/package/package.json written +7385 silly fetchNamedPackageData color-convert +7386 silly mapToRegistry name color-convert +7387 silly mapToRegistry using default registry +7388 silly mapToRegistry registry https://registry.npmjs.org/ +7389 silly mapToRegistry uri https://registry.npmjs.org/color-convert +7390 verbose request uri https://registry.npmjs.org/color-convert +7391 verbose request no auth needed +7392 info attempt registry request try #1 at 3:04:05 PM +7393 verbose etag W/"5975a77b-a0d4" +7394 verbose lastModified Mon, 24 Jul 2017 07:53:31 GMT +7395 http request GET https://registry.npmjs.org/color-convert +7396 http 304 https://registry.npmjs.org/color-convert +7397 verbose headers { date: 'Mon, 02 Oct 2017 09:34:06 GMT', +7397 verbose headers via: '1.1 varnish', +7397 verbose headers 'cache-control': 'max-age=300', +7397 verbose headers etag: 'W/"5975a77b-a0d4"', +7397 verbose headers age: '154', +7397 verbose headers connection: 'keep-alive', +7397 verbose headers 'x-served-by': 'cache-sin18033-SIN', +7397 verbose headers 'x-cache': 'HIT', +7397 verbose headers 'x-cache-hits': '2', +7397 verbose headers 'x-timer': 'S1506936846.099129,VS0,VE0', +7397 verbose headers vary: 'Accept-Encoding, Accept' } +7398 silly get cb [ 304, +7398 silly get { date: 'Mon, 02 Oct 2017 09:34:06 GMT', +7398 silly get via: '1.1 varnish', +7398 silly get 'cache-control': 'max-age=300', +7398 silly get etag: 'W/"5975a77b-a0d4"', +7398 silly get age: '154', +7398 silly get connection: 'keep-alive', +7398 silly get 'x-served-by': 'cache-sin18033-SIN', +7398 silly get 'x-cache': 'HIT', +7398 silly get 'x-cache-hits': '2', +7398 silly get 'x-timer': 'S1506936846.099129,VS0,VE0', +7398 silly get vary: 'Accept-Encoding, Accept' } ] +7399 verbose etag https://registry.npmjs.org/color-convert from cache +7400 verbose get saving color-convert to /home/wso2/.npm/registry.npmjs.org/color-convert/.cache.json +7401 silly resolveWithNewModule color-convert@1.9.0 checking installable status +7402 silly cache add args [ 'color-convert@^1.9.0', null ] +7403 verbose cache add spec color-convert@^1.9.0 +7404 silly cache add parsed spec Result { +7404 silly cache add raw: 'color-convert@^1.9.0', +7404 silly cache add scope: null, +7404 silly cache add name: 'color-convert', +7404 silly cache add rawSpec: '^1.9.0', +7404 silly cache add spec: '>=1.9.0 <2.0.0', +7404 silly cache add type: 'range' } +7405 silly addNamed color-convert@>=1.9.0 <2.0.0 +7406 verbose addNamed ">=1.9.0 <2.0.0" is a valid semver range for color-convert +7407 silly addNameRange { name: 'color-convert', +7407 silly addNameRange range: '>=1.9.0 <2.0.0', +7407 silly addNameRange hasData: false } +7408 silly mapToRegistry name color-convert +7409 silly mapToRegistry using default registry +7410 silly mapToRegistry registry https://registry.npmjs.org/ +7411 silly mapToRegistry uri https://registry.npmjs.org/color-convert +7412 verbose addNameRange registry:https://registry.npmjs.org/color-convert not in flight; fetching +7413 verbose get https://registry.npmjs.org/color-convert not expired, no request +7414 silly addNameRange number 2 { name: 'color-convert', range: '>=1.9.0 <2.0.0', hasData: true } +7415 silly addNameRange versions [ 'color-convert', +7415 silly addNameRange [ '0.1.0', +7415 silly addNameRange '0.2.0', +7415 silly addNameRange '0.2.1', +7415 silly addNameRange '0.3.0', +7415 silly addNameRange '0.3.1', +7415 silly addNameRange '0.3.4', +7415 silly addNameRange '0.4.0', +7415 silly addNameRange '0.5.0', +7415 silly addNameRange '0.5.1', +7415 silly addNameRange '0.5.2', +7415 silly addNameRange '0.5.3', +7415 silly addNameRange '0.6.0', +7415 silly addNameRange '0.7.0', +7415 silly addNameRange '1.0.0', +7415 silly addNameRange '1.1.0', +7415 silly addNameRange '1.1.1', +7415 silly addNameRange '1.1.2', +7415 silly addNameRange '1.2.0', +7415 silly addNameRange '1.2.1', +7415 silly addNameRange '1.2.2', +7415 silly addNameRange '1.3.0', +7415 silly addNameRange '1.3.1', +7415 silly addNameRange '1.4.0', +7415 silly addNameRange '1.5.0', +7415 silly addNameRange '1.6.0', +7415 silly addNameRange '1.7.0', +7415 silly addNameRange '1.8.0', +7415 silly addNameRange '1.8.1', +7415 silly addNameRange '1.8.2', +7415 silly addNameRange '1.9.0' ] ] +7416 silly addNamed color-convert@1.9.0 +7417 verbose addNamed "1.9.0" is a plain semver version for color-convert +7418 silly cache afterAdd color-convert@1.9.0 +7419 verbose afterAdd /home/wso2/.npm/color-convert/1.9.0/package/package.json not in flight; writing +7420 verbose afterAdd /home/wso2/.npm/color-convert/1.9.0/package/package.json written +7421 silly fetchNamedPackageData color-name +7422 silly mapToRegistry name color-name +7423 silly mapToRegistry using default registry +7424 silly mapToRegistry registry https://registry.npmjs.org/ +7425 silly mapToRegistry uri https://registry.npmjs.org/color-name +7426 verbose request uri https://registry.npmjs.org/color-name +7427 verbose request no auth needed +7428 info attempt registry request try #1 at 3:04:06 PM +7429 verbose etag W/"596a9464-2393" +7430 verbose lastModified Sat, 15 Jul 2017 22:17:08 GMT +7431 http request GET https://registry.npmjs.org/color-name +7432 http 304 https://registry.npmjs.org/color-name +7433 verbose headers { date: 'Mon, 02 Oct 2017 09:34:06 GMT', +7433 verbose headers via: '1.1 varnish', +7433 verbose headers 'cache-control': 'max-age=300', +7433 verbose headers etag: 'W/"596a9464-2393"', +7433 verbose headers age: '282', +7433 verbose headers connection: 'keep-alive', +7433 verbose headers 'x-served-by': 'cache-sin18024-SIN', +7433 verbose headers 'x-cache': 'HIT', +7433 verbose headers 'x-cache-hits': '4', +7433 verbose headers 'x-timer': 'S1506936846.337316,VS0,VE0', +7433 verbose headers vary: 'Accept-Encoding, Accept' } +7434 silly get cb [ 304, +7434 silly get { date: 'Mon, 02 Oct 2017 09:34:06 GMT', +7434 silly get via: '1.1 varnish', +7434 silly get 'cache-control': 'max-age=300', +7434 silly get etag: 'W/"596a9464-2393"', +7434 silly get age: '282', +7434 silly get connection: 'keep-alive', +7434 silly get 'x-served-by': 'cache-sin18024-SIN', +7434 silly get 'x-cache': 'HIT', +7434 silly get 'x-cache-hits': '4', +7434 silly get 'x-timer': 'S1506936846.337316,VS0,VE0', +7434 silly get vary: 'Accept-Encoding, Accept' } ] +7435 verbose etag https://registry.npmjs.org/color-name from cache +7436 verbose get saving color-name to /home/wso2/.npm/registry.npmjs.org/color-name/.cache.json +7437 silly resolveWithNewModule color-name@1.1.3 checking installable status +7438 silly cache add args [ 'color-name@^1.1.1', null ] +7439 verbose cache add spec color-name@^1.1.1 +7440 silly cache add parsed spec Result { +7440 silly cache add raw: 'color-name@^1.1.1', +7440 silly cache add scope: null, +7440 silly cache add name: 'color-name', +7440 silly cache add rawSpec: '^1.1.1', +7440 silly cache add spec: '>=1.1.1 <2.0.0', +7440 silly cache add type: 'range' } +7441 silly addNamed color-name@>=1.1.1 <2.0.0 +7442 verbose addNamed ">=1.1.1 <2.0.0" is a valid semver range for color-name +7443 silly addNameRange { name: 'color-name', range: '>=1.1.1 <2.0.0', hasData: false } +7444 silly mapToRegistry name color-name +7445 silly mapToRegistry using default registry +7446 silly mapToRegistry registry https://registry.npmjs.org/ +7447 silly mapToRegistry uri https://registry.npmjs.org/color-name +7448 verbose addNameRange registry:https://registry.npmjs.org/color-name not in flight; fetching +7449 verbose get https://registry.npmjs.org/color-name not expired, no request +7450 silly addNameRange number 2 { name: 'color-name', range: '>=1.1.1 <2.0.0', hasData: true } +7451 silly addNameRange versions [ 'color-name', +7451 silly addNameRange [ '0.0.1', +7451 silly addNameRange '0.0.2', +7451 silly addNameRange '1.0.0', +7451 silly addNameRange '1.0.1', +7451 silly addNameRange '1.1.0', +7451 silly addNameRange '1.1.1', +7451 silly addNameRange '1.1.2', +7451 silly addNameRange '1.1.3' ] ] +7452 silly addNamed color-name@1.1.3 +7453 verbose addNamed "1.1.3" is a plain semver version for color-name +7454 silly cache afterAdd color-name@1.1.3 +7455 verbose afterAdd /home/wso2/.npm/color-name/1.1.3/package/package.json not in flight; writing +7456 verbose afterAdd /home/wso2/.npm/color-name/1.1.3/package/package.json written +7457 silly fetchNamedPackageData has-flag +7458 silly mapToRegistry name has-flag +7459 silly mapToRegistry using default registry +7460 silly mapToRegistry registry https://registry.npmjs.org/ +7461 silly mapToRegistry uri https://registry.npmjs.org/has-flag +7462 verbose request uri https://registry.npmjs.org/has-flag +7463 verbose request no auth needed +7464 info attempt registry request try #1 at 3:04:06 PM +7465 verbose etag W/"58593457-12a5" +7466 verbose lastModified Tue, 20 Dec 2016 13:38:31 GMT +7467 http request GET https://registry.npmjs.org/has-flag +7468 http 304 https://registry.npmjs.org/has-flag +7469 verbose headers { date: 'Mon, 02 Oct 2017 09:34:06 GMT', +7469 verbose headers via: '1.1 varnish', +7469 verbose headers 'cache-control': 'max-age=300', +7469 verbose headers etag: 'W/"58593457-12a5"', +7469 verbose headers age: '90', +7469 verbose headers connection: 'keep-alive', +7469 verbose headers 'x-served-by': 'cache-sin18022-SIN', +7469 verbose headers 'x-cache': 'HIT', +7469 verbose headers 'x-cache-hits': '4', +7469 verbose headers 'x-timer': 'S1506936847.598996,VS0,VE0', +7469 verbose headers vary: 'Accept-Encoding, Accept' } +7470 silly get cb [ 304, +7470 silly get { date: 'Mon, 02 Oct 2017 09:34:06 GMT', +7470 silly get via: '1.1 varnish', +7470 silly get 'cache-control': 'max-age=300', +7470 silly get etag: 'W/"58593457-12a5"', +7470 silly get age: '90', +7470 silly get connection: 'keep-alive', +7470 silly get 'x-served-by': 'cache-sin18022-SIN', +7470 silly get 'x-cache': 'HIT', +7470 silly get 'x-cache-hits': '4', +7470 silly get 'x-timer': 'S1506936847.598996,VS0,VE0', +7470 silly get vary: 'Accept-Encoding, Accept' } ] +7471 verbose etag https://registry.npmjs.org/has-flag from cache +7472 verbose get saving has-flag to /home/wso2/.npm/registry.npmjs.org/has-flag/.cache.json +7473 silly resolveWithNewModule has-flag@2.0.0 checking installable status +7474 silly cache add args [ 'has-flag@^2.0.0', null ] +7475 verbose cache add spec has-flag@^2.0.0 +7476 silly cache add parsed spec Result { +7476 silly cache add raw: 'has-flag@^2.0.0', +7476 silly cache add scope: null, +7476 silly cache add name: 'has-flag', +7476 silly cache add rawSpec: '^2.0.0', +7476 silly cache add spec: '>=2.0.0 <3.0.0', +7476 silly cache add type: 'range' } +7477 silly addNamed has-flag@>=2.0.0 <3.0.0 +7478 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for has-flag +7479 silly addNameRange { name: 'has-flag', range: '>=2.0.0 <3.0.0', hasData: false } +7480 silly mapToRegistry name has-flag +7481 silly mapToRegistry using default registry +7482 silly mapToRegistry registry https://registry.npmjs.org/ +7483 silly mapToRegistry uri https://registry.npmjs.org/has-flag +7484 verbose addNameRange registry:https://registry.npmjs.org/has-flag not in flight; fetching +7485 verbose get https://registry.npmjs.org/has-flag not expired, no request +7486 silly addNameRange number 2 { name: 'has-flag', range: '>=2.0.0 <3.0.0', hasData: true } +7487 silly addNameRange versions [ 'has-flag', [ '1.0.0', '2.0.0' ] ] +7488 silly addNamed has-flag@2.0.0 +7489 verbose addNamed "2.0.0" is a plain semver version for has-flag +7490 silly cache afterAdd has-flag@2.0.0 +7491 verbose afterAdd /home/wso2/.npm/has-flag/2.0.0/package/package.json not in flight; writing +7492 verbose afterAdd /home/wso2/.npm/has-flag/2.0.0/package/package.json written +7493 silly fetchNamedPackageData core-js +7494 silly mapToRegistry name core-js +7495 silly mapToRegistry using default registry +7496 silly mapToRegistry registry https://registry.npmjs.org/ +7497 silly mapToRegistry uri https://registry.npmjs.org/core-js +7498 silly resolveWithNewModule core-js@2.5.1 checking installable status +7499 silly cache add args [ 'core-js@^2.4.0', null ] +7500 verbose cache add spec core-js@^2.4.0 +7501 silly fetchNamedPackageData regenerator-runtime +7502 silly mapToRegistry name regenerator-runtime +7503 silly mapToRegistry using default registry +7504 silly mapToRegistry registry https://registry.npmjs.org/ +7505 silly mapToRegistry uri https://registry.npmjs.org/regenerator-runtime +7506 silly resolveWithNewModule regenerator-runtime@0.10.5 checking installable status +7507 silly cache add args [ 'regenerator-runtime@^0.10.0', null ] +7508 verbose cache add spec regenerator-runtime@^0.10.0 +7509 silly cache add parsed spec Result { +7509 silly cache add raw: 'core-js@^2.4.0', +7509 silly cache add scope: null, +7509 silly cache add name: 'core-js', +7509 silly cache add rawSpec: '^2.4.0', +7509 silly cache add spec: '>=2.4.0 <3.0.0', +7509 silly cache add type: 'range' } +7510 silly addNamed core-js@>=2.4.0 <3.0.0 +7511 verbose addNamed ">=2.4.0 <3.0.0" is a valid semver range for core-js +7512 silly addNameRange { name: 'core-js', range: '>=2.4.0 <3.0.0', hasData: false } +7513 silly mapToRegistry name core-js +7514 silly mapToRegistry using default registry +7515 silly mapToRegistry registry https://registry.npmjs.org/ +7516 silly mapToRegistry uri https://registry.npmjs.org/core-js +7517 verbose addNameRange registry:https://registry.npmjs.org/core-js not in flight; fetching +7518 silly cache add parsed spec Result { +7518 silly cache add raw: 'regenerator-runtime@^0.10.0', +7518 silly cache add scope: null, +7518 silly cache add name: 'regenerator-runtime', +7518 silly cache add rawSpec: '^0.10.0', +7518 silly cache add spec: '>=0.10.0 <0.11.0', +7518 silly cache add type: 'range' } +7519 silly addNamed regenerator-runtime@>=0.10.0 <0.11.0 +7520 verbose addNamed ">=0.10.0 <0.11.0" is a valid semver range for regenerator-runtime +7521 silly addNameRange { name: 'regenerator-runtime', +7521 silly addNameRange range: '>=0.10.0 <0.11.0', +7521 silly addNameRange hasData: false } +7522 silly mapToRegistry name regenerator-runtime +7523 silly mapToRegistry using default registry +7524 silly mapToRegistry registry https://registry.npmjs.org/ +7525 silly mapToRegistry uri https://registry.npmjs.org/regenerator-runtime +7526 verbose addNameRange registry:https://registry.npmjs.org/regenerator-runtime not in flight; fetching +7527 verbose get https://registry.npmjs.org/regenerator-runtime not expired, no request +7528 silly addNameRange number 2 { name: 'regenerator-runtime', +7528 silly addNameRange range: '>=0.10.0 <0.11.0', +7528 silly addNameRange hasData: true } +7529 silly addNameRange versions [ 'regenerator-runtime', +7529 silly addNameRange [ '0.9.0', +7529 silly addNameRange '0.9.1', +7529 silly addNameRange '0.9.2', +7529 silly addNameRange '0.9.3', +7529 silly addNameRange '0.9.4', +7529 silly addNameRange '0.9.5', +7529 silly addNameRange '0.9.6', +7529 silly addNameRange '0.10.0', +7529 silly addNameRange '0.10.1', +7529 silly addNameRange '0.10.2', +7529 silly addNameRange '0.10.3', +7529 silly addNameRange '0.10.4', +7529 silly addNameRange '0.10.5', +7529 silly addNameRange '0.11.0' ] ] +7530 silly addNamed regenerator-runtime@0.10.5 +7531 verbose addNamed "0.10.5" is a plain semver version for regenerator-runtime +7532 verbose request uri https://registry.npmjs.org/core-js +7533 verbose request no auth needed +7534 info attempt registry request try #1 at 3:04:06 PM +7535 verbose etag W/"59c9c41c-39b13" +7536 verbose lastModified Tue, 26 Sep 2017 03:06:04 GMT +7537 http request GET https://registry.npmjs.org/core-js +7538 silly cache afterAdd regenerator-runtime@0.10.5 +7539 verbose afterAdd /home/wso2/.npm/regenerator-runtime/0.10.5/package/package.json not in flight; writing +7540 verbose afterAdd /home/wso2/.npm/regenerator-runtime/0.10.5/package/package.json written +7541 http 304 https://registry.npmjs.org/core-js +7542 verbose headers { date: 'Mon, 02 Oct 2017 09:34:06 GMT', +7542 verbose headers via: '1.1 varnish', +7542 verbose headers 'cache-control': 'max-age=300', +7542 verbose headers etag: 'W/"59c9c41c-39b13"', +7542 verbose headers age: '119', +7542 verbose headers connection: 'keep-alive', +7542 verbose headers 'x-served-by': 'cache-sin18024-SIN', +7542 verbose headers 'x-cache': 'HIT', +7542 verbose headers 'x-cache-hits': '3', +7542 verbose headers 'x-timer': 'S1506936847.833111,VS0,VE0', +7542 verbose headers vary: 'Accept-Encoding, Accept' } +7543 silly get cb [ 304, +7543 silly get { date: 'Mon, 02 Oct 2017 09:34:06 GMT', +7543 silly get via: '1.1 varnish', +7543 silly get 'cache-control': 'max-age=300', +7543 silly get etag: 'W/"59c9c41c-39b13"', +7543 silly get age: '119', +7543 silly get connection: 'keep-alive', +7543 silly get 'x-served-by': 'cache-sin18024-SIN', +7543 silly get 'x-cache': 'HIT', +7543 silly get 'x-cache-hits': '3', +7543 silly get 'x-timer': 'S1506936847.833111,VS0,VE0', +7543 silly get vary: 'Accept-Encoding, Accept' } ] +7544 verbose etag https://registry.npmjs.org/core-js from cache +7545 verbose get saving core-js to /home/wso2/.npm/registry.npmjs.org/core-js/.cache.json +7546 silly addNameRange number 2 { name: 'core-js', range: '>=2.4.0 <3.0.0', hasData: true } +7547 silly addNameRange versions [ 'core-js', +7547 silly addNameRange [ '0.0.3', +7547 silly addNameRange '0.0.4', +7547 silly addNameRange '0.0.5', +7547 silly addNameRange '0.0.7', +7547 silly addNameRange '0.0.8', +7547 silly addNameRange '0.0.9', +7547 silly addNameRange '0.1.1', +7547 silly addNameRange '0.1.2', +7547 silly addNameRange '0.1.3', +7547 silly addNameRange '0.1.4', +7547 silly addNameRange '0.1.5', +7547 silly addNameRange '0.2.0', +7547 silly addNameRange '0.2.1', +7547 silly addNameRange '0.2.2', +7547 silly addNameRange '0.2.3', +7547 silly addNameRange '0.2.4', +7547 silly addNameRange '0.2.5', +7547 silly addNameRange '0.3.0', +7547 silly addNameRange '0.3.1', +7547 silly addNameRange '0.3.2', +7547 silly addNameRange '0.3.3', +7547 silly addNameRange '0.4.0', +7547 silly addNameRange '0.4.1', +7547 silly addNameRange '0.4.2', +7547 silly addNameRange '0.4.3', +7547 silly addNameRange '0.4.4', +7547 silly addNameRange '0.4.5', +7547 silly addNameRange '0.4.6', +7547 silly addNameRange '0.4.7', +7547 silly addNameRange '0.4.8', +7547 silly addNameRange '0.4.9', +7547 silly addNameRange '0.4.10', +7547 silly addNameRange '0.5.0', +7547 silly addNameRange '0.5.1', +7547 silly addNameRange '0.5.2', +7547 silly addNameRange '0.5.3', +7547 silly addNameRange '0.5.4', +7547 silly addNameRange '0.6.0', +7547 silly addNameRange '0.6.1', +7547 silly addNameRange '0.7.0', +7547 silly addNameRange '0.7.1', +7547 silly addNameRange '0.7.2', +7547 silly addNameRange '0.8.0', +7547 silly addNameRange '0.8.1', +7547 silly addNameRange '0.8.2', +7547 silly addNameRange '0.8.3', +7547 silly addNameRange '0.8.4', +7547 silly addNameRange '0.9.0', +7547 silly addNameRange '0.9.1', +7547 silly addNameRange '0.9.2', +7547 silly addNameRange '0.9.3', +7547 silly addNameRange '0.9.4', +7547 silly addNameRange '0.9.5', +7547 silly addNameRange '0.9.6', +7547 silly addNameRange '0.9.7', +7547 silly addNameRange '0.9.8', +7547 silly addNameRange '0.9.9', +7547 silly addNameRange '0.9.10', +7547 silly addNameRange '0.9.11', +7547 silly addNameRange '0.9.12', +7547 silly addNameRange '0.9.13', +7547 silly addNameRange '0.9.14', +7547 silly addNameRange '0.9.15', +7547 silly addNameRange '0.9.16', +7547 silly addNameRange '0.9.17', +7547 silly addNameRange '0.9.18', +7547 silly addNameRange '1.0.0', +7547 silly addNameRange '1.0.1', +7547 silly addNameRange '1.1.0', +7547 silly addNameRange '1.1.1', +7547 silly addNameRange '1.1.2', +7547 silly addNameRange '1.1.3', +7547 silly addNameRange '1.1.4', +7547 silly addNameRange '1.2.0', +7547 silly addNameRange '1.2.1', +7547 silly addNameRange '1.2.2', +7547 silly addNameRange '1.2.3', +7547 silly addNameRange '1.2.4', +7547 silly addNameRange '1.2.5', +7547 silly addNameRange '1.2.6', +7547 silly addNameRange '2.0.0-alpha', +7547 silly addNameRange '2.0.0-beta', +7547 silly addNameRange '2.0.0-beta.2', +7547 silly addNameRange '2.0.0', +7547 silly addNameRange '2.0.1', +7547 silly addNameRange '2.0.2', +7547 silly addNameRange '2.0.3', +7547 silly addNameRange '2.1.0', +7547 silly addNameRange '2.1.1', +7547 silly addNameRange '2.1.2', +7547 silly addNameRange '2.1.3', +7547 silly addNameRange '2.1.4', +7547 silly addNameRange '2.1.5', +7547 silly addNameRange '2.2.0', +7547 silly addNameRange '2.2.1', +7547 silly addNameRange '2.2.2', +7547 silly addNameRange '2.3.0', +7547 silly addNameRange '2.4.0', +7547 silly addNameRange '1.2.7', +7547 silly addNameRange '2.4.1', +7547 silly addNameRange '2.5.0', +7547 silly addNameRange '2.5.1' ] ] +7548 silly addNamed core-js@2.5.1 +7549 verbose addNamed "2.5.1" is a plain semver version for core-js +7550 silly cache afterAdd core-js@2.5.1 +7551 verbose afterAdd /home/wso2/.npm/core-js/2.5.1/package/package.json not in flight; writing +7552 verbose afterAdd /home/wso2/.npm/core-js/2.5.1/package/package.json written +7553 silly fetchNamedPackageData babel-plugin-istanbul +7554 silly mapToRegistry name babel-plugin-istanbul +7555 silly mapToRegistry using default registry +7556 silly mapToRegistry registry https://registry.npmjs.org/ +7557 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-istanbul +7558 silly fetchNamedPackageData babel-preset-jest +7559 silly mapToRegistry name babel-preset-jest +7560 silly mapToRegistry using default registry +7561 silly mapToRegistry registry https://registry.npmjs.org/ +7562 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-jest +7563 verbose request uri https://registry.npmjs.org/babel-plugin-istanbul +7564 verbose request no auth needed +7565 info attempt registry request try #1 at 3:04:06 PM +7566 verbose etag W/"5929f366-ccda" +7567 verbose lastModified Sat, 27 May 2017 21:45:10 GMT +7568 http request GET https://registry.npmjs.org/babel-plugin-istanbul +7569 verbose request uri https://registry.npmjs.org/babel-preset-jest +7570 verbose request no auth needed +7571 info attempt registry request try #1 at 3:04:06 PM +7572 verbose etag W/"59ad6ae7-164da" +7573 verbose lastModified Mon, 04 Sep 2017 15:01:59 GMT +7574 http request GET https://registry.npmjs.org/babel-preset-jest +7575 http 200 https://registry.npmjs.org/babel-preset-jest +7576 verbose headers { server: 'nginx/1.10.3', +7576 verbose headers 'content-type': 'application/json', +7576 verbose headers 'last-modified': 'Sun, 01 Oct 2017 20:01:11 GMT', +7576 verbose headers etag: 'W/"59d14987-17bd1"', +7576 verbose headers 'content-encoding': 'gzip', +7576 verbose headers 'cache-control': 'max-age=300', +7576 verbose headers 'content-length': '10107', +7576 verbose headers 'accept-ranges': 'bytes', +7576 verbose headers date: 'Mon, 02 Oct 2017 09:34:07 GMT', +7576 verbose headers via: '1.1 varnish', +7576 verbose headers age: '207', +7576 verbose headers connection: 'keep-alive', +7576 verbose headers 'x-served-by': 'cache-sin18033-SIN', +7576 verbose headers 'x-cache': 'HIT', +7576 verbose headers 'x-cache-hits': '1', +7576 verbose headers 'x-timer': 'S1506936847.158591,VS0,VE0', +7576 verbose headers vary: 'Accept-Encoding, Accept' } +7577 silly get cb [ 200, +7577 silly get { server: 'nginx/1.10.3', +7577 silly get 'content-type': 'application/json', +7577 silly get 'last-modified': 'Sun, 01 Oct 2017 20:01:11 GMT', +7577 silly get etag: 'W/"59d14987-17bd1"', +7577 silly get 'content-encoding': 'gzip', +7577 silly get 'cache-control': 'max-age=300', +7577 silly get 'content-length': '10107', +7577 silly get 'accept-ranges': 'bytes', +7577 silly get date: 'Mon, 02 Oct 2017 09:34:07 GMT', +7577 silly get via: '1.1 varnish', +7577 silly get age: '207', +7577 silly get connection: 'keep-alive', +7577 silly get 'x-served-by': 'cache-sin18033-SIN', +7577 silly get 'x-cache': 'HIT', +7577 silly get 'x-cache-hits': '1', +7577 silly get 'x-timer': 'S1506936847.158591,VS0,VE0', +7577 silly get vary: 'Accept-Encoding, Accept' } ] +7578 verbose get saving babel-preset-jest to /home/wso2/.npm/registry.npmjs.org/babel-preset-jest/.cache.json +7579 silly resolveWithNewModule babel-preset-jest@20.0.3 checking installable status +7580 silly cache add args [ 'babel-preset-jest@^20.0.3', null ] +7581 verbose cache add spec babel-preset-jest@^20.0.3 +7582 silly cache add parsed spec Result { +7582 silly cache add raw: 'babel-preset-jest@^20.0.3', +7582 silly cache add scope: null, +7582 silly cache add name: 'babel-preset-jest', +7582 silly cache add rawSpec: '^20.0.3', +7582 silly cache add spec: '>=20.0.3 <21.0.0', +7582 silly cache add type: 'range' } +7583 silly addNamed babel-preset-jest@>=20.0.3 <21.0.0 +7584 verbose addNamed ">=20.0.3 <21.0.0" is a valid semver range for babel-preset-jest +7585 silly addNameRange { name: 'babel-preset-jest', +7585 silly addNameRange range: '>=20.0.3 <21.0.0', +7585 silly addNameRange hasData: false } +7586 silly mapToRegistry name babel-preset-jest +7587 silly mapToRegistry using default registry +7588 silly mapToRegistry registry https://registry.npmjs.org/ +7589 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-jest +7590 verbose addNameRange registry:https://registry.npmjs.org/babel-preset-jest not in flight; fetching +7591 verbose get https://registry.npmjs.org/babel-preset-jest not expired, no request +7592 silly addNameRange number 2 { name: 'babel-preset-jest', +7592 silly addNameRange range: '>=20.0.3 <21.0.0', +7592 silly addNameRange hasData: true } +7593 silly addNameRange versions [ 'babel-preset-jest', +7593 silly addNameRange [ '0.0.1', +7593 silly addNameRange '0.0.2', +7593 silly addNameRange '1.0.0', +7593 silly addNameRange '9.0.3', +7593 silly addNameRange '10.0.1', +7593 silly addNameRange '10.0.2', +7593 silly addNameRange '11.0.0', +7593 silly addNameRange '11.0.1', +7593 silly addNameRange '11.0.2', +7593 silly addNameRange '12.0.0', +7593 silly addNameRange '12.0.1', +7593 silly addNameRange '12.0.2', +7593 silly addNameRange '12.1.0', +7593 silly addNameRange '12.1.1-alpha.2935e14d', +7593 silly addNameRange '12.1.2-alpha.a482b15c', +7593 silly addNameRange '12.1.2-alpha.6230044c', +7593 silly addNameRange '12.1.3-alpha.6230044c', +7593 silly addNameRange '12.1.4-alpha.a737c6e5', +7593 silly addNameRange '12.1.5-alpha.b5322422', +7593 silly addNameRange '13.0.0', +7593 silly addNameRange '13.2.1', +7593 silly addNameRange '13.2.2', +7593 silly addNameRange '13.3.0-alpha.a44f195f', +7593 silly addNameRange '13.3.0-alpha.4eb0c908', +7593 silly addNameRange '13.2.3-alpha.ffc7404b', +7593 silly addNameRange '13.3.0-alpha.ffc7404b', +7593 silly addNameRange '13.3.0-alpha.8b48d59e', +7593 silly addNameRange '13.3.0-alpha.g8b48d59', +7593 silly addNameRange '13.4.0-alpha.d2632006', +7593 silly addNameRange '14.0.0', +7593 silly addNameRange '14.1.0', +7593 silly addNameRange '14.2.0-alpha.ca8bfb6e', +7593 silly addNameRange '14.2.1-alpha.e21d71a4', +7593 silly addNameRange '14.2.2-alpha.22bd3c33', +7593 silly addNameRange '14.3.0-alpha.d13c163e', +7593 silly addNameRange '14.3.1-alpha.410cb91a', +7593 silly addNameRange '14.3.2-alpha.83c25417', +7593 silly addNameRange '15.0.0', +7593 silly addNameRange '15.2.0-alpha.c681f819', +7593 silly addNameRange '16.0.0', +7593 silly addNameRange '16.1.0-alpha.691b0e22', +7593 silly addNameRange '17.0.2', +7593 silly addNameRange '18.0.0', +7593 silly addNameRange '18.5.0-alpha.7da3df39', +7593 silly addNameRange '19.0.0', +7593 silly addNameRange '19.1.0-alpha.eed82034', +7593 silly addNameRange '19.2.0-alpha.993e64af', +7593 silly addNameRange '19.3.0-alpha.85402254', +7593 silly addNameRange '20.0.0', +7593 silly addNameRange '20.0.1', +7593 silly addNameRange '20.0.2', +7593 silly addNameRange '20.0.3', +7593 silly addNameRange '20.1.0-alpha.1', +7593 silly addNameRange '20.1.0-alpha.2', +7593 silly addNameRange '20.1.0-alpha.3', +7593 silly addNameRange '20.1.0-beta.1', +7593 silly addNameRange '20.1.0-chi.1', +7593 silly addNameRange '20.1.0-delta.1', +7593 silly addNameRange '20.1.0-delta.2', +7593 silly addNameRange '20.1.0-delta.3', +7593 silly addNameRange '20.1.0-delta.4', +7593 silly addNameRange '20.1.0-delta.5', +7593 silly addNameRange '20.1.0-echo.1', +7593 silly addNameRange '21.0.0-alpha.1', +7593 silly addNameRange '21.0.0-alpha.2', +7593 silly addNameRange '21.0.0-beta.1', +7593 silly addNameRange '21.0.0', +7593 silly addNameRange '21.0.2', +7593 silly addNameRange '21.2.0', +7593 silly addNameRange '21.3.0-alpha.1e3ee68e', +7593 silly addNameRange '21.3.0-alpha.eff7a1cf' ] ] +7594 silly addNamed babel-preset-jest@20.0.3 +7595 verbose addNamed "20.0.3" is a plain semver version for babel-preset-jest +7596 silly cache afterAdd babel-preset-jest@20.0.3 +7597 verbose afterAdd /home/wso2/.npm/babel-preset-jest/20.0.3/package/package.json not in flight; writing +7598 verbose afterAdd /home/wso2/.npm/babel-preset-jest/20.0.3/package/package.json written +7599 http 200 https://registry.npmjs.org/babel-plugin-istanbul +7600 verbose headers { server: 'nginx/1.10.3', +7600 verbose headers 'content-type': 'application/json', +7600 verbose headers 'last-modified': 'Mon, 25 Sep 2017 13:03:00 GMT', +7600 verbose headers etag: 'W/"59c8fe84-d64c"', +7600 verbose headers 'content-encoding': 'gzip', +7600 verbose headers 'cache-control': 'max-age=300', +7600 verbose headers 'content-length': '6438', +7600 verbose headers 'accept-ranges': 'bytes', +7600 verbose headers date: 'Mon, 02 Oct 2017 09:34:07 GMT', +7600 verbose headers via: '1.1 varnish', +7600 verbose headers age: '216', +7600 verbose headers connection: 'keep-alive', +7600 verbose headers 'x-served-by': 'cache-sin18026-SIN', +7600 verbose headers 'x-cache': 'HIT', +7600 verbose headers 'x-cache-hits': '2', +7600 verbose headers 'x-timer': 'S1506936847.184105,VS0,VE0', +7600 verbose headers vary: 'Accept-Encoding, Accept' } +7601 silly get cb [ 200, +7601 silly get { server: 'nginx/1.10.3', +7601 silly get 'content-type': 'application/json', +7601 silly get 'last-modified': 'Mon, 25 Sep 2017 13:03:00 GMT', +7601 silly get etag: 'W/"59c8fe84-d64c"', +7601 silly get 'content-encoding': 'gzip', +7601 silly get 'cache-control': 'max-age=300', +7601 silly get 'content-length': '6438', +7601 silly get 'accept-ranges': 'bytes', +7601 silly get date: 'Mon, 02 Oct 2017 09:34:07 GMT', +7601 silly get via: '1.1 varnish', +7601 silly get age: '216', +7601 silly get connection: 'keep-alive', +7601 silly get 'x-served-by': 'cache-sin18026-SIN', +7601 silly get 'x-cache': 'HIT', +7601 silly get 'x-cache-hits': '2', +7601 silly get 'x-timer': 'S1506936847.184105,VS0,VE0', +7601 silly get vary: 'Accept-Encoding, Accept' } ] +7602 verbose get saving babel-plugin-istanbul to /home/wso2/.npm/registry.npmjs.org/babel-plugin-istanbul/.cache.json +7603 silly resolveWithNewModule babel-plugin-istanbul@4.1.5 checking installable status +7604 silly cache add args [ 'babel-plugin-istanbul@^4.0.0', null ] +7605 verbose cache add spec babel-plugin-istanbul@^4.0.0 +7606 silly cache add parsed spec Result { +7606 silly cache add raw: 'babel-plugin-istanbul@^4.0.0', +7606 silly cache add scope: null, +7606 silly cache add name: 'babel-plugin-istanbul', +7606 silly cache add rawSpec: '^4.0.0', +7606 silly cache add spec: '>=4.0.0 <5.0.0', +7606 silly cache add type: 'range' } +7607 silly addNamed babel-plugin-istanbul@>=4.0.0 <5.0.0 +7608 verbose addNamed ">=4.0.0 <5.0.0" is a valid semver range for babel-plugin-istanbul +7609 silly addNameRange { name: 'babel-plugin-istanbul', +7609 silly addNameRange range: '>=4.0.0 <5.0.0', +7609 silly addNameRange hasData: false } +7610 silly mapToRegistry name babel-plugin-istanbul +7611 silly mapToRegistry using default registry +7612 silly mapToRegistry registry https://registry.npmjs.org/ +7613 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-istanbul +7614 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-istanbul not in flight; fetching +7615 verbose get https://registry.npmjs.org/babel-plugin-istanbul not expired, no request +7616 silly addNameRange number 2 { name: 'babel-plugin-istanbul', +7616 silly addNameRange range: '>=4.0.0 <5.0.0', +7616 silly addNameRange hasData: true } +7617 silly addNameRange versions [ 'babel-plugin-istanbul', +7617 silly addNameRange [ '1.0.0-alpha.1', +7617 silly addNameRange '1.0.0', +7617 silly addNameRange '1.0.1', +7617 silly addNameRange '1.0.2', +7617 silly addNameRange '1.0.3', +7617 silly addNameRange '1.1.0', +7617 silly addNameRange '2.0.0', +7617 silly addNameRange '2.0.1', +7617 silly addNameRange '2.0.2', +7617 silly addNameRange '2.0.3', +7617 silly addNameRange '3.0.0', +7617 silly addNameRange '3.1.0-candidate.0', +7617 silly addNameRange '3.1.1-candidate.0', +7617 silly addNameRange '3.1.1', +7617 silly addNameRange '3.1.2-candidate.0', +7617 silly addNameRange '3.1.2', +7617 silly addNameRange '4.0.0', +7617 silly addNameRange '4.1.0-candidate.0', +7617 silly addNameRange '4.1.1', +7617 silly addNameRange '4.1.2-candidate.0', +7617 silly addNameRange '4.1.3', +7617 silly addNameRange '4.1.4', +7617 silly addNameRange '4.1.5' ] ] +7618 silly addNamed babel-plugin-istanbul@4.1.5 +7619 verbose addNamed "4.1.5" is a plain semver version for babel-plugin-istanbul +7620 silly mapToRegistry name babel-plugin-istanbul +7621 silly mapToRegistry using default registry +7622 silly mapToRegistry registry https://registry.npmjs.org/ +7623 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-istanbul +7624 verbose addRemoteTarball https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz not in flight; adding +7625 verbose addRemoteTarball [ 'https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz', +7625 verbose addRemoteTarball '6760cdd977f411d3e175bb064f2bc327d99b2b6e' ] +7626 info retry fetch attempt 1 at 3:04:07 PM +7627 info attempt registry request try #1 at 3:04:07 PM +7628 http fetch GET https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz +7629 http fetch 200 https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz +7630 silly fetchAndShaCheck shasum 6760cdd977f411d3e175bb064f2bc327d99b2b6e +7631 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz not in flight; adding +7632 verbose addTmpTarball already have metadata; skipping unpack for babel-plugin-istanbul@4.1.5 +7633 silly cache afterAdd babel-plugin-istanbul@4.1.5 +7634 verbose afterAdd /home/wso2/.npm/babel-plugin-istanbul/4.1.5/package/package.json not in flight; writing +7635 verbose afterAdd /home/wso2/.npm/babel-plugin-istanbul/4.1.5/package/package.json written +7636 silly fetchNamedPackageData find-up +7637 silly mapToRegistry name find-up +7638 silly mapToRegistry using default registry +7639 silly mapToRegistry registry https://registry.npmjs.org/ +7640 silly mapToRegistry uri https://registry.npmjs.org/find-up +7641 silly fetchNamedPackageData istanbul-lib-instrument +7642 silly mapToRegistry name istanbul-lib-instrument +7643 silly mapToRegistry using default registry +7644 silly mapToRegistry registry https://registry.npmjs.org/ +7645 silly mapToRegistry uri https://registry.npmjs.org/istanbul-lib-instrument +7646 silly fetchNamedPackageData test-exclude +7647 silly mapToRegistry name test-exclude +7648 silly mapToRegistry using default registry +7649 silly mapToRegistry registry https://registry.npmjs.org/ +7650 silly mapToRegistry uri https://registry.npmjs.org/test-exclude +7651 verbose request uri https://registry.npmjs.org/find-up +7652 verbose request no auth needed +7653 info attempt registry request try #1 at 3:04:07 PM +7654 verbose etag W/"599e213c-2bbe" +7655 verbose lastModified Thu, 24 Aug 2017 00:43:40 GMT +7656 http request GET https://registry.npmjs.org/find-up +7657 verbose request uri https://registry.npmjs.org/istanbul-lib-instrument +7658 verbose request no auth needed +7659 info attempt registry request try #1 at 3:04:07 PM +7660 verbose etag W/"59adf245-12b0c" +7661 verbose lastModified Tue, 05 Sep 2017 00:39:33 GMT +7662 http request GET https://registry.npmjs.org/istanbul-lib-instrument +7663 verbose request uri https://registry.npmjs.org/test-exclude +7664 verbose request no auth needed +7665 info attempt registry request try #1 at 3:04:07 PM +7666 verbose etag W/"5929ebdb-7ce7" +7667 verbose lastModified Sat, 27 May 2017 21:12:59 GMT +7668 http request GET https://registry.npmjs.org/test-exclude +7669 http 304 https://registry.npmjs.org/test-exclude +7670 verbose headers { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7670 verbose headers via: '1.1 varnish', +7670 verbose headers 'cache-control': 'max-age=300', +7670 verbose headers etag: 'W/"5929ebdb-7ce7"', +7670 verbose headers age: '154', +7670 verbose headers connection: 'keep-alive', +7670 verbose headers 'x-served-by': 'cache-sin18021-SIN', +7670 verbose headers 'x-cache': 'HIT', +7670 verbose headers 'x-cache-hits': '1', +7670 verbose headers 'x-timer': 'S1506936848.262061,VS0,VE0', +7670 verbose headers vary: 'Accept-Encoding, Accept' } +7671 silly get cb [ 304, +7671 silly get { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7671 silly get via: '1.1 varnish', +7671 silly get 'cache-control': 'max-age=300', +7671 silly get etag: 'W/"5929ebdb-7ce7"', +7671 silly get age: '154', +7671 silly get connection: 'keep-alive', +7671 silly get 'x-served-by': 'cache-sin18021-SIN', +7671 silly get 'x-cache': 'HIT', +7671 silly get 'x-cache-hits': '1', +7671 silly get 'x-timer': 'S1506936848.262061,VS0,VE0', +7671 silly get vary: 'Accept-Encoding, Accept' } ] +7672 verbose etag https://registry.npmjs.org/test-exclude from cache +7673 verbose get saving test-exclude to /home/wso2/.npm/registry.npmjs.org/test-exclude/.cache.json +7674 silly resolveWithNewModule test-exclude@4.1.1 checking installable status +7675 silly cache add args [ 'test-exclude@^4.1.1', null ] +7676 verbose cache add spec test-exclude@^4.1.1 +7677 silly cache add parsed spec Result { +7677 silly cache add raw: 'test-exclude@^4.1.1', +7677 silly cache add scope: null, +7677 silly cache add name: 'test-exclude', +7677 silly cache add rawSpec: '^4.1.1', +7677 silly cache add spec: '>=4.1.1 <5.0.0', +7677 silly cache add type: 'range' } +7678 silly addNamed test-exclude@>=4.1.1 <5.0.0 +7679 verbose addNamed ">=4.1.1 <5.0.0" is a valid semver range for test-exclude +7680 silly addNameRange { name: 'test-exclude', range: '>=4.1.1 <5.0.0', hasData: false } +7681 silly mapToRegistry name test-exclude +7682 silly mapToRegistry using default registry +7683 silly mapToRegistry registry https://registry.npmjs.org/ +7684 silly mapToRegistry uri https://registry.npmjs.org/test-exclude +7685 verbose addNameRange registry:https://registry.npmjs.org/test-exclude not in flight; fetching +7686 http 304 https://registry.npmjs.org/istanbul-lib-instrument +7687 verbose headers { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7687 verbose headers via: '1.1 varnish', +7687 verbose headers 'cache-control': 'max-age=300', +7687 verbose headers etag: 'W/"59adf245-12b0c"', +7687 verbose headers age: '46', +7687 verbose headers connection: 'keep-alive', +7687 verbose headers 'x-served-by': 'cache-sin18025-SIN', +7687 verbose headers 'x-cache': 'HIT', +7687 verbose headers 'x-cache-hits': '1', +7687 verbose headers 'x-timer': 'S1506936848.262464,VS0,VE1', +7687 verbose headers vary: 'Accept-Encoding, Accept' } +7688 silly get cb [ 304, +7688 silly get { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7688 silly get via: '1.1 varnish', +7688 silly get 'cache-control': 'max-age=300', +7688 silly get etag: 'W/"59adf245-12b0c"', +7688 silly get age: '46', +7688 silly get connection: 'keep-alive', +7688 silly get 'x-served-by': 'cache-sin18025-SIN', +7688 silly get 'x-cache': 'HIT', +7688 silly get 'x-cache-hits': '1', +7688 silly get 'x-timer': 'S1506936848.262464,VS0,VE1', +7688 silly get vary: 'Accept-Encoding, Accept' } ] +7689 verbose etag https://registry.npmjs.org/istanbul-lib-instrument from cache +7690 verbose get saving istanbul-lib-instrument to /home/wso2/.npm/registry.npmjs.org/istanbul-lib-instrument/.cache.json +7691 http 200 https://registry.npmjs.org/find-up +7692 verbose headers { server: 'nginx/1.10.3', +7692 verbose headers 'content-type': 'application/json', +7692 verbose headers 'last-modified': 'Tue, 12 Sep 2017 03:30:14 GMT', +7692 verbose headers etag: 'W/"59b754c6-2bcb"', +7692 verbose headers 'content-encoding': 'gzip', +7692 verbose headers 'cache-control': 'max-age=300', +7692 verbose headers 'content-length': '2303', +7692 verbose headers 'accept-ranges': 'bytes', +7692 verbose headers date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7692 verbose headers via: '1.1 varnish', +7692 verbose headers age: '222', +7692 verbose headers connection: 'keep-alive', +7692 verbose headers 'x-served-by': 'cache-sin18035-SIN', +7692 verbose headers 'x-cache': 'HIT', +7692 verbose headers 'x-cache-hits': '8', +7692 verbose headers 'x-timer': 'S1506936848.262644,VS0,VE0', +7692 verbose headers vary: 'Accept-Encoding, Accept' } +7693 silly get cb [ 200, +7693 silly get { server: 'nginx/1.10.3', +7693 silly get 'content-type': 'application/json', +7693 silly get 'last-modified': 'Tue, 12 Sep 2017 03:30:14 GMT', +7693 silly get etag: 'W/"59b754c6-2bcb"', +7693 silly get 'content-encoding': 'gzip', +7693 silly get 'cache-control': 'max-age=300', +7693 silly get 'content-length': '2303', +7693 silly get 'accept-ranges': 'bytes', +7693 silly get date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7693 silly get via: '1.1 varnish', +7693 silly get age: '222', +7693 silly get connection: 'keep-alive', +7693 silly get 'x-served-by': 'cache-sin18035-SIN', +7693 silly get 'x-cache': 'HIT', +7693 silly get 'x-cache-hits': '8', +7693 silly get 'x-timer': 'S1506936848.262644,VS0,VE0', +7693 silly get vary: 'Accept-Encoding, Accept' } ] +7694 verbose get saving find-up to /home/wso2/.npm/registry.npmjs.org/find-up/.cache.json +7695 verbose get https://registry.npmjs.org/test-exclude not expired, no request +7696 silly addNameRange number 2 { name: 'test-exclude', range: '>=4.1.1 <5.0.0', hasData: true } +7697 silly addNameRange versions [ 'test-exclude', +7697 silly addNameRange [ '1.0.0', +7697 silly addNameRange '1.1.0', +7697 silly addNameRange '2.0.0', +7697 silly addNameRange '2.1.0', +7697 silly addNameRange '2.1.1', +7697 silly addNameRange '2.1.2', +7697 silly addNameRange '2.1.3', +7697 silly addNameRange '3.0.0', +7697 silly addNameRange '3.1.0', +7697 silly addNameRange '3.2.0', +7697 silly addNameRange '3.2.1', +7697 silly addNameRange '3.2.2', +7697 silly addNameRange '3.3.0', +7697 silly addNameRange '4.0.0', +7697 silly addNameRange '4.0.1', +7697 silly addNameRange '4.0.2', +7697 silly addNameRange '4.0.3', +7697 silly addNameRange '4.1.0', +7697 silly addNameRange '4.1.1' ] ] +7698 silly addNamed test-exclude@4.1.1 +7699 verbose addNamed "4.1.1" is a plain semver version for test-exclude +7700 silly resolveWithNewModule istanbul-lib-instrument@1.8.0 checking installable status +7701 silly cache add args [ 'istanbul-lib-instrument@^1.7.5', null ] +7702 verbose cache add spec istanbul-lib-instrument@^1.7.5 +7703 silly cache add parsed spec Result { +7703 silly cache add raw: 'istanbul-lib-instrument@^1.7.5', +7703 silly cache add scope: null, +7703 silly cache add name: 'istanbul-lib-instrument', +7703 silly cache add rawSpec: '^1.7.5', +7703 silly cache add spec: '>=1.7.5 <2.0.0', +7703 silly cache add type: 'range' } +7704 silly addNamed istanbul-lib-instrument@>=1.7.5 <2.0.0 +7705 verbose addNamed ">=1.7.5 <2.0.0" is a valid semver range for istanbul-lib-instrument +7706 silly addNameRange { name: 'istanbul-lib-instrument', +7706 silly addNameRange range: '>=1.7.5 <2.0.0', +7706 silly addNameRange hasData: false } +7707 silly mapToRegistry name istanbul-lib-instrument +7708 silly mapToRegistry using default registry +7709 silly mapToRegistry registry https://registry.npmjs.org/ +7710 silly mapToRegistry uri https://registry.npmjs.org/istanbul-lib-instrument +7711 verbose addNameRange registry:https://registry.npmjs.org/istanbul-lib-instrument not in flight; fetching +7712 silly resolveWithNewModule find-up@2.1.0 checking installable status +7713 silly cache add args [ 'find-up@^2.1.0', null ] +7714 verbose cache add spec find-up@^2.1.0 +7715 silly cache add parsed spec Result { +7715 silly cache add raw: 'find-up@^2.1.0', +7715 silly cache add scope: null, +7715 silly cache add name: 'find-up', +7715 silly cache add rawSpec: '^2.1.0', +7715 silly cache add spec: '>=2.1.0 <3.0.0', +7715 silly cache add type: 'range' } +7716 silly addNamed find-up@>=2.1.0 <3.0.0 +7717 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for find-up +7718 silly addNameRange { name: 'find-up', range: '>=2.1.0 <3.0.0', hasData: false } +7719 silly mapToRegistry name find-up +7720 silly mapToRegistry using default registry +7721 silly mapToRegistry registry https://registry.npmjs.org/ +7722 silly mapToRegistry uri https://registry.npmjs.org/find-up +7723 verbose addNameRange registry:https://registry.npmjs.org/find-up not in flight; fetching +7724 silly cache afterAdd test-exclude@4.1.1 +7725 verbose afterAdd /home/wso2/.npm/test-exclude/4.1.1/package/package.json not in flight; writing +7726 verbose get https://registry.npmjs.org/istanbul-lib-instrument not expired, no request +7727 silly addNameRange number 2 { name: 'istanbul-lib-instrument', +7727 silly addNameRange range: '>=1.7.5 <2.0.0', +7727 silly addNameRange hasData: true } +7728 silly addNameRange versions [ 'istanbul-lib-instrument', +7728 silly addNameRange [ '1.0.0-alpha.0', +7728 silly addNameRange '1.0.0-alpha.1', +7728 silly addNameRange '1.0.0-alpha.2', +7728 silly addNameRange '1.0.0-alpha.3', +7728 silly addNameRange '1.0.0-alpha.4', +7728 silly addNameRange '1.0.0-alpha.5', +7728 silly addNameRange '1.0.0-alpha.6', +7728 silly addNameRange '1.1.0-alpha.0', +7728 silly addNameRange '1.1.0-alpha.1', +7728 silly addNameRange '1.1.0-alpha.2', +7728 silly addNameRange '1.1.0-alpha.3', +7728 silly addNameRange '1.1.0-alpha.4', +7728 silly addNameRange '1.1.0', +7728 silly addNameRange '1.1.1', +7728 silly addNameRange '1.1.2', +7728 silly addNameRange '1.1.3', +7728 silly addNameRange '1.1.4', +7728 silly addNameRange '1.2.0', +7728 silly addNameRange '1.3.0', +7728 silly addNameRange '1.3.1', +7728 silly addNameRange '1.4.0-candidate.0', +7728 silly addNameRange '1.4.0', +7728 silly addNameRange '1.4.1', +7728 silly addNameRange '1.4.2', +7728 silly addNameRange '1.5.0', +7728 silly addNameRange '1.6.0', +7728 silly addNameRange '1.6.1', +7728 silly addNameRange '1.6.2', +7728 silly addNameRange '1.7.0', +7728 silly addNameRange '1.7.1', +7728 silly addNameRange '1.7.2', +7728 silly addNameRange '1.7.3', +7728 silly addNameRange '1.7.4', +7728 silly addNameRange '1.7.5', +7728 silly addNameRange '1.8.0' ] ] +7729 silly addNamed istanbul-lib-instrument@1.8.0 +7730 verbose addNamed "1.8.0" is a plain semver version for istanbul-lib-instrument +7731 verbose get https://registry.npmjs.org/find-up not expired, no request +7732 silly addNameRange number 2 { name: 'find-up', range: '>=2.1.0 <3.0.0', hasData: true } +7733 silly addNameRange versions [ 'find-up', +7733 silly addNameRange [ '1.0.0', '1.1.0', '1.1.1', '1.1.2', '2.0.0', '2.1.0' ] ] +7734 silly addNamed find-up@2.1.0 +7735 verbose addNamed "2.1.0" is a plain semver version for find-up +7736 verbose afterAdd /home/wso2/.npm/test-exclude/4.1.1/package/package.json written +7737 silly cache afterAdd istanbul-lib-instrument@1.8.0 +7738 verbose afterAdd /home/wso2/.npm/istanbul-lib-instrument/1.8.0/package/package.json not in flight; writing +7739 silly cache afterAdd find-up@2.1.0 +7740 verbose afterAdd /home/wso2/.npm/find-up/2.1.0/package/package.json not in flight; writing +7741 verbose afterAdd /home/wso2/.npm/istanbul-lib-instrument/1.8.0/package/package.json written +7742 verbose afterAdd /home/wso2/.npm/find-up/2.1.0/package/package.json written +7743 silly fetchNamedPackageData locate-path +7744 silly mapToRegistry name locate-path +7745 silly mapToRegistry using default registry +7746 silly mapToRegistry registry https://registry.npmjs.org/ +7747 silly mapToRegistry uri https://registry.npmjs.org/locate-path +7748 verbose request uri https://registry.npmjs.org/locate-path +7749 verbose request no auth needed +7750 info attempt registry request try #1 at 3:04:08 PM +7751 verbose etag W/"595ba986-1ac3" +7752 verbose lastModified Tue, 04 Jul 2017 14:43:18 GMT +7753 http request GET https://registry.npmjs.org/locate-path +7754 http 304 https://registry.npmjs.org/locate-path +7755 verbose headers { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7755 verbose headers via: '1.1 varnish', +7755 verbose headers 'cache-control': 'max-age=300', +7755 verbose headers etag: 'W/"595ba986-1ac3"', +7755 verbose headers age: '163', +7755 verbose headers connection: 'keep-alive', +7755 verbose headers 'x-served-by': 'cache-sin18031-SIN', +7755 verbose headers 'x-cache': 'HIT', +7755 verbose headers 'x-cache-hits': '2', +7755 verbose headers 'x-timer': 'S1506936849.504161,VS0,VE0', +7755 verbose headers vary: 'Accept-Encoding, Accept' } +7756 silly get cb [ 304, +7756 silly get { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7756 silly get via: '1.1 varnish', +7756 silly get 'cache-control': 'max-age=300', +7756 silly get etag: 'W/"595ba986-1ac3"', +7756 silly get age: '163', +7756 silly get connection: 'keep-alive', +7756 silly get 'x-served-by': 'cache-sin18031-SIN', +7756 silly get 'x-cache': 'HIT', +7756 silly get 'x-cache-hits': '2', +7756 silly get 'x-timer': 'S1506936849.504161,VS0,VE0', +7756 silly get vary: 'Accept-Encoding, Accept' } ] +7757 verbose etag https://registry.npmjs.org/locate-path from cache +7758 verbose get saving locate-path to /home/wso2/.npm/registry.npmjs.org/locate-path/.cache.json +7759 silly resolveWithNewModule locate-path@2.0.0 checking installable status +7760 silly cache add args [ 'locate-path@^2.0.0', null ] +7761 verbose cache add spec locate-path@^2.0.0 +7762 silly cache add parsed spec Result { +7762 silly cache add raw: 'locate-path@^2.0.0', +7762 silly cache add scope: null, +7762 silly cache add name: 'locate-path', +7762 silly cache add rawSpec: '^2.0.0', +7762 silly cache add spec: '>=2.0.0 <3.0.0', +7762 silly cache add type: 'range' } +7763 silly addNamed locate-path@>=2.0.0 <3.0.0 +7764 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for locate-path +7765 silly addNameRange { name: 'locate-path', range: '>=2.0.0 <3.0.0', hasData: false } +7766 silly mapToRegistry name locate-path +7767 silly mapToRegistry using default registry +7768 silly mapToRegistry registry https://registry.npmjs.org/ +7769 silly mapToRegistry uri https://registry.npmjs.org/locate-path +7770 verbose addNameRange registry:https://registry.npmjs.org/locate-path not in flight; fetching +7771 verbose get https://registry.npmjs.org/locate-path not expired, no request +7772 silly addNameRange number 2 { name: 'locate-path', range: '>=2.0.0 <3.0.0', hasData: true } +7773 silly addNameRange versions [ 'locate-path', [ '1.0.0', '1.1.0', '2.0.0' ] ] +7774 silly addNamed locate-path@2.0.0 +7775 verbose addNamed "2.0.0" is a plain semver version for locate-path +7776 silly cache afterAdd locate-path@2.0.0 +7777 verbose afterAdd /home/wso2/.npm/locate-path/2.0.0/package/package.json not in flight; writing +7778 verbose afterAdd /home/wso2/.npm/locate-path/2.0.0/package/package.json written +7779 silly fetchNamedPackageData p-locate +7780 silly mapToRegistry name p-locate +7781 silly mapToRegistry using default registry +7782 silly mapToRegistry registry https://registry.npmjs.org/ +7783 silly mapToRegistry uri https://registry.npmjs.org/p-locate +7784 silly fetchNamedPackageData path-exists +7785 silly mapToRegistry name path-exists +7786 silly mapToRegistry using default registry +7787 silly mapToRegistry registry https://registry.npmjs.org/ +7788 silly mapToRegistry uri https://registry.npmjs.org/path-exists +7789 verbose request uri https://registry.npmjs.org/p-locate +7790 verbose request no auth needed +7791 info attempt registry request try #1 at 3:04:08 PM +7792 verbose etag W/"59a80ea1-1814" +7793 verbose lastModified Thu, 31 Aug 2017 13:26:57 GMT +7794 http request GET https://registry.npmjs.org/p-locate +7795 verbose request uri https://registry.npmjs.org/path-exists +7796 verbose request no auth needed +7797 info attempt registry request try #1 at 3:04:08 PM +7798 verbose etag W/"5902ec72-1c2f" +7799 verbose lastModified Fri, 28 Apr 2017 07:17:06 GMT +7800 http request GET https://registry.npmjs.org/path-exists +7801 http 304 https://registry.npmjs.org/path-exists +7802 verbose headers { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7802 verbose headers via: '1.1 varnish', +7802 verbose headers 'cache-control': 'max-age=300', +7802 verbose headers etag: 'W/"5902ec72-1c2f"', +7802 verbose headers age: '4', +7802 verbose headers connection: 'keep-alive', +7802 verbose headers 'x-served-by': 'cache-sin18027-SIN', +7802 verbose headers 'x-cache': 'HIT', +7802 verbose headers 'x-cache-hits': '1', +7802 verbose headers 'x-timer': 'S1506936849.726276,VS0,VE0', +7802 verbose headers vary: 'Accept-Encoding, Accept' } +7803 silly get cb [ 304, +7803 silly get { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7803 silly get via: '1.1 varnish', +7803 silly get 'cache-control': 'max-age=300', +7803 silly get etag: 'W/"5902ec72-1c2f"', +7803 silly get age: '4', +7803 silly get connection: 'keep-alive', +7803 silly get 'x-served-by': 'cache-sin18027-SIN', +7803 silly get 'x-cache': 'HIT', +7803 silly get 'x-cache-hits': '1', +7803 silly get 'x-timer': 'S1506936849.726276,VS0,VE0', +7803 silly get vary: 'Accept-Encoding, Accept' } ] +7804 verbose etag https://registry.npmjs.org/path-exists from cache +7805 verbose get saving path-exists to /home/wso2/.npm/registry.npmjs.org/path-exists/.cache.json +7806 silly resolveWithNewModule path-exists@3.0.0 checking installable status +7807 silly cache add args [ 'path-exists@^3.0.0', null ] +7808 verbose cache add spec path-exists@^3.0.0 +7809 silly cache add parsed spec Result { +7809 silly cache add raw: 'path-exists@^3.0.0', +7809 silly cache add scope: null, +7809 silly cache add name: 'path-exists', +7809 silly cache add rawSpec: '^3.0.0', +7809 silly cache add spec: '>=3.0.0 <4.0.0', +7809 silly cache add type: 'range' } +7810 silly addNamed path-exists@>=3.0.0 <4.0.0 +7811 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for path-exists +7812 silly addNameRange { name: 'path-exists', range: '>=3.0.0 <4.0.0', hasData: false } +7813 silly mapToRegistry name path-exists +7814 silly mapToRegistry using default registry +7815 silly mapToRegistry registry https://registry.npmjs.org/ +7816 silly mapToRegistry uri https://registry.npmjs.org/path-exists +7817 verbose addNameRange registry:https://registry.npmjs.org/path-exists not in flight; fetching +7818 http 304 https://registry.npmjs.org/p-locate +7819 verbose headers { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7819 verbose headers via: '1.1 varnish', +7819 verbose headers 'cache-control': 'max-age=300', +7819 verbose headers etag: 'W/"59a80ea1-1814"', +7819 verbose headers age: '132', +7819 verbose headers connection: 'keep-alive', +7819 verbose headers 'x-served-by': 'cache-sin18025-SIN', +7819 verbose headers 'x-cache': 'HIT', +7819 verbose headers 'x-cache-hits': '2', +7819 verbose headers 'x-timer': 'S1506936849.733242,VS0,VE0', +7819 verbose headers vary: 'Accept-Encoding, Accept' } +7820 silly get cb [ 304, +7820 silly get { date: 'Mon, 02 Oct 2017 09:34:08 GMT', +7820 silly get via: '1.1 varnish', +7820 silly get 'cache-control': 'max-age=300', +7820 silly get etag: 'W/"59a80ea1-1814"', +7820 silly get age: '132', +7820 silly get connection: 'keep-alive', +7820 silly get 'x-served-by': 'cache-sin18025-SIN', +7820 silly get 'x-cache': 'HIT', +7820 silly get 'x-cache-hits': '2', +7820 silly get 'x-timer': 'S1506936849.733242,VS0,VE0', +7820 silly get vary: 'Accept-Encoding, Accept' } ] +7821 verbose etag https://registry.npmjs.org/p-locate from cache +7822 verbose get saving p-locate to /home/wso2/.npm/registry.npmjs.org/p-locate/.cache.json +7823 verbose get https://registry.npmjs.org/path-exists not expired, no request +7824 silly addNameRange number 2 { name: 'path-exists', range: '>=3.0.0 <4.0.0', hasData: true } +7825 silly addNameRange versions [ 'path-exists', [ '1.0.0', '2.0.0', '2.1.0', '3.0.0' ] ] +7826 silly addNamed path-exists@3.0.0 +7827 verbose addNamed "3.0.0" is a plain semver version for path-exists +7828 silly resolveWithNewModule p-locate@2.0.0 checking installable status +7829 silly cache add args [ 'p-locate@^2.0.0', null ] +7830 verbose cache add spec p-locate@^2.0.0 +7831 silly cache add parsed spec Result { +7831 silly cache add raw: 'p-locate@^2.0.0', +7831 silly cache add scope: null, +7831 silly cache add name: 'p-locate', +7831 silly cache add rawSpec: '^2.0.0', +7831 silly cache add spec: '>=2.0.0 <3.0.0', +7831 silly cache add type: 'range' } +7832 silly addNamed p-locate@>=2.0.0 <3.0.0 +7833 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for p-locate +7834 silly addNameRange { name: 'p-locate', range: '>=2.0.0 <3.0.0', hasData: false } +7835 silly mapToRegistry name p-locate +7836 silly mapToRegistry using default registry +7837 silly mapToRegistry registry https://registry.npmjs.org/ +7838 silly mapToRegistry uri https://registry.npmjs.org/p-locate +7839 verbose addNameRange registry:https://registry.npmjs.org/p-locate not in flight; fetching +7840 verbose get https://registry.npmjs.org/p-locate not expired, no request +7841 silly addNameRange number 2 { name: 'p-locate', range: '>=2.0.0 <3.0.0', hasData: true } +7842 silly addNameRange versions [ 'p-locate', [ '1.0.0', '2.0.0' ] ] +7843 silly addNamed p-locate@2.0.0 +7844 verbose addNamed "2.0.0" is a plain semver version for p-locate +7845 silly cache afterAdd path-exists@3.0.0 +7846 verbose afterAdd /home/wso2/.npm/path-exists/3.0.0/package/package.json not in flight; writing +7847 verbose afterAdd /home/wso2/.npm/path-exists/3.0.0/package/package.json written +7848 silly cache afterAdd p-locate@2.0.0 +7849 verbose afterAdd /home/wso2/.npm/p-locate/2.0.0/package/package.json not in flight; writing +7850 verbose afterAdd /home/wso2/.npm/p-locate/2.0.0/package/package.json written +7851 silly fetchNamedPackageData p-limit +7852 silly mapToRegistry name p-limit +7853 silly mapToRegistry using default registry +7854 silly mapToRegistry registry https://registry.npmjs.org/ +7855 silly mapToRegistry uri https://registry.npmjs.org/p-limit +7856 verbose request uri https://registry.npmjs.org/p-limit +7857 verbose request no auth needed +7858 info attempt registry request try #1 at 3:04:08 PM +7859 verbose etag W/"59a80eb6-14e1" +7860 verbose lastModified Thu, 31 Aug 2017 13:27:18 GMT +7861 http request GET https://registry.npmjs.org/p-limit +7862 http 304 https://registry.npmjs.org/p-limit +7863 verbose headers { date: 'Mon, 02 Oct 2017 09:34:09 GMT', +7863 verbose headers via: '1.1 varnish', +7863 verbose headers 'cache-control': 'max-age=300', +7863 verbose headers etag: 'W/"59a80eb6-14e1"', +7863 verbose headers age: '102', +7863 verbose headers connection: 'keep-alive', +7863 verbose headers 'x-served-by': 'cache-sin18035-SIN', +7863 verbose headers 'x-cache': 'HIT', +7863 verbose headers 'x-cache-hits': '2', +7863 verbose headers 'x-timer': 'S1506936849.193279,VS0,VE0', +7863 verbose headers vary: 'Accept-Encoding, Accept' } +7864 silly get cb [ 304, +7864 silly get { date: 'Mon, 02 Oct 2017 09:34:09 GMT', +7864 silly get via: '1.1 varnish', +7864 silly get 'cache-control': 'max-age=300', +7864 silly get etag: 'W/"59a80eb6-14e1"', +7864 silly get age: '102', +7864 silly get connection: 'keep-alive', +7864 silly get 'x-served-by': 'cache-sin18035-SIN', +7864 silly get 'x-cache': 'HIT', +7864 silly get 'x-cache-hits': '2', +7864 silly get 'x-timer': 'S1506936849.193279,VS0,VE0', +7864 silly get vary: 'Accept-Encoding, Accept' } ] +7865 verbose etag https://registry.npmjs.org/p-limit from cache +7866 verbose get saving p-limit to /home/wso2/.npm/registry.npmjs.org/p-limit/.cache.json +7867 silly resolveWithNewModule p-limit@1.1.0 checking installable status +7868 silly cache add args [ 'p-limit@^1.1.0', null ] +7869 verbose cache add spec p-limit@^1.1.0 +7870 silly cache add parsed spec Result { +7870 silly cache add raw: 'p-limit@^1.1.0', +7870 silly cache add scope: null, +7870 silly cache add name: 'p-limit', +7870 silly cache add rawSpec: '^1.1.0', +7870 silly cache add spec: '>=1.1.0 <2.0.0', +7870 silly cache add type: 'range' } +7871 silly addNamed p-limit@>=1.1.0 <2.0.0 +7872 verbose addNamed ">=1.1.0 <2.0.0" is a valid semver range for p-limit +7873 silly addNameRange { name: 'p-limit', range: '>=1.1.0 <2.0.0', hasData: false } +7874 silly mapToRegistry name p-limit +7875 silly mapToRegistry using default registry +7876 silly mapToRegistry registry https://registry.npmjs.org/ +7877 silly mapToRegistry uri https://registry.npmjs.org/p-limit +7878 verbose addNameRange registry:https://registry.npmjs.org/p-limit not in flight; fetching +7879 verbose get https://registry.npmjs.org/p-limit not expired, no request +7880 silly addNameRange number 2 { name: 'p-limit', range: '>=1.1.0 <2.0.0', hasData: true } +7881 silly addNameRange versions [ 'p-limit', [ '1.0.0', '1.1.0' ] ] +7882 silly addNamed p-limit@1.1.0 +7883 verbose addNamed "1.1.0" is a plain semver version for p-limit +7884 silly cache afterAdd p-limit@1.1.0 +7885 verbose afterAdd /home/wso2/.npm/p-limit/1.1.0/package/package.json not in flight; writing +7886 verbose afterAdd /home/wso2/.npm/p-limit/1.1.0/package/package.json written +7887 silly fetchNamedPackageData istanbul-lib-coverage +7888 silly mapToRegistry name istanbul-lib-coverage +7889 silly mapToRegistry using default registry +7890 silly mapToRegistry registry https://registry.npmjs.org/ +7891 silly mapToRegistry uri https://registry.npmjs.org/istanbul-lib-coverage +7892 verbose request uri https://registry.npmjs.org/istanbul-lib-coverage +7893 verbose request no auth needed +7894 info attempt registry request try #1 at 3:04:09 PM +7895 verbose etag W/"5929ebd9-4984" +7896 verbose lastModified Sat, 27 May 2017 21:12:57 GMT +7897 http request GET https://registry.npmjs.org/istanbul-lib-coverage +7898 http 304 https://registry.npmjs.org/istanbul-lib-coverage +7899 verbose headers { date: 'Mon, 02 Oct 2017 09:34:10 GMT', +7899 verbose headers via: '1.1 varnish', +7899 verbose headers 'cache-control': 'max-age=300', +7899 verbose headers etag: 'W/"5929ebd9-4984"', +7899 verbose headers age: '75', +7899 verbose headers connection: 'keep-alive', +7899 verbose headers 'x-served-by': 'cache-jfk8138-JFK', +7899 verbose headers 'x-cache': 'HIT', +7899 verbose headers 'x-cache-hits': '1', +7899 verbose headers 'x-timer': 'S1506936850.132886,VS0,VE0', +7899 verbose headers vary: 'Accept-Encoding, Accept' } +7900 silly get cb [ 304, +7900 silly get { date: 'Mon, 02 Oct 2017 09:34:10 GMT', +7900 silly get via: '1.1 varnish', +7900 silly get 'cache-control': 'max-age=300', +7900 silly get etag: 'W/"5929ebd9-4984"', +7900 silly get age: '75', +7900 silly get connection: 'keep-alive', +7900 silly get 'x-served-by': 'cache-jfk8138-JFK', +7900 silly get 'x-cache': 'HIT', +7900 silly get 'x-cache-hits': '1', +7900 silly get 'x-timer': 'S1506936850.132886,VS0,VE0', +7900 silly get vary: 'Accept-Encoding, Accept' } ] +7901 verbose etag https://registry.npmjs.org/istanbul-lib-coverage from cache +7902 verbose get saving istanbul-lib-coverage to /home/wso2/.npm/registry.npmjs.org/istanbul-lib-coverage/.cache.json +7903 silly resolveWithNewModule istanbul-lib-coverage@1.1.1 checking installable status +7904 silly cache add args [ 'istanbul-lib-coverage@^1.1.1', null ] +7905 verbose cache add spec istanbul-lib-coverage@^1.1.1 +7906 silly cache add parsed spec Result { +7906 silly cache add raw: 'istanbul-lib-coverage@^1.1.1', +7906 silly cache add scope: null, +7906 silly cache add name: 'istanbul-lib-coverage', +7906 silly cache add rawSpec: '^1.1.1', +7906 silly cache add spec: '>=1.1.1 <2.0.0', +7906 silly cache add type: 'range' } +7907 silly addNamed istanbul-lib-coverage@>=1.1.1 <2.0.0 +7908 verbose addNamed ">=1.1.1 <2.0.0" is a valid semver range for istanbul-lib-coverage +7909 silly addNameRange { name: 'istanbul-lib-coverage', +7909 silly addNameRange range: '>=1.1.1 <2.0.0', +7909 silly addNameRange hasData: false } +7910 silly mapToRegistry name istanbul-lib-coverage +7911 silly mapToRegistry using default registry +7912 silly mapToRegistry registry https://registry.npmjs.org/ +7913 silly mapToRegistry uri https://registry.npmjs.org/istanbul-lib-coverage +7914 verbose addNameRange registry:https://registry.npmjs.org/istanbul-lib-coverage not in flight; fetching +7915 verbose get https://registry.npmjs.org/istanbul-lib-coverage not expired, no request +7916 silly addNameRange number 2 { name: 'istanbul-lib-coverage', +7916 silly addNameRange range: '>=1.1.1 <2.0.0', +7916 silly addNameRange hasData: true } +7917 silly addNameRange versions [ 'istanbul-lib-coverage', +7917 silly addNameRange [ '1.0.0-alpha.0', +7917 silly addNameRange '1.0.0-alpha.1', +7917 silly addNameRange '1.0.0-alpha.2', +7917 silly addNameRange '1.0.0-alpha.3', +7917 silly addNameRange '1.0.0-alpha.4', +7917 silly addNameRange '1.0.0', +7917 silly addNameRange '1.0.1', +7917 silly addNameRange '1.0.2', +7917 silly addNameRange '1.1.0', +7917 silly addNameRange '1.1.1' ] ] +7918 silly addNamed istanbul-lib-coverage@1.1.1 +7919 verbose addNamed "1.1.1" is a plain semver version for istanbul-lib-coverage +7920 silly cache afterAdd istanbul-lib-coverage@1.1.1 +7921 verbose afterAdd /home/wso2/.npm/istanbul-lib-coverage/1.1.1/package/package.json not in flight; writing +7922 verbose afterAdd /home/wso2/.npm/istanbul-lib-coverage/1.1.1/package/package.json written +7923 silly fetchNamedPackageData arrify +7924 silly mapToRegistry name arrify +7925 silly mapToRegistry using default registry +7926 silly mapToRegistry registry https://registry.npmjs.org/ +7927 silly mapToRegistry uri https://registry.npmjs.org/arrify +7928 silly fetchNamedPackageData micromatch +7929 silly mapToRegistry name micromatch +7930 silly mapToRegistry using default registry +7931 silly mapToRegistry registry https://registry.npmjs.org/ +7932 silly mapToRegistry uri https://registry.npmjs.org/micromatch +7933 silly fetchNamedPackageData read-pkg-up +7934 silly mapToRegistry name read-pkg-up +7935 silly mapToRegistry using default registry +7936 silly mapToRegistry registry https://registry.npmjs.org/ +7937 silly mapToRegistry uri https://registry.npmjs.org/read-pkg-up +7938 silly fetchNamedPackageData require-main-filename +7939 silly mapToRegistry name require-main-filename +7940 silly mapToRegistry using default registry +7941 silly mapToRegistry registry https://registry.npmjs.org/ +7942 silly mapToRegistry uri https://registry.npmjs.org/require-main-filename +7943 verbose request uri https://registry.npmjs.org/read-pkg-up +7944 verbose request no auth needed +7945 info attempt registry request try #1 at 3:04:10 PM +7946 verbose etag W/"595bbb9b-1696" +7947 verbose lastModified Tue, 04 Jul 2017 16:00:27 GMT +7948 http request GET https://registry.npmjs.org/read-pkg-up +7949 verbose request uri https://registry.npmjs.org/arrify +7950 verbose request no auth needed +7951 info attempt registry request try #1 at 3:04:10 PM +7952 verbose etag W/"58bbf3ac-dfc" +7953 verbose lastModified Sun, 05 Mar 2017 11:17:00 GMT +7954 http request GET https://registry.npmjs.org/arrify +7955 verbose request uri https://registry.npmjs.org/require-main-filename +7956 verbose request no auth needed +7957 info attempt registry request try #1 at 3:04:10 PM +7958 verbose etag W/"56c40b30-10fb" +7959 verbose lastModified Wed, 17 Feb 2016 05:54:56 GMT +7960 http request GET https://registry.npmjs.org/require-main-filename +7961 verbose request uri https://registry.npmjs.org/micromatch +7962 verbose request no auth needed +7963 info attempt registry request try #1 at 3:04:10 PM +7964 verbose etag W/"59b1fe47-23ddc" +7965 verbose lastModified Fri, 08 Sep 2017 02:19:51 GMT +7966 http request GET https://registry.npmjs.org/micromatch +7967 http 304 https://registry.npmjs.org/require-main-filename +7968 verbose headers { date: 'Mon, 02 Oct 2017 09:34:11 GMT', +7968 verbose headers via: '1.1 varnish', +7968 verbose headers 'cache-control': 'max-age=300', +7968 verbose headers etag: 'W/"56c40b30-10fb"', +7968 verbose headers age: '115', +7968 verbose headers connection: 'keep-alive', +7968 verbose headers 'x-served-by': 'cache-jfk8138-JFK', +7968 verbose headers 'x-cache': 'HIT', +7968 verbose headers 'x-cache-hits': '2', +7968 verbose headers 'x-timer': 'S1506936851.282719,VS0,VE0', +7968 verbose headers vary: 'Accept-Encoding, Accept' } +7969 silly get cb [ 304, +7969 silly get { date: 'Mon, 02 Oct 2017 09:34:11 GMT', +7969 silly get via: '1.1 varnish', +7969 silly get 'cache-control': 'max-age=300', +7969 silly get etag: 'W/"56c40b30-10fb"', +7969 silly get age: '115', +7969 silly get connection: 'keep-alive', +7969 silly get 'x-served-by': 'cache-jfk8138-JFK', +7969 silly get 'x-cache': 'HIT', +7969 silly get 'x-cache-hits': '2', +7969 silly get 'x-timer': 'S1506936851.282719,VS0,VE0', +7969 silly get vary: 'Accept-Encoding, Accept' } ] +7970 verbose etag https://registry.npmjs.org/require-main-filename from cache +7971 verbose get saving require-main-filename to /home/wso2/.npm/registry.npmjs.org/require-main-filename/.cache.json +7972 silly resolveWithNewModule require-main-filename@1.0.1 checking installable status +7973 silly cache add args [ 'require-main-filename@^1.0.1', null ] +7974 verbose cache add spec require-main-filename@^1.0.1 +7975 silly cache add parsed spec Result { +7975 silly cache add raw: 'require-main-filename@^1.0.1', +7975 silly cache add scope: null, +7975 silly cache add name: 'require-main-filename', +7975 silly cache add rawSpec: '^1.0.1', +7975 silly cache add spec: '>=1.0.1 <2.0.0', +7975 silly cache add type: 'range' } +7976 silly addNamed require-main-filename@>=1.0.1 <2.0.0 +7977 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for require-main-filename +7978 silly addNameRange { name: 'require-main-filename', +7978 silly addNameRange range: '>=1.0.1 <2.0.0', +7978 silly addNameRange hasData: false } +7979 silly mapToRegistry name require-main-filename +7980 silly mapToRegistry using default registry +7981 silly mapToRegistry registry https://registry.npmjs.org/ +7982 silly mapToRegistry uri https://registry.npmjs.org/require-main-filename +7983 verbose addNameRange registry:https://registry.npmjs.org/require-main-filename not in flight; fetching +7984 verbose get https://registry.npmjs.org/require-main-filename not expired, no request +7985 silly addNameRange number 2 { name: 'require-main-filename', +7985 silly addNameRange range: '>=1.0.1 <2.0.0', +7985 silly addNameRange hasData: true } +7986 silly addNameRange versions [ 'require-main-filename', [ '1.0.0', '1.0.1' ] ] +7987 silly addNamed require-main-filename@1.0.1 +7988 verbose addNamed "1.0.1" is a plain semver version for require-main-filename +7989 silly cache afterAdd require-main-filename@1.0.1 +7990 verbose afterAdd /home/wso2/.npm/require-main-filename/1.0.1/package/package.json not in flight; writing +7991 verbose afterAdd /home/wso2/.npm/require-main-filename/1.0.1/package/package.json written +7992 http 304 https://registry.npmjs.org/read-pkg-up +7993 verbose headers { date: 'Mon, 02 Oct 2017 09:34:11 GMT', +7993 verbose headers via: '1.1 varnish', +7993 verbose headers 'cache-control': 'max-age=300', +7993 verbose headers etag: 'W/"595bbb9b-1696"', +7993 verbose headers age: '225', +7993 verbose headers connection: 'keep-alive', +7993 verbose headers 'x-served-by': 'cache-jfk8122-JFK', +7993 verbose headers 'x-cache': 'HIT', +7993 verbose headers 'x-cache-hits': '1', +7993 verbose headers 'x-timer': 'S1506936851.289857,VS0,VE0', +7993 verbose headers vary: 'Accept-Encoding, Accept' } +7994 silly get cb [ 304, +7994 silly get { date: 'Mon, 02 Oct 2017 09:34:11 GMT', +7994 silly get via: '1.1 varnish', +7994 silly get 'cache-control': 'max-age=300', +7994 silly get etag: 'W/"595bbb9b-1696"', +7994 silly get age: '225', +7994 silly get connection: 'keep-alive', +7994 silly get 'x-served-by': 'cache-jfk8122-JFK', +7994 silly get 'x-cache': 'HIT', +7994 silly get 'x-cache-hits': '1', +7994 silly get 'x-timer': 'S1506936851.289857,VS0,VE0', +7994 silly get vary: 'Accept-Encoding, Accept' } ] +7995 verbose etag https://registry.npmjs.org/read-pkg-up from cache +7996 verbose get saving read-pkg-up to /home/wso2/.npm/registry.npmjs.org/read-pkg-up/.cache.json +7997 http 200 https://registry.npmjs.org/arrify +7998 verbose headers { server: 'nginx/1.10.1', +7998 verbose headers 'content-type': 'application/json', +7998 verbose headers 'last-modified': 'Sun, 01 Oct 2017 18:30:18 GMT', +7998 verbose headers etag: 'W/"59d1343a-e1e"', +7998 verbose headers 'content-encoding': 'gzip', +7998 verbose headers 'cache-control': 'max-age=300', +7998 verbose headers 'content-length': '1133', +7998 verbose headers 'accept-ranges': 'bytes', +7998 verbose headers date: 'Mon, 02 Oct 2017 09:34:11 GMT', +7998 verbose headers via: '1.1 varnish', +7998 verbose headers age: '228', +7998 verbose headers connection: 'keep-alive', +7998 verbose headers 'x-served-by': 'cache-jfk8120-JFK', +7998 verbose headers 'x-cache': 'HIT', +7998 verbose headers 'x-cache-hits': '4', +7998 verbose headers 'x-timer': 'S1506936851.289825,VS0,VE0', +7998 verbose headers vary: 'Accept-Encoding, Accept' } +7999 silly get cb [ 200, +7999 silly get { server: 'nginx/1.10.1', +7999 silly get 'content-type': 'application/json', +7999 silly get 'last-modified': 'Sun, 01 Oct 2017 18:30:18 GMT', +7999 silly get etag: 'W/"59d1343a-e1e"', +7999 silly get 'content-encoding': 'gzip', +7999 silly get 'cache-control': 'max-age=300', +7999 silly get 'content-length': '1133', +7999 silly get 'accept-ranges': 'bytes', +7999 silly get date: 'Mon, 02 Oct 2017 09:34:11 GMT', +7999 silly get via: '1.1 varnish', +7999 silly get age: '228', +7999 silly get connection: 'keep-alive', +7999 silly get 'x-served-by': 'cache-jfk8120-JFK', +7999 silly get 'x-cache': 'HIT', +7999 silly get 'x-cache-hits': '4', +7999 silly get 'x-timer': 'S1506936851.289825,VS0,VE0', +7999 silly get vary: 'Accept-Encoding, Accept' } ] +8000 verbose get saving arrify to /home/wso2/.npm/registry.npmjs.org/arrify/.cache.json +8001 silly resolveWithNewModule read-pkg-up@1.0.1 checking installable status +8002 silly cache add args [ 'read-pkg-up@^1.0.1', null ] +8003 verbose cache add spec read-pkg-up@^1.0.1 +8004 silly cache add parsed spec Result { +8004 silly cache add raw: 'read-pkg-up@^1.0.1', +8004 silly cache add scope: null, +8004 silly cache add name: 'read-pkg-up', +8004 silly cache add rawSpec: '^1.0.1', +8004 silly cache add spec: '>=1.0.1 <2.0.0', +8004 silly cache add type: 'range' } +8005 silly addNamed read-pkg-up@>=1.0.1 <2.0.0 +8006 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for read-pkg-up +8007 silly addNameRange { name: 'read-pkg-up', range: '>=1.0.1 <2.0.0', hasData: false } +8008 silly mapToRegistry name read-pkg-up +8009 silly mapToRegistry using default registry +8010 silly mapToRegistry registry https://registry.npmjs.org/ +8011 silly mapToRegistry uri https://registry.npmjs.org/read-pkg-up +8012 verbose addNameRange registry:https://registry.npmjs.org/read-pkg-up not in flight; fetching +8013 silly resolveWithNewModule arrify@1.0.1 checking installable status +8014 silly cache add args [ 'arrify@^1.0.1', null ] +8015 verbose cache add spec arrify@^1.0.1 +8016 silly cache add parsed spec Result { +8016 silly cache add raw: 'arrify@^1.0.1', +8016 silly cache add scope: null, +8016 silly cache add name: 'arrify', +8016 silly cache add rawSpec: '^1.0.1', +8016 silly cache add spec: '>=1.0.1 <2.0.0', +8016 silly cache add type: 'range' } +8017 silly addNamed arrify@>=1.0.1 <2.0.0 +8018 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for arrify +8019 silly addNameRange { name: 'arrify', range: '>=1.0.1 <2.0.0', hasData: false } +8020 silly mapToRegistry name arrify +8021 silly mapToRegistry using default registry +8022 silly mapToRegistry registry https://registry.npmjs.org/ +8023 silly mapToRegistry uri https://registry.npmjs.org/arrify +8024 verbose addNameRange registry:https://registry.npmjs.org/arrify not in flight; fetching +8025 verbose get https://registry.npmjs.org/read-pkg-up not expired, no request +8026 silly addNameRange number 2 { name: 'read-pkg-up', range: '>=1.0.1 <2.0.0', hasData: true } +8027 silly addNameRange versions [ 'read-pkg-up', [ '1.0.1', '2.0.0' ] ] +8028 silly addNamed read-pkg-up@1.0.1 +8029 verbose addNamed "1.0.1" is a plain semver version for read-pkg-up +8030 verbose get https://registry.npmjs.org/arrify not expired, no request +8031 silly addNameRange number 2 { name: 'arrify', range: '>=1.0.1 <2.0.0', hasData: true } +8032 silly addNameRange versions [ 'arrify', [ '1.0.0', '1.0.1' ] ] +8033 silly addNamed arrify@1.0.1 +8034 verbose addNamed "1.0.1" is a plain semver version for arrify +8035 silly cache afterAdd arrify@1.0.1 +8036 verbose afterAdd /home/wso2/.npm/arrify/1.0.1/package/package.json not in flight; writing +8037 silly cache afterAdd read-pkg-up@1.0.1 +8038 verbose afterAdd /home/wso2/.npm/read-pkg-up/1.0.1/package/package.json not in flight; writing +8039 verbose afterAdd /home/wso2/.npm/read-pkg-up/1.0.1/package/package.json written +8040 verbose afterAdd /home/wso2/.npm/arrify/1.0.1/package/package.json written +8041 http 200 https://registry.npmjs.org/micromatch +8042 verbose headers { server: 'nginx/1.10.1', +8042 verbose headers 'content-type': 'application/json', +8042 verbose headers 'last-modified': 'Tue, 12 Sep 2017 10:07:34 GMT', +8042 verbose headers etag: 'W/"59b7b1e6-255ee"', +8042 verbose headers 'content-encoding': 'gzip', +8042 verbose headers 'cache-control': 'max-age=300', +8042 verbose headers 'content-length': '18968', +8042 verbose headers 'accept-ranges': 'bytes', +8042 verbose headers date: 'Mon, 02 Oct 2017 09:34:11 GMT', +8042 verbose headers via: '1.1 varnish', +8042 verbose headers age: '93', +8042 verbose headers connection: 'keep-alive', +8042 verbose headers 'x-served-by': 'cache-jfk8133-JFK', +8042 verbose headers 'x-cache': 'HIT', +8042 verbose headers 'x-cache-hits': '1648', +8042 verbose headers 'x-timer': 'S1506936851.285517,VS0,VE0', +8042 verbose headers vary: 'Accept-Encoding, Accept' } +8043 silly get cb [ 200, +8043 silly get { server: 'nginx/1.10.1', +8043 silly get 'content-type': 'application/json', +8043 silly get 'last-modified': 'Tue, 12 Sep 2017 10:07:34 GMT', +8043 silly get etag: 'W/"59b7b1e6-255ee"', +8043 silly get 'content-encoding': 'gzip', +8043 silly get 'cache-control': 'max-age=300', +8043 silly get 'content-length': '18968', +8043 silly get 'accept-ranges': 'bytes', +8043 silly get date: 'Mon, 02 Oct 2017 09:34:11 GMT', +8043 silly get via: '1.1 varnish', +8043 silly get age: '93', +8043 silly get connection: 'keep-alive', +8043 silly get 'x-served-by': 'cache-jfk8133-JFK', +8043 silly get 'x-cache': 'HIT', +8043 silly get 'x-cache-hits': '1648', +8043 silly get 'x-timer': 'S1506936851.285517,VS0,VE0', +8043 silly get vary: 'Accept-Encoding, Accept' } ] +8044 verbose get saving micromatch to /home/wso2/.npm/registry.npmjs.org/micromatch/.cache.json +8045 silly resolveWithNewModule micromatch@2.3.11 checking installable status +8046 silly cache add args [ 'micromatch@^2.3.11', null ] +8047 verbose cache add spec micromatch@^2.3.11 +8048 silly cache add parsed spec Result { +8048 silly cache add raw: 'micromatch@^2.3.11', +8048 silly cache add scope: null, +8048 silly cache add name: 'micromatch', +8048 silly cache add rawSpec: '^2.3.11', +8048 silly cache add spec: '>=2.3.11 <3.0.0', +8048 silly cache add type: 'range' } +8049 silly addNamed micromatch@>=2.3.11 <3.0.0 +8050 verbose addNamed ">=2.3.11 <3.0.0" is a valid semver range for micromatch +8051 silly addNameRange { name: 'micromatch', range: '>=2.3.11 <3.0.0', hasData: false } +8052 silly mapToRegistry name micromatch +8053 silly mapToRegistry using default registry +8054 silly mapToRegistry registry https://registry.npmjs.org/ +8055 silly mapToRegistry uri https://registry.npmjs.org/micromatch +8056 verbose addNameRange registry:https://registry.npmjs.org/micromatch not in flight; fetching +8057 verbose get https://registry.npmjs.org/micromatch not expired, no request +8058 silly addNameRange number 2 { name: 'micromatch', range: '>=2.3.11 <3.0.0', hasData: true } +8059 silly addNameRange versions [ 'micromatch', +8059 silly addNameRange [ '0.1.0', +8059 silly addNameRange '0.2.0', +8059 silly addNameRange '0.2.1', +8059 silly addNameRange '0.2.2', +8059 silly addNameRange '1.0.0', +8059 silly addNameRange '1.0.1', +8059 silly addNameRange '1.2.0', +8059 silly addNameRange '1.2.2', +8059 silly addNameRange '1.3.0', +8059 silly addNameRange '1.3.1', +8059 silly addNameRange '1.3.2', +8059 silly addNameRange '1.3.3', +8059 silly addNameRange '1.4.0', +8059 silly addNameRange '1.4.1', +8059 silly addNameRange '1.4.2', +8059 silly addNameRange '1.4.3', +8059 silly addNameRange '1.4.4', +8059 silly addNameRange '1.4.5', +8059 silly addNameRange '1.5.0', +8059 silly addNameRange '1.6.0', +8059 silly addNameRange '1.6.1', +8059 silly addNameRange '1.6.2', +8059 silly addNameRange '2.0.0', +8059 silly addNameRange '2.1.0', +8059 silly addNameRange '2.1.1', +8059 silly addNameRange '2.1.2', +8059 silly addNameRange '2.1.3', +8059 silly addNameRange '2.1.4', +8059 silly addNameRange '2.1.5', +8059 silly addNameRange '2.1.6', +8059 silly addNameRange '2.2.0', +8059 silly addNameRange '2.3.0', +8059 silly addNameRange '2.3.1', +8059 silly addNameRange '2.3.2', +8059 silly addNameRange '2.3.3', +8059 silly addNameRange '2.3.4', +8059 silly addNameRange '2.3.5', +8059 silly addNameRange '2.3.6', +8059 silly addNameRange '2.3.7', +8059 silly addNameRange '2.3.8', +8059 silly addNameRange '2.3.9', +8059 silly addNameRange '2.3.10', +8059 silly addNameRange '2.3.11', +8059 silly addNameRange '3.0.0', +8059 silly addNameRange '3.0.1', +8059 silly addNameRange '3.0.2', +8059 silly addNameRange '3.0.3', +8059 silly addNameRange '3.0.4', +8059 silly addNameRange '3.0.5', +8059 silly addNameRange '3.1.0' ] ] +8060 silly addNamed micromatch@2.3.11 +8061 verbose addNamed "2.3.11" is a plain semver version for micromatch +8062 silly cache afterAdd micromatch@2.3.11 +8063 verbose afterAdd /home/wso2/.npm/micromatch/2.3.11/package/package.json not in flight; writing +8064 verbose afterAdd /home/wso2/.npm/micromatch/2.3.11/package/package.json written +8065 silly fetchNamedPackageData arr-diff +8066 silly mapToRegistry name arr-diff +8067 silly mapToRegistry using default registry +8068 silly mapToRegistry registry https://registry.npmjs.org/ +8069 silly mapToRegistry uri https://registry.npmjs.org/arr-diff +8070 silly fetchNamedPackageData array-unique +8071 silly mapToRegistry name array-unique +8072 silly mapToRegistry using default registry +8073 silly mapToRegistry registry https://registry.npmjs.org/ +8074 silly mapToRegistry uri https://registry.npmjs.org/array-unique +8075 silly fetchNamedPackageData braces +8076 silly mapToRegistry name braces +8077 silly mapToRegistry using default registry +8078 silly mapToRegistry registry https://registry.npmjs.org/ +8079 silly mapToRegistry uri https://registry.npmjs.org/braces +8080 silly fetchNamedPackageData expand-brackets +8081 silly mapToRegistry name expand-brackets +8082 silly mapToRegistry using default registry +8083 silly mapToRegistry registry https://registry.npmjs.org/ +8084 silly mapToRegistry uri https://registry.npmjs.org/expand-brackets +8085 silly fetchNamedPackageData extglob +8086 silly mapToRegistry name extglob +8087 silly mapToRegistry using default registry +8088 silly mapToRegistry registry https://registry.npmjs.org/ +8089 silly mapToRegistry uri https://registry.npmjs.org/extglob +8090 silly fetchNamedPackageData filename-regex +8091 silly mapToRegistry name filename-regex +8092 silly mapToRegistry using default registry +8093 silly mapToRegistry registry https://registry.npmjs.org/ +8094 silly mapToRegistry uri https://registry.npmjs.org/filename-regex +8095 silly fetchNamedPackageData is-extglob +8096 silly mapToRegistry name is-extglob +8097 silly mapToRegistry using default registry +8098 silly mapToRegistry registry https://registry.npmjs.org/ +8099 silly mapToRegistry uri https://registry.npmjs.org/is-extglob +8100 silly fetchNamedPackageData is-glob +8101 silly mapToRegistry name is-glob +8102 silly mapToRegistry using default registry +8103 silly mapToRegistry registry https://registry.npmjs.org/ +8104 silly mapToRegistry uri https://registry.npmjs.org/is-glob +8105 silly fetchNamedPackageData kind-of +8106 silly mapToRegistry name kind-of +8107 silly mapToRegistry using default registry +8108 silly mapToRegistry registry https://registry.npmjs.org/ +8109 silly mapToRegistry uri https://registry.npmjs.org/kind-of +8110 silly fetchNamedPackageData normalize-path +8111 silly mapToRegistry name normalize-path +8112 silly mapToRegistry using default registry +8113 silly mapToRegistry registry https://registry.npmjs.org/ +8114 silly mapToRegistry uri https://registry.npmjs.org/normalize-path +8115 silly fetchNamedPackageData object.omit +8116 silly mapToRegistry name object.omit +8117 silly mapToRegistry using default registry +8118 silly mapToRegistry registry https://registry.npmjs.org/ +8119 silly mapToRegistry uri https://registry.npmjs.org/object.omit +8120 silly fetchNamedPackageData parse-glob +8121 silly mapToRegistry name parse-glob +8122 silly mapToRegistry using default registry +8123 silly mapToRegistry registry https://registry.npmjs.org/ +8124 silly mapToRegistry uri https://registry.npmjs.org/parse-glob +8125 silly fetchNamedPackageData regex-cache +8126 silly mapToRegistry name regex-cache +8127 silly mapToRegistry using default registry +8128 silly mapToRegistry registry https://registry.npmjs.org/ +8129 silly mapToRegistry uri https://registry.npmjs.org/regex-cache +8130 verbose request uri https://registry.npmjs.org/arr-diff +8131 verbose request no auth needed +8132 info attempt registry request try #1 at 3:04:11 PM +8133 verbose etag W/"59a6c31f-5531" +8134 verbose lastModified Wed, 30 Aug 2017 13:52:31 GMT +8135 http request GET https://registry.npmjs.org/arr-diff +8136 verbose request uri https://registry.npmjs.org/array-unique +8137 verbose request no auth needed +8138 info attempt registry request try #1 at 3:04:11 PM +8139 verbose etag W/"59a6c37d-2820" +8140 verbose lastModified Wed, 30 Aug 2017 13:54:05 GMT +8141 http request GET https://registry.npmjs.org/array-unique +8142 verbose request uri https://registry.npmjs.org/expand-brackets +8143 verbose request no auth needed +8144 info attempt registry request try #1 at 3:04:11 PM +8145 verbose etag W/"59592f25-9712" +8146 verbose lastModified Sun, 02 Jul 2017 17:36:37 GMT +8147 http request GET https://registry.npmjs.org/expand-brackets +8148 verbose request uri https://registry.npmjs.org/extglob +8149 verbose request no auth needed +8150 info attempt registry request try #1 at 3:04:11 PM +8151 verbose etag W/"59b1fb8f-6bb1" +8152 verbose lastModified Fri, 08 Sep 2017 02:08:15 GMT +8153 http request GET https://registry.npmjs.org/extglob +8154 verbose request uri https://registry.npmjs.org/filename-regex +8155 verbose request no auth needed +8156 info attempt registry request try #1 at 3:04:11 PM +8157 verbose etag W/"596e925b-2500" +8158 verbose lastModified Tue, 18 Jul 2017 22:57:31 GMT +8159 http request GET https://registry.npmjs.org/filename-regex +8160 verbose request uri https://registry.npmjs.org/braces +8161 verbose request no auth needed +8162 info attempt registry request try #1 at 3:04:11 PM +8163 verbose etag W/"59909f9b-14dec" +8164 verbose lastModified Sun, 13 Aug 2017 18:51:07 GMT +8165 http request GET https://registry.npmjs.org/braces +8166 verbose request uri https://registry.npmjs.org/is-extglob +8167 verbose request no auth needed +8168 info attempt registry request try #1 at 3:04:11 PM +8169 verbose etag W/"59592fd2-2961" +8170 verbose lastModified Sun, 02 Jul 2017 17:39:30 GMT +8171 http request GET https://registry.npmjs.org/is-extglob +8172 verbose request uri https://registry.npmjs.org/is-glob +8173 verbose request no auth needed +8174 info attempt registry request try #1 at 3:04:11 PM +8175 verbose etag W/"5988d37c-6a6f" +8176 verbose lastModified Mon, 07 Aug 2017 20:54:20 GMT +8177 http request GET https://registry.npmjs.org/is-glob +8178 verbose request uri https://registry.npmjs.org/kind-of +8179 verbose request no auth needed +8180 info attempt registry request try #1 at 3:04:11 PM +8181 verbose etag W/"59afba28-c157" +8182 verbose lastModified Wed, 06 Sep 2017 09:04:40 GMT +8183 http request GET https://registry.npmjs.org/kind-of +8184 verbose request uri https://registry.npmjs.org/normalize-path +8185 verbose request no auth needed +8186 info attempt registry request try #1 at 3:04:11 PM +8187 verbose etag W/"5959301f-5619" +8188 verbose lastModified Sun, 02 Jul 2017 17:40:47 GMT +8189 http request GET https://registry.npmjs.org/normalize-path +8190 verbose request uri https://registry.npmjs.org/object.omit +8191 verbose request no auth needed +8192 info attempt registry request try #1 at 3:04:11 PM +8193 verbose etag W/"59accc47-3c36" +8194 verbose lastModified Mon, 04 Sep 2017 03:45:11 GMT +8195 http request GET https://registry.npmjs.org/object.omit +8196 verbose request uri https://registry.npmjs.org/parse-glob +8197 verbose request no auth needed +8198 info attempt registry request try #1 at 3:04:11 PM +8199 verbose etag W/"56017142-5dd5" +8200 verbose lastModified Tue, 22 Sep 2015 15:18:26 GMT +8201 http request GET https://registry.npmjs.org/parse-glob +8202 verbose request uri https://registry.npmjs.org/regex-cache +8203 verbose request no auth needed +8204 info attempt registry request try #1 at 3:04:11 PM +8205 verbose etag W/"59a97a5d-53c3" +8206 verbose lastModified Fri, 01 Sep 2017 15:18:53 GMT +8207 http request GET https://registry.npmjs.org/regex-cache +8208 http 304 https://registry.npmjs.org/array-unique +8209 verbose headers { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8209 verbose headers via: '1.1 varnish', +8209 verbose headers 'cache-control': 'max-age=300', +8209 verbose headers etag: 'W/"59a6c37d-2820"', +8209 verbose headers age: '16', +8209 verbose headers connection: 'keep-alive', +8209 verbose headers 'x-served-by': 'cache-sin18035-SIN', +8209 verbose headers 'x-cache': 'HIT', +8209 verbose headers 'x-cache-hits': '437', +8209 verbose headers 'x-timer': 'S1506936852.013851,VS0,VE0', +8209 verbose headers vary: 'Accept-Encoding, Accept' } +8210 silly get cb [ 304, +8210 silly get { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8210 silly get via: '1.1 varnish', +8210 silly get 'cache-control': 'max-age=300', +8210 silly get etag: 'W/"59a6c37d-2820"', +8210 silly get age: '16', +8210 silly get connection: 'keep-alive', +8210 silly get 'x-served-by': 'cache-sin18035-SIN', +8210 silly get 'x-cache': 'HIT', +8210 silly get 'x-cache-hits': '437', +8210 silly get 'x-timer': 'S1506936852.013851,VS0,VE0', +8210 silly get vary: 'Accept-Encoding, Accept' } ] +8211 verbose etag https://registry.npmjs.org/array-unique from cache +8212 verbose get saving array-unique to /home/wso2/.npm/registry.npmjs.org/array-unique/.cache.json +8213 http 304 https://registry.npmjs.org/expand-brackets +8214 verbose headers { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8214 verbose headers via: '1.1 varnish', +8214 verbose headers 'cache-control': 'max-age=300', +8214 verbose headers etag: 'W/"59592f25-9712"', +8214 verbose headers age: '1', +8214 verbose headers connection: 'keep-alive', +8214 verbose headers 'x-served-by': 'cache-sin18031-SIN', +8214 verbose headers 'x-cache': 'HIT', +8214 verbose headers 'x-cache-hits': '1', +8214 verbose headers 'x-timer': 'S1506936852.018152,VS0,VE0', +8214 verbose headers vary: 'Accept-Encoding, Accept' } +8215 silly get cb [ 304, +8215 silly get { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8215 silly get via: '1.1 varnish', +8215 silly get 'cache-control': 'max-age=300', +8215 silly get etag: 'W/"59592f25-9712"', +8215 silly get age: '1', +8215 silly get connection: 'keep-alive', +8215 silly get 'x-served-by': 'cache-sin18031-SIN', +8215 silly get 'x-cache': 'HIT', +8215 silly get 'x-cache-hits': '1', +8215 silly get 'x-timer': 'S1506936852.018152,VS0,VE0', +8215 silly get vary: 'Accept-Encoding, Accept' } ] +8216 verbose etag https://registry.npmjs.org/expand-brackets from cache +8217 verbose get saving expand-brackets to /home/wso2/.npm/registry.npmjs.org/expand-brackets/.cache.json +8218 http 304 https://registry.npmjs.org/arr-diff +8219 verbose headers { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8219 verbose headers via: '1.1 varnish', +8219 verbose headers 'cache-control': 'max-age=300', +8219 verbose headers etag: 'W/"59a6c31f-5531"', +8219 verbose headers age: '16', +8219 verbose headers connection: 'keep-alive', +8219 verbose headers 'x-served-by': 'cache-sin18031-SIN', +8219 verbose headers 'x-cache': 'HIT', +8219 verbose headers 'x-cache-hits': '2', +8219 verbose headers 'x-timer': 'S1506936852.039788,VS0,VE0', +8219 verbose headers vary: 'Accept-Encoding, Accept' } +8220 silly get cb [ 304, +8220 silly get { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8220 silly get via: '1.1 varnish', +8220 silly get 'cache-control': 'max-age=300', +8220 silly get etag: 'W/"59a6c31f-5531"', +8220 silly get age: '16', +8220 silly get connection: 'keep-alive', +8220 silly get 'x-served-by': 'cache-sin18031-SIN', +8220 silly get 'x-cache': 'HIT', +8220 silly get 'x-cache-hits': '2', +8220 silly get 'x-timer': 'S1506936852.039788,VS0,VE0', +8220 silly get vary: 'Accept-Encoding, Accept' } ] +8221 verbose etag https://registry.npmjs.org/arr-diff from cache +8222 verbose get saving arr-diff to /home/wso2/.npm/registry.npmjs.org/arr-diff/.cache.json +8223 http 304 https://registry.npmjs.org/braces +8224 verbose headers { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8224 verbose headers via: '1.1 varnish', +8224 verbose headers 'cache-control': 'max-age=300', +8224 verbose headers etag: 'W/"59909f9b-14dec"', +8224 verbose headers age: '54', +8224 verbose headers connection: 'keep-alive', +8224 verbose headers 'x-served-by': 'cache-sin18028-SIN', +8224 verbose headers 'x-cache': 'HIT', +8224 verbose headers 'x-cache-hits': '1', +8224 verbose headers 'x-timer': 'S1506936852.059693,VS0,VE0', +8224 verbose headers vary: 'Accept-Encoding, Accept' } +8225 silly get cb [ 304, +8225 silly get { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8225 silly get via: '1.1 varnish', +8225 silly get 'cache-control': 'max-age=300', +8225 silly get etag: 'W/"59909f9b-14dec"', +8225 silly get age: '54', +8225 silly get connection: 'keep-alive', +8225 silly get 'x-served-by': 'cache-sin18028-SIN', +8225 silly get 'x-cache': 'HIT', +8225 silly get 'x-cache-hits': '1', +8225 silly get 'x-timer': 'S1506936852.059693,VS0,VE0', +8225 silly get vary: 'Accept-Encoding, Accept' } ] +8226 verbose etag https://registry.npmjs.org/braces from cache +8227 verbose get saving braces to /home/wso2/.npm/registry.npmjs.org/braces/.cache.json +8228 http 304 https://registry.npmjs.org/is-extglob +8229 verbose headers { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8229 verbose headers via: '1.1 varnish', +8229 verbose headers 'cache-control': 'max-age=300', +8229 verbose headers etag: 'W/"59592fd2-2961"', +8229 verbose headers age: '105', +8229 verbose headers connection: 'keep-alive', +8229 verbose headers 'x-served-by': 'cache-sin18022-SIN', +8229 verbose headers 'x-cache': 'HIT', +8229 verbose headers 'x-cache-hits': '5', +8229 verbose headers 'x-timer': 'S1506936852.060449,VS0,VE0', +8229 verbose headers vary: 'Accept-Encoding, Accept' } +8230 silly get cb [ 304, +8230 silly get { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8230 silly get via: '1.1 varnish', +8230 silly get 'cache-control': 'max-age=300', +8230 silly get etag: 'W/"59592fd2-2961"', +8230 silly get age: '105', +8230 silly get connection: 'keep-alive', +8230 silly get 'x-served-by': 'cache-sin18022-SIN', +8230 silly get 'x-cache': 'HIT', +8230 silly get 'x-cache-hits': '5', +8230 silly get 'x-timer': 'S1506936852.060449,VS0,VE0', +8230 silly get vary: 'Accept-Encoding, Accept' } ] +8231 verbose etag https://registry.npmjs.org/is-extglob from cache +8232 verbose get saving is-extglob to /home/wso2/.npm/registry.npmjs.org/is-extglob/.cache.json +8233 http 304 https://registry.npmjs.org/is-glob +8234 verbose headers { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8234 verbose headers via: '1.1 varnish', +8234 verbose headers 'cache-control': 'max-age=300', +8234 verbose headers etag: 'W/"5988d37c-6a6f"', +8234 verbose headers age: '106', +8234 verbose headers connection: 'keep-alive', +8234 verbose headers 'x-served-by': 'cache-sin18035-SIN', +8234 verbose headers 'x-cache': 'HIT', +8234 verbose headers 'x-cache-hits': '418', +8234 verbose headers 'x-timer': 'S1506936852.081680,VS0,VE0', +8234 verbose headers vary: 'Accept-Encoding, Accept' } +8235 silly get cb [ 304, +8235 silly get { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8235 silly get via: '1.1 varnish', +8235 silly get 'cache-control': 'max-age=300', +8235 silly get etag: 'W/"5988d37c-6a6f"', +8235 silly get age: '106', +8235 silly get connection: 'keep-alive', +8235 silly get 'x-served-by': 'cache-sin18035-SIN', +8235 silly get 'x-cache': 'HIT', +8235 silly get 'x-cache-hits': '418', +8235 silly get 'x-timer': 'S1506936852.081680,VS0,VE0', +8235 silly get vary: 'Accept-Encoding, Accept' } ] +8236 verbose etag https://registry.npmjs.org/is-glob from cache +8237 verbose get saving is-glob to /home/wso2/.npm/registry.npmjs.org/is-glob/.cache.json +8238 http 304 https://registry.npmjs.org/filename-regex +8239 verbose headers { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8239 verbose headers via: '1.1 varnish', +8239 verbose headers 'cache-control': 'max-age=300', +8239 verbose headers etag: 'W/"596e925b-2500"', +8239 verbose headers age: '5', +8239 verbose headers connection: 'keep-alive', +8239 verbose headers 'x-served-by': 'cache-sin18027-SIN', +8239 verbose headers 'x-cache': 'HIT', +8239 verbose headers 'x-cache-hits': '1', +8239 verbose headers 'x-timer': 'S1506936852.091250,VS0,VE0', +8239 verbose headers vary: 'Accept-Encoding, Accept' } +8240 silly get cb [ 304, +8240 silly get { date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8240 silly get via: '1.1 varnish', +8240 silly get 'cache-control': 'max-age=300', +8240 silly get etag: 'W/"596e925b-2500"', +8240 silly get age: '5', +8240 silly get connection: 'keep-alive', +8240 silly get 'x-served-by': 'cache-sin18027-SIN', +8240 silly get 'x-cache': 'HIT', +8240 silly get 'x-cache-hits': '1', +8240 silly get 'x-timer': 'S1506936852.091250,VS0,VE0', +8240 silly get vary: 'Accept-Encoding, Accept' } ] +8241 verbose etag https://registry.npmjs.org/filename-regex from cache +8242 verbose get saving filename-regex to /home/wso2/.npm/registry.npmjs.org/filename-regex/.cache.json +8243 http 200 https://registry.npmjs.org/extglob +8244 verbose headers { server: 'nginx/1.10.3', +8244 verbose headers 'content-type': 'application/json', +8244 verbose headers 'last-modified': 'Mon, 11 Sep 2017 04:18:44 GMT', +8244 verbose headers etag: 'W/"59b60ea4-7961"', +8244 verbose headers 'content-encoding': 'gzip', +8244 verbose headers 'cache-control': 'max-age=300', +8244 verbose headers 'content-length': '6679', +8244 verbose headers 'accept-ranges': 'bytes', +8244 verbose headers date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8244 verbose headers via: '1.1 varnish', +8244 verbose headers age: '54', +8244 verbose headers connection: 'keep-alive', +8244 verbose headers 'x-served-by': 'cache-sin18029-SIN', +8244 verbose headers 'x-cache': 'HIT', +8244 verbose headers 'x-cache-hits': '1', +8244 verbose headers 'x-timer': 'S1506936852.013780,VS0,VE0', +8244 verbose headers vary: 'Accept-Encoding, Accept' } +8245 silly get cb [ 200, +8245 silly get { server: 'nginx/1.10.3', +8245 silly get 'content-type': 'application/json', +8245 silly get 'last-modified': 'Mon, 11 Sep 2017 04:18:44 GMT', +8245 silly get etag: 'W/"59b60ea4-7961"', +8245 silly get 'content-encoding': 'gzip', +8245 silly get 'cache-control': 'max-age=300', +8245 silly get 'content-length': '6679', +8245 silly get 'accept-ranges': 'bytes', +8245 silly get date: 'Mon, 02 Oct 2017 09:34:12 GMT', +8245 silly get via: '1.1 varnish', +8245 silly get age: '54', +8245 silly get connection: 'keep-alive', +8245 silly get 'x-served-by': 'cache-sin18029-SIN', +8245 silly get 'x-cache': 'HIT', +8245 silly get 'x-cache-hits': '1', +8245 silly get 'x-timer': 'S1506936852.013780,VS0,VE0', +8245 silly get vary: 'Accept-Encoding, Accept' } ] +8246 verbose get saving extglob to /home/wso2/.npm/registry.npmjs.org/extglob/.cache.json +8247 silly resolveWithNewModule array-unique@0.2.1 checking installable status +8248 silly cache add args [ 'array-unique@^0.2.1', null ] +8249 verbose cache add spec array-unique@^0.2.1 +8250 silly cache add parsed spec Result { +8250 silly cache add raw: 'array-unique@^0.2.1', +8250 silly cache add scope: null, +8250 silly cache add name: 'array-unique', +8250 silly cache add rawSpec: '^0.2.1', +8250 silly cache add spec: '>=0.2.1 <0.3.0', +8250 silly cache add type: 'range' } +8251 silly addNamed array-unique@>=0.2.1 <0.3.0 +8252 verbose addNamed ">=0.2.1 <0.3.0" is a valid semver range for array-unique +8253 silly addNameRange { name: 'array-unique', range: '>=0.2.1 <0.3.0', hasData: false } +8254 silly mapToRegistry name array-unique +8255 silly mapToRegistry using default registry +8256 silly mapToRegistry registry https://registry.npmjs.org/ +8257 silly mapToRegistry uri https://registry.npmjs.org/array-unique +8258 verbose addNameRange registry:https://registry.npmjs.org/array-unique not in flight; fetching +8259 silly resolveWithNewModule expand-brackets@0.1.5 checking installable status +8260 silly cache add args [ 'expand-brackets@^0.1.4', null ] +8261 verbose cache add spec expand-brackets@^0.1.4 +8262 silly cache add parsed spec Result { +8262 silly cache add raw: 'expand-brackets@^0.1.4', +8262 silly cache add scope: null, +8262 silly cache add name: 'expand-brackets', +8262 silly cache add rawSpec: '^0.1.4', +8262 silly cache add spec: '>=0.1.4 <0.2.0', +8262 silly cache add type: 'range' } +8263 silly addNamed expand-brackets@>=0.1.4 <0.2.0 +8264 verbose addNamed ">=0.1.4 <0.2.0" is a valid semver range for expand-brackets +8265 silly addNameRange { name: 'expand-brackets', +8265 silly addNameRange range: '>=0.1.4 <0.2.0', +8265 silly addNameRange hasData: false } +8266 silly mapToRegistry name expand-brackets +8267 silly mapToRegistry using default registry +8268 silly mapToRegistry registry https://registry.npmjs.org/ +8269 silly mapToRegistry uri https://registry.npmjs.org/expand-brackets +8270 verbose addNameRange registry:https://registry.npmjs.org/expand-brackets not in flight; fetching +8271 silly resolveWithNewModule arr-diff@2.0.0 checking installable status +8272 silly cache add args [ 'arr-diff@^2.0.0', null ] +8273 verbose cache add spec arr-diff@^2.0.0 +8274 silly cache add parsed spec Result { +8274 silly cache add raw: 'arr-diff@^2.0.0', +8274 silly cache add scope: null, +8274 silly cache add name: 'arr-diff', +8274 silly cache add rawSpec: '^2.0.0', +8274 silly cache add spec: '>=2.0.0 <3.0.0', +8274 silly cache add type: 'range' } +8275 silly addNamed arr-diff@>=2.0.0 <3.0.0 +8276 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for arr-diff +8277 silly addNameRange { name: 'arr-diff', range: '>=2.0.0 <3.0.0', hasData: false } +8278 silly mapToRegistry name arr-diff +8279 silly mapToRegistry using default registry +8280 silly mapToRegistry registry https://registry.npmjs.org/ +8281 silly mapToRegistry uri https://registry.npmjs.org/arr-diff +8282 verbose addNameRange registry:https://registry.npmjs.org/arr-diff not in flight; fetching +8283 silly resolveWithNewModule braces@1.8.5 checking installable status +8284 silly cache add args [ 'braces@^1.8.2', null ] +8285 verbose cache add spec braces@^1.8.2 +8286 silly cache add parsed spec Result { +8286 silly cache add raw: 'braces@^1.8.2', +8286 silly cache add scope: null, +8286 silly cache add name: 'braces', +8286 silly cache add rawSpec: '^1.8.2', +8286 silly cache add spec: '>=1.8.2 <2.0.0', +8286 silly cache add type: 'range' } +8287 silly addNamed braces@>=1.8.2 <2.0.0 +8288 verbose addNamed ">=1.8.2 <2.0.0" is a valid semver range for braces +8289 silly addNameRange { name: 'braces', range: '>=1.8.2 <2.0.0', hasData: false } +8290 silly mapToRegistry name braces +8291 silly mapToRegistry using default registry +8292 silly mapToRegistry registry https://registry.npmjs.org/ +8293 silly mapToRegistry uri https://registry.npmjs.org/braces +8294 verbose addNameRange registry:https://registry.npmjs.org/braces not in flight; fetching +8295 silly resolveWithNewModule is-extglob@1.0.0 checking installable status +8296 silly cache add args [ 'is-extglob@^1.0.0', null ] +8297 verbose cache add spec is-extglob@^1.0.0 +8298 silly cache add parsed spec Result { +8298 silly cache add raw: 'is-extglob@^1.0.0', +8298 silly cache add scope: null, +8298 silly cache add name: 'is-extglob', +8298 silly cache add rawSpec: '^1.0.0', +8298 silly cache add spec: '>=1.0.0 <2.0.0', +8298 silly cache add type: 'range' } +8299 silly addNamed is-extglob@>=1.0.0 <2.0.0 +8300 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for is-extglob +8301 silly addNameRange { name: 'is-extglob', range: '>=1.0.0 <2.0.0', hasData: false } +8302 silly mapToRegistry name is-extglob +8303 silly mapToRegistry using default registry +8304 silly mapToRegistry registry https://registry.npmjs.org/ +8305 silly mapToRegistry uri https://registry.npmjs.org/is-extglob +8306 verbose addNameRange registry:https://registry.npmjs.org/is-extglob not in flight; fetching +8307 silly resolveWithNewModule is-glob@2.0.1 checking installable status +8308 silly cache add args [ 'is-glob@^2.0.1', null ] +8309 verbose cache add spec is-glob@^2.0.1 +8310 silly cache add parsed spec Result { +8310 silly cache add raw: 'is-glob@^2.0.1', +8310 silly cache add scope: null, +8310 silly cache add name: 'is-glob', +8310 silly cache add rawSpec: '^2.0.1', +8310 silly cache add spec: '>=2.0.1 <3.0.0', +8310 silly cache add type: 'range' } +8311 silly addNamed is-glob@>=2.0.1 <3.0.0 +8312 verbose addNamed ">=2.0.1 <3.0.0" is a valid semver range for is-glob +8313 silly addNameRange { name: 'is-glob', range: '>=2.0.1 <3.0.0', hasData: false } +8314 silly mapToRegistry name is-glob +8315 silly mapToRegistry using default registry +8316 silly mapToRegistry registry https://registry.npmjs.org/ +8317 silly mapToRegistry uri https://registry.npmjs.org/is-glob +8318 verbose addNameRange registry:https://registry.npmjs.org/is-glob not in flight; fetching +8319 silly resolveWithNewModule filename-regex@2.0.1 checking installable status +8320 silly cache add args [ 'filename-regex@^2.0.0', null ] +8321 verbose cache add spec filename-regex@^2.0.0 +8322 silly cache add parsed spec Result { +8322 silly cache add raw: 'filename-regex@^2.0.0', +8322 silly cache add scope: null, +8322 silly cache add name: 'filename-regex', +8322 silly cache add rawSpec: '^2.0.0', +8322 silly cache add spec: '>=2.0.0 <3.0.0', +8322 silly cache add type: 'range' } +8323 silly addNamed filename-regex@>=2.0.0 <3.0.0 +8324 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for filename-regex +8325 silly addNameRange { name: 'filename-regex', +8325 silly addNameRange range: '>=2.0.0 <3.0.0', +8325 silly addNameRange hasData: false } +8326 silly mapToRegistry name filename-regex +8327 silly mapToRegistry using default registry +8328 silly mapToRegistry registry https://registry.npmjs.org/ +8329 silly mapToRegistry uri https://registry.npmjs.org/filename-regex +8330 verbose addNameRange registry:https://registry.npmjs.org/filename-regex not in flight; fetching +8331 silly resolveWithNewModule extglob@0.3.2 checking installable status +8332 silly cache add args [ 'extglob@^0.3.1', null ] +8333 verbose cache add spec extglob@^0.3.1 +8334 silly cache add parsed spec Result { +8334 silly cache add raw: 'extglob@^0.3.1', +8334 silly cache add scope: null, +8334 silly cache add name: 'extglob', +8334 silly cache add rawSpec: '^0.3.1', +8334 silly cache add spec: '>=0.3.1 <0.4.0', +8334 silly cache add type: 'range' } +8335 silly addNamed extglob@>=0.3.1 <0.4.0 +8336 verbose addNamed ">=0.3.1 <0.4.0" is a valid semver range for extglob +8337 silly addNameRange { name: 'extglob', range: '>=0.3.1 <0.4.0', hasData: false } +8338 silly mapToRegistry name extglob +8339 silly mapToRegistry using default registry +8340 silly mapToRegistry registry https://registry.npmjs.org/ +8341 silly mapToRegistry uri https://registry.npmjs.org/extglob +8342 verbose addNameRange registry:https://registry.npmjs.org/extglob not in flight; fetching +8343 verbose get https://registry.npmjs.org/array-unique not expired, no request +8344 silly addNameRange number 2 { name: 'array-unique', range: '>=0.2.1 <0.3.0', hasData: true } +8345 silly addNameRange versions [ 'array-unique', [ '0.1.1', '0.2.0', '0.2.1', '0.3.2' ] ] +8346 silly addNamed array-unique@0.2.1 +8347 verbose addNamed "0.2.1" is a plain semver version for array-unique +8348 verbose get https://registry.npmjs.org/expand-brackets not expired, no request +8349 silly addNameRange number 2 { name: 'expand-brackets', +8349 silly addNameRange range: '>=0.1.4 <0.2.0', +8349 silly addNameRange hasData: true } +8350 silly addNameRange versions [ 'expand-brackets', +8350 silly addNameRange [ '0.1.0', +8350 silly addNameRange '0.1.1', +8350 silly addNameRange '0.1.2', +8350 silly addNameRange '0.1.3', +8350 silly addNameRange '0.1.4', +8350 silly addNameRange '0.1.5', +8350 silly addNameRange '1.0.0', +8350 silly addNameRange '2.0.0', +8350 silly addNameRange '2.0.1', +8350 silly addNameRange '2.1.0', +8350 silly addNameRange '2.1.1', +8350 silly addNameRange '2.1.2', +8350 silly addNameRange '2.1.3', +8350 silly addNameRange '2.1.4' ] ] +8351 silly addNamed expand-brackets@0.1.5 +8352 verbose addNamed "0.1.5" is a plain semver version for expand-brackets +8353 verbose get https://registry.npmjs.org/arr-diff not expired, no request +8354 silly addNameRange number 2 { name: 'arr-diff', range: '>=2.0.0 <3.0.0', hasData: true } +8355 silly addNameRange versions [ 'arr-diff', +8355 silly addNameRange [ '0.1.0', +8355 silly addNameRange '0.1.1', +8355 silly addNameRange '0.2.0', +8355 silly addNameRange '0.2.1', +8355 silly addNameRange '0.2.2', +8355 silly addNameRange '1.0.0', +8355 silly addNameRange '1.0.1', +8355 silly addNameRange '1.1.0', +8355 silly addNameRange '2.0.0', +8355 silly addNameRange '3.0.0', +8355 silly addNameRange '4.0.0' ] ] +8356 silly addNamed arr-diff@2.0.0 +8357 verbose addNamed "2.0.0" is a plain semver version for arr-diff +8358 verbose get https://registry.npmjs.org/braces not expired, no request +8359 silly addNameRange number 2 { name: 'braces', range: '>=1.8.2 <2.0.0', hasData: true } +8360 silly addNameRange versions [ 'braces', +8360 silly addNameRange [ '0.1.0', +8360 silly addNameRange '0.1.1', +8360 silly addNameRange '0.1.2', +8360 silly addNameRange '0.1.4', +8360 silly addNameRange '0.1.5', +8360 silly addNameRange '1.0.0', +8360 silly addNameRange '1.1.0', +8360 silly addNameRange '1.2.0', +8360 silly addNameRange '1.3.0', +8360 silly addNameRange '1.4.0', +8360 silly addNameRange '1.5.0', +8360 silly addNameRange '1.5.1', +8360 silly addNameRange '1.6.0', +8360 silly addNameRange '1.7.0', +8360 silly addNameRange '1.8.0', +8360 silly addNameRange '1.8.1', +8360 silly addNameRange '1.8.2', +8360 silly addNameRange '1.8.3', +8360 silly addNameRange '1.8.4', +8360 silly addNameRange '1.8.5', +8360 silly addNameRange '2.0.0', +8360 silly addNameRange '2.0.1', +8360 silly addNameRange '2.0.2', +8360 silly addNameRange '2.0.3', +8360 silly addNameRange '2.0.4', +8360 silly addNameRange '2.1.0', +8360 silly addNameRange '2.1.1', +8360 silly addNameRange '2.2.0', +8360 silly addNameRange '2.2.1', +8360 silly addNameRange '2.2.2' ] ] +8361 silly addNamed braces@1.8.5 +8362 verbose addNamed "1.8.5" is a plain semver version for braces +8363 verbose get https://registry.npmjs.org/is-extglob not expired, no request +8364 silly addNameRange number 2 { name: 'is-extglob', range: '>=1.0.0 <2.0.0', hasData: true } +8365 silly addNameRange versions [ 'is-extglob', [ '1.0.0', '2.0.0', '2.1.0', '2.1.1' ] ] +8366 silly addNamed is-extglob@1.0.0 +8367 verbose addNamed "1.0.0" is a plain semver version for is-extglob +8368 verbose get https://registry.npmjs.org/is-glob not expired, no request +8369 silly addNameRange number 2 { name: 'is-glob', range: '>=2.0.1 <3.0.0', hasData: true } +8370 silly addNameRange versions [ 'is-glob', +8370 silly addNameRange [ '0.1.0', +8370 silly addNameRange '0.2.0', +8370 silly addNameRange '0.3.0', +8370 silly addNameRange '1.0.0', +8370 silly addNameRange '1.1.0', +8370 silly addNameRange '1.1.1', +8370 silly addNameRange '1.1.2', +8370 silly addNameRange '1.1.3', +8370 silly addNameRange '2.0.0', +8370 silly addNameRange '2.0.1', +8370 silly addNameRange '3.0.0', +8370 silly addNameRange '3.1.0', +8370 silly addNameRange '4.0.0' ] ] +8371 silly addNamed is-glob@2.0.1 +8372 verbose addNamed "2.0.1" is a plain semver version for is-glob +8373 verbose get https://registry.npmjs.org/filename-regex not expired, no request +8374 silly addNameRange number 2 { name: 'filename-regex', +8374 silly addNameRange range: '>=2.0.0 <3.0.0', +8374 silly addNameRange hasData: true } +8375 silly addNameRange versions [ 'filename-regex', +8375 silly addNameRange [ '0.1.0', '0.2.0', '1.0.0', '2.0.0', '2.0.1' ] ] +8376 silly addNamed filename-regex@2.0.1 +8377 verbose addNamed "2.0.1" is a plain semver version for filename-regex +8378 verbose get https://registry.npmjs.org/extglob not expired, no request +8379 silly addNameRange number 2 { name: 'extglob', range: '>=0.3.1 <0.4.0', hasData: true } +8380 silly addNameRange versions [ 'extglob', +8380 silly addNameRange [ '0.1.0', +8380 silly addNameRange '0.2.0', +8380 silly addNameRange '0.3.0', +8380 silly addNameRange '0.3.1', +8380 silly addNameRange '0.3.2', +8380 silly addNameRange '1.0.0', +8380 silly addNameRange '1.1.0', +8380 silly addNameRange '2.0.0', +8380 silly addNameRange '2.0.2' ] ] +8381 silly addNamed extglob@0.3.2 +8382 verbose addNamed "0.3.2" is a plain semver version for extglob +8383 silly cache afterAdd array-unique@0.2.1 +8384 verbose afterAdd /home/wso2/.npm/array-unique/0.2.1/package/package.json not in flight; writing +8385 silly cache afterAdd expand-brackets@0.1.5 +8386 verbose afterAdd /home/wso2/.npm/expand-brackets/0.1.5/package/package.json not in flight; writing +8387 silly cache afterAdd arr-diff@2.0.0 +8388 verbose afterAdd /home/wso2/.npm/arr-diff/2.0.0/package/package.json not in flight; writing +8389 silly cache afterAdd braces@1.8.5 +8390 verbose afterAdd /home/wso2/.npm/braces/1.8.5/package/package.json not in flight; writing +8391 silly cache afterAdd is-extglob@1.0.0 +8392 verbose afterAdd /home/wso2/.npm/is-extglob/1.0.0/package/package.json not in flight; writing +8393 silly cache afterAdd is-glob@2.0.1 +8394 verbose afterAdd /home/wso2/.npm/is-glob/2.0.1/package/package.json not in flight; writing +8395 silly cache afterAdd filename-regex@2.0.1 +8396 verbose afterAdd /home/wso2/.npm/filename-regex/2.0.1/package/package.json not in flight; writing +8397 silly cache afterAdd extglob@0.3.2 +8398 verbose afterAdd /home/wso2/.npm/extglob/0.3.2/package/package.json not in flight; writing +8399 verbose afterAdd /home/wso2/.npm/array-unique/0.2.1/package/package.json written +8400 verbose afterAdd /home/wso2/.npm/expand-brackets/0.1.5/package/package.json written +8401 verbose afterAdd /home/wso2/.npm/arr-diff/2.0.0/package/package.json written +8402 verbose afterAdd /home/wso2/.npm/braces/1.8.5/package/package.json written +8403 verbose afterAdd /home/wso2/.npm/is-extglob/1.0.0/package/package.json written +8404 verbose afterAdd /home/wso2/.npm/is-glob/2.0.1/package/package.json written +8405 verbose afterAdd /home/wso2/.npm/filename-regex/2.0.1/package/package.json written +8406 verbose afterAdd /home/wso2/.npm/extglob/0.3.2/package/package.json written +8407 http 304 https://registry.npmjs.org/regex-cache +8408 verbose headers { date: 'Mon, 02 Oct 2017 09:34:14 GMT', +8408 verbose headers via: '1.1 varnish', +8408 verbose headers 'cache-control': 'max-age=300', +8408 verbose headers etag: 'W/"59a97a5d-53c3"', +8408 verbose headers age: '7', +8408 verbose headers connection: 'keep-alive', +8408 verbose headers 'x-served-by': 'cache-sin18024-SIN', +8408 verbose headers 'x-cache': 'HIT', +8408 verbose headers 'x-cache-hits': '1', +8408 verbose headers 'x-timer': 'S1506936854.363935,VS0,VE0', +8408 verbose headers vary: 'Accept-Encoding, Accept' } +8409 silly get cb [ 304, +8409 silly get { date: 'Mon, 02 Oct 2017 09:34:14 GMT', +8409 silly get via: '1.1 varnish', +8409 silly get 'cache-control': 'max-age=300', +8409 silly get etag: 'W/"59a97a5d-53c3"', +8409 silly get age: '7', +8409 silly get connection: 'keep-alive', +8409 silly get 'x-served-by': 'cache-sin18024-SIN', +8409 silly get 'x-cache': 'HIT', +8409 silly get 'x-cache-hits': '1', +8409 silly get 'x-timer': 'S1506936854.363935,VS0,VE0', +8409 silly get vary: 'Accept-Encoding, Accept' } ] +8410 verbose etag https://registry.npmjs.org/regex-cache from cache +8411 verbose get saving regex-cache to /home/wso2/.npm/registry.npmjs.org/regex-cache/.cache.json +8412 silly resolveWithNewModule regex-cache@0.4.4 checking installable status +8413 silly cache add args [ 'regex-cache@^0.4.2', null ] +8414 verbose cache add spec regex-cache@^0.4.2 +8415 silly cache add parsed spec Result { +8415 silly cache add raw: 'regex-cache@^0.4.2', +8415 silly cache add scope: null, +8415 silly cache add name: 'regex-cache', +8415 silly cache add rawSpec: '^0.4.2', +8415 silly cache add spec: '>=0.4.2 <0.5.0', +8415 silly cache add type: 'range' } +8416 silly addNamed regex-cache@>=0.4.2 <0.5.0 +8417 verbose addNamed ">=0.4.2 <0.5.0" is a valid semver range for regex-cache +8418 silly addNameRange { name: 'regex-cache', range: '>=0.4.2 <0.5.0', hasData: false } +8419 silly mapToRegistry name regex-cache +8420 silly mapToRegistry using default registry +8421 silly mapToRegistry registry https://registry.npmjs.org/ +8422 silly mapToRegistry uri https://registry.npmjs.org/regex-cache +8423 verbose addNameRange registry:https://registry.npmjs.org/regex-cache not in flight; fetching +8424 verbose get https://registry.npmjs.org/regex-cache not expired, no request +8425 silly addNameRange number 2 { name: 'regex-cache', range: '>=0.4.2 <0.5.0', hasData: true } +8426 silly addNameRange versions [ 'regex-cache', +8426 silly addNameRange [ '0.1.0', +8426 silly addNameRange '0.1.1', +8426 silly addNameRange '0.2.0', +8426 silly addNameRange '0.2.1', +8426 silly addNameRange '0.3.0', +8426 silly addNameRange '0.4.1', +8426 silly addNameRange '0.4.2', +8426 silly addNameRange '0.4.3', +8426 silly addNameRange '0.4.4' ] ] +8427 silly addNamed regex-cache@0.4.4 +8428 verbose addNamed "0.4.4" is a plain semver version for regex-cache +8429 silly cache afterAdd regex-cache@0.4.4 +8430 verbose afterAdd /home/wso2/.npm/regex-cache/0.4.4/package/package.json not in flight; writing +8431 verbose afterAdd /home/wso2/.npm/regex-cache/0.4.4/package/package.json written +8432 http 304 https://registry.npmjs.org/parse-glob +8433 verbose headers { date: 'Mon, 02 Oct 2017 09:34:14 GMT', +8433 verbose headers via: '1.1 varnish', +8433 verbose headers 'cache-control': 'max-age=300', +8433 verbose headers etag: 'W/"56017142-5dd5"', +8433 verbose headers age: '0', +8433 verbose headers connection: 'keep-alive', +8433 verbose headers 'x-served-by': 'cache-sin18022-SIN', +8433 verbose headers 'x-cache': 'HIT', +8433 verbose headers 'x-cache-hits': '1', +8433 verbose headers 'x-timer': 'S1506936854.310030,VS0,VE159', +8433 verbose headers vary: 'Accept-Encoding, Accept' } +8434 silly get cb [ 304, +8434 silly get { date: 'Mon, 02 Oct 2017 09:34:14 GMT', +8434 silly get via: '1.1 varnish', +8434 silly get 'cache-control': 'max-age=300', +8434 silly get etag: 'W/"56017142-5dd5"', +8434 silly get age: '0', +8434 silly get connection: 'keep-alive', +8434 silly get 'x-served-by': 'cache-sin18022-SIN', +8434 silly get 'x-cache': 'HIT', +8434 silly get 'x-cache-hits': '1', +8434 silly get 'x-timer': 'S1506936854.310030,VS0,VE159', +8434 silly get vary: 'Accept-Encoding, Accept' } ] +8435 verbose etag https://registry.npmjs.org/parse-glob from cache +8436 verbose get saving parse-glob to /home/wso2/.npm/registry.npmjs.org/parse-glob/.cache.json +8437 silly resolveWithNewModule parse-glob@3.0.4 checking installable status +8438 silly cache add args [ 'parse-glob@^3.0.4', null ] +8439 verbose cache add spec parse-glob@^3.0.4 +8440 silly cache add parsed spec Result { +8440 silly cache add raw: 'parse-glob@^3.0.4', +8440 silly cache add scope: null, +8440 silly cache add name: 'parse-glob', +8440 silly cache add rawSpec: '^3.0.4', +8440 silly cache add spec: '>=3.0.4 <4.0.0', +8440 silly cache add type: 'range' } +8441 silly addNamed parse-glob@>=3.0.4 <4.0.0 +8442 verbose addNamed ">=3.0.4 <4.0.0" is a valid semver range for parse-glob +8443 silly addNameRange { name: 'parse-glob', range: '>=3.0.4 <4.0.0', hasData: false } +8444 silly mapToRegistry name parse-glob +8445 silly mapToRegistry using default registry +8446 silly mapToRegistry registry https://registry.npmjs.org/ +8447 silly mapToRegistry uri https://registry.npmjs.org/parse-glob +8448 verbose addNameRange registry:https://registry.npmjs.org/parse-glob not in flight; fetching +8449 verbose get https://registry.npmjs.org/parse-glob not expired, no request +8450 silly addNameRange number 2 { name: 'parse-glob', range: '>=3.0.4 <4.0.0', hasData: true } +8451 silly addNameRange versions [ 'parse-glob', +8451 silly addNameRange [ '1.0.0', +8451 silly addNameRange '1.0.1', +8451 silly addNameRange '1.0.2', +8451 silly addNameRange '1.1.0', +8451 silly addNameRange '1.2.0', +8451 silly addNameRange '2.0.0', +8451 silly addNameRange '2.0.1', +8451 silly addNameRange '2.1.0', +8451 silly addNameRange '2.1.1', +8451 silly addNameRange '3.0.0', +8451 silly addNameRange '3.0.1', +8451 silly addNameRange '3.0.2', +8451 silly addNameRange '3.0.3', +8451 silly addNameRange '3.0.4' ] ] +8452 silly addNamed parse-glob@3.0.4 +8453 verbose addNamed "3.0.4" is a plain semver version for parse-glob +8454 silly cache afterAdd parse-glob@3.0.4 +8455 verbose afterAdd /home/wso2/.npm/parse-glob/3.0.4/package/package.json not in flight; writing +8456 verbose afterAdd /home/wso2/.npm/parse-glob/3.0.4/package/package.json written +8457 http 200 https://registry.npmjs.org/kind-of +8458 verbose headers { server: 'nginx/1.10.3', +8458 verbose headers 'content-type': 'application/json', +8458 verbose headers 'last-modified': 'Fri, 29 Sep 2017 18:22:32 GMT', +8458 verbose headers etag: 'W/"59ce8f68-c168"', +8458 verbose headers 'content-encoding': 'gzip', +8458 verbose headers 'cache-control': 'max-age=300', +8458 verbose headers 'content-length': '7768', +8458 verbose headers 'accept-ranges': 'bytes', +8458 verbose headers date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8458 verbose headers via: '1.1 varnish', +8458 verbose headers age: '118', +8458 verbose headers connection: 'keep-alive', +8458 verbose headers 'x-served-by': 'cache-sin18025-SIN', +8458 verbose headers 'x-cache': 'HIT', +8458 verbose headers 'x-cache-hits': '7', +8458 verbose headers 'x-timer': 'S1506936857.351069,VS0,VE0', +8458 verbose headers vary: 'Accept-Encoding, Accept' } +8459 silly get cb [ 200, +8459 silly get { server: 'nginx/1.10.3', +8459 silly get 'content-type': 'application/json', +8459 silly get 'last-modified': 'Fri, 29 Sep 2017 18:22:32 GMT', +8459 silly get etag: 'W/"59ce8f68-c168"', +8459 silly get 'content-encoding': 'gzip', +8459 silly get 'cache-control': 'max-age=300', +8459 silly get 'content-length': '7768', +8459 silly get 'accept-ranges': 'bytes', +8459 silly get date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8459 silly get via: '1.1 varnish', +8459 silly get age: '118', +8459 silly get connection: 'keep-alive', +8459 silly get 'x-served-by': 'cache-sin18025-SIN', +8459 silly get 'x-cache': 'HIT', +8459 silly get 'x-cache-hits': '7', +8459 silly get 'x-timer': 'S1506936857.351069,VS0,VE0', +8459 silly get vary: 'Accept-Encoding, Accept' } ] +8460 verbose get saving kind-of to /home/wso2/.npm/registry.npmjs.org/kind-of/.cache.json +8461 silly resolveWithNewModule kind-of@3.2.2 checking installable status +8462 silly cache add args [ 'kind-of@^3.0.2', null ] +8463 verbose cache add spec kind-of@^3.0.2 +8464 silly cache add parsed spec Result { +8464 silly cache add raw: 'kind-of@^3.0.2', +8464 silly cache add scope: null, +8464 silly cache add name: 'kind-of', +8464 silly cache add rawSpec: '^3.0.2', +8464 silly cache add spec: '>=3.0.2 <4.0.0', +8464 silly cache add type: 'range' } +8465 silly addNamed kind-of@>=3.0.2 <4.0.0 +8466 verbose addNamed ">=3.0.2 <4.0.0" is a valid semver range for kind-of +8467 silly addNameRange { name: 'kind-of', range: '>=3.0.2 <4.0.0', hasData: false } +8468 silly mapToRegistry name kind-of +8469 silly mapToRegistry using default registry +8470 silly mapToRegistry registry https://registry.npmjs.org/ +8471 silly mapToRegistry uri https://registry.npmjs.org/kind-of +8472 verbose addNameRange registry:https://registry.npmjs.org/kind-of not in flight; fetching +8473 verbose get https://registry.npmjs.org/kind-of not expired, no request +8474 silly addNameRange number 2 { name: 'kind-of', range: '>=3.0.2 <4.0.0', hasData: true } +8475 silly addNameRange versions [ 'kind-of', +8475 silly addNameRange [ '0.1.0', +8475 silly addNameRange '0.1.1', +8475 silly addNameRange '0.1.2', +8475 silly addNameRange '1.0.0', +8475 silly addNameRange '1.0.1', +8475 silly addNameRange '1.1.0', +8475 silly addNameRange '2.0.0', +8475 silly addNameRange '2.0.1', +8475 silly addNameRange '3.0.0', +8475 silly addNameRange '3.0.1', +8475 silly addNameRange '3.0.2', +8475 silly addNameRange '3.0.3', +8475 silly addNameRange '3.0.4', +8475 silly addNameRange '3.1.0', +8475 silly addNameRange '3.2.0', +8475 silly addNameRange '3.2.1', +8475 silly addNameRange '3.2.2', +8475 silly addNameRange '4.0.0', +8475 silly addNameRange '5.0.0', +8475 silly addNameRange '5.0.1', +8475 silly addNameRange '5.0.2' ] ] +8476 silly addNamed kind-of@3.2.2 +8477 verbose addNamed "3.2.2" is a plain semver version for kind-of +8478 silly cache afterAdd kind-of@3.2.2 +8479 verbose afterAdd /home/wso2/.npm/kind-of/3.2.2/package/package.json not in flight; writing +8480 verbose afterAdd /home/wso2/.npm/kind-of/3.2.2/package/package.json written +8481 http 304 https://registry.npmjs.org/normalize-path +8482 verbose headers { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8482 verbose headers via: '1.1 varnish', +8482 verbose headers 'cache-control': 'max-age=300', +8482 verbose headers etag: 'W/"5959301f-5619"', +8482 verbose headers age: '22', +8482 verbose headers connection: 'keep-alive', +8482 verbose headers 'x-served-by': 'cache-sin18032-SIN', +8482 verbose headers 'x-cache': 'HIT', +8482 verbose headers 'x-cache-hits': '2', +8482 verbose headers 'x-timer': 'S1506936857.374163,VS0,VE0', +8482 verbose headers vary: 'Accept-Encoding, Accept' } +8483 silly get cb [ 304, +8483 silly get { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8483 silly get via: '1.1 varnish', +8483 silly get 'cache-control': 'max-age=300', +8483 silly get etag: 'W/"5959301f-5619"', +8483 silly get age: '22', +8483 silly get connection: 'keep-alive', +8483 silly get 'x-served-by': 'cache-sin18032-SIN', +8483 silly get 'x-cache': 'HIT', +8483 silly get 'x-cache-hits': '2', +8483 silly get 'x-timer': 'S1506936857.374163,VS0,VE0', +8483 silly get vary: 'Accept-Encoding, Accept' } ] +8484 verbose etag https://registry.npmjs.org/normalize-path from cache +8485 verbose get saving normalize-path to /home/wso2/.npm/registry.npmjs.org/normalize-path/.cache.json +8486 silly resolveWithNewModule normalize-path@2.1.1 checking installable status +8487 silly cache add args [ 'normalize-path@^2.0.1', null ] +8488 verbose cache add spec normalize-path@^2.0.1 +8489 silly cache add parsed spec Result { +8489 silly cache add raw: 'normalize-path@^2.0.1', +8489 silly cache add scope: null, +8489 silly cache add name: 'normalize-path', +8489 silly cache add rawSpec: '^2.0.1', +8489 silly cache add spec: '>=2.0.1 <3.0.0', +8489 silly cache add type: 'range' } +8490 silly addNamed normalize-path@>=2.0.1 <3.0.0 +8491 verbose addNamed ">=2.0.1 <3.0.0" is a valid semver range for normalize-path +8492 silly addNameRange { name: 'normalize-path', +8492 silly addNameRange range: '>=2.0.1 <3.0.0', +8492 silly addNameRange hasData: false } +8493 silly mapToRegistry name normalize-path +8494 silly mapToRegistry using default registry +8495 silly mapToRegistry registry https://registry.npmjs.org/ +8496 silly mapToRegistry uri https://registry.npmjs.org/normalize-path +8497 verbose addNameRange registry:https://registry.npmjs.org/normalize-path not in flight; fetching +8498 verbose get https://registry.npmjs.org/normalize-path not expired, no request +8499 silly addNameRange number 2 { name: 'normalize-path', +8499 silly addNameRange range: '>=2.0.1 <3.0.0', +8499 silly addNameRange hasData: true } +8500 silly addNameRange versions [ 'normalize-path', +8500 silly addNameRange [ '0.1.0', +8500 silly addNameRange '0.1.1', +8500 silly addNameRange '0.2.0', +8500 silly addNameRange '0.2.1', +8500 silly addNameRange '0.3.0', +8500 silly addNameRange '1.0.0', +8500 silly addNameRange '2.0.0', +8500 silly addNameRange '2.0.1', +8500 silly addNameRange '2.1.0', +8500 silly addNameRange '2.1.1' ] ] +8501 silly addNamed normalize-path@2.1.1 +8502 verbose addNamed "2.1.1" is a plain semver version for normalize-path +8503 silly cache afterAdd normalize-path@2.1.1 +8504 verbose afterAdd /home/wso2/.npm/normalize-path/2.1.1/package/package.json not in flight; writing +8505 verbose afterAdd /home/wso2/.npm/normalize-path/2.1.1/package/package.json written +8506 http 304 https://registry.npmjs.org/object.omit +8507 verbose headers { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8507 verbose headers via: '1.1 varnish', +8507 verbose headers 'cache-control': 'max-age=300', +8507 verbose headers etag: 'W/"59accc47-3c36"', +8507 verbose headers age: '247', +8507 verbose headers connection: 'keep-alive', +8507 verbose headers 'x-served-by': 'cache-sin18026-SIN', +8507 verbose headers 'x-cache': 'HIT', +8507 verbose headers 'x-cache-hits': '7', +8507 verbose headers 'x-timer': 'S1506936857.378032,VS0,VE0', +8507 verbose headers vary: 'Accept-Encoding, Accept' } +8508 silly get cb [ 304, +8508 silly get { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8508 silly get via: '1.1 varnish', +8508 silly get 'cache-control': 'max-age=300', +8508 silly get etag: 'W/"59accc47-3c36"', +8508 silly get age: '247', +8508 silly get connection: 'keep-alive', +8508 silly get 'x-served-by': 'cache-sin18026-SIN', +8508 silly get 'x-cache': 'HIT', +8508 silly get 'x-cache-hits': '7', +8508 silly get 'x-timer': 'S1506936857.378032,VS0,VE0', +8508 silly get vary: 'Accept-Encoding, Accept' } ] +8509 verbose etag https://registry.npmjs.org/object.omit from cache +8510 verbose get saving object.omit to /home/wso2/.npm/registry.npmjs.org/object.omit/.cache.json +8511 silly resolveWithNewModule object.omit@2.0.1 checking installable status +8512 silly cache add args [ 'object.omit@^2.0.0', null ] +8513 verbose cache add spec object.omit@^2.0.0 +8514 silly cache add parsed spec Result { +8514 silly cache add raw: 'object.omit@^2.0.0', +8514 silly cache add scope: null, +8514 silly cache add name: 'object.omit', +8514 silly cache add rawSpec: '^2.0.0', +8514 silly cache add spec: '>=2.0.0 <3.0.0', +8514 silly cache add type: 'range' } +8515 silly addNamed object.omit@>=2.0.0 <3.0.0 +8516 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for object.omit +8517 silly addNameRange { name: 'object.omit', range: '>=2.0.0 <3.0.0', hasData: false } +8518 silly mapToRegistry name object.omit +8519 silly mapToRegistry using default registry +8520 silly mapToRegistry registry https://registry.npmjs.org/ +8521 silly mapToRegistry uri https://registry.npmjs.org/object.omit +8522 verbose addNameRange registry:https://registry.npmjs.org/object.omit not in flight; fetching +8523 verbose get https://registry.npmjs.org/object.omit not expired, no request +8524 silly addNameRange number 2 { name: 'object.omit', range: '>=2.0.0 <3.0.0', hasData: true } +8525 silly addNameRange versions [ 'object.omit', +8525 silly addNameRange [ '0.2.0', '0.2.1', '1.1.0', '2.0.0', '2.0.1', '3.0.0' ] ] +8526 silly addNamed object.omit@2.0.1 +8527 verbose addNamed "2.0.1" is a plain semver version for object.omit +8528 silly cache afterAdd object.omit@2.0.1 +8529 verbose afterAdd /home/wso2/.npm/object.omit/2.0.1/package/package.json not in flight; writing +8530 verbose afterAdd /home/wso2/.npm/object.omit/2.0.1/package/package.json written +8531 silly fetchNamedPackageData arr-flatten +8532 silly mapToRegistry name arr-flatten +8533 silly mapToRegistry using default registry +8534 silly mapToRegistry registry https://registry.npmjs.org/ +8535 silly mapToRegistry uri https://registry.npmjs.org/arr-flatten +8536 verbose request uri https://registry.npmjs.org/arr-flatten +8537 verbose request no auth needed +8538 info attempt registry request try #1 at 3:04:17 PM +8539 verbose etag W/"59ae632e-43c6" +8540 verbose lastModified Tue, 05 Sep 2017 08:41:18 GMT +8541 http request GET https://registry.npmjs.org/arr-flatten +8542 http 304 https://registry.npmjs.org/arr-flatten +8543 verbose headers { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8543 verbose headers via: '1.1 varnish', +8543 verbose headers 'cache-control': 'max-age=300', +8543 verbose headers etag: 'W/"59ae632e-43c6"', +8543 verbose headers age: '58', +8543 verbose headers connection: 'keep-alive', +8543 verbose headers 'x-served-by': 'cache-sin18020-SIN', +8543 verbose headers 'x-cache': 'HIT', +8543 verbose headers 'x-cache-hits': '1', +8543 verbose headers 'x-timer': 'S1506936858.564855,VS0,VE0', +8543 verbose headers vary: 'Accept-Encoding, Accept' } +8544 silly get cb [ 304, +8544 silly get { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8544 silly get via: '1.1 varnish', +8544 silly get 'cache-control': 'max-age=300', +8544 silly get etag: 'W/"59ae632e-43c6"', +8544 silly get age: '58', +8544 silly get connection: 'keep-alive', +8544 silly get 'x-served-by': 'cache-sin18020-SIN', +8544 silly get 'x-cache': 'HIT', +8544 silly get 'x-cache-hits': '1', +8544 silly get 'x-timer': 'S1506936858.564855,VS0,VE0', +8544 silly get vary: 'Accept-Encoding, Accept' } ] +8545 verbose etag https://registry.npmjs.org/arr-flatten from cache +8546 verbose get saving arr-flatten to /home/wso2/.npm/registry.npmjs.org/arr-flatten/.cache.json +8547 silly resolveWithNewModule arr-flatten@1.1.0 checking installable status +8548 silly cache add args [ 'arr-flatten@^1.0.1', null ] +8549 verbose cache add spec arr-flatten@^1.0.1 +8550 silly cache add parsed spec Result { +8550 silly cache add raw: 'arr-flatten@^1.0.1', +8550 silly cache add scope: null, +8550 silly cache add name: 'arr-flatten', +8550 silly cache add rawSpec: '^1.0.1', +8550 silly cache add spec: '>=1.0.1 <2.0.0', +8550 silly cache add type: 'range' } +8551 silly addNamed arr-flatten@>=1.0.1 <2.0.0 +8552 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for arr-flatten +8553 silly addNameRange { name: 'arr-flatten', range: '>=1.0.1 <2.0.0', hasData: false } +8554 silly mapToRegistry name arr-flatten +8555 silly mapToRegistry using default registry +8556 silly mapToRegistry registry https://registry.npmjs.org/ +8557 silly mapToRegistry uri https://registry.npmjs.org/arr-flatten +8558 verbose addNameRange registry:https://registry.npmjs.org/arr-flatten not in flight; fetching +8559 verbose get https://registry.npmjs.org/arr-flatten not expired, no request +8560 silly addNameRange number 2 { name: 'arr-flatten', range: '>=1.0.1 <2.0.0', hasData: true } +8561 silly addNameRange versions [ 'arr-flatten', +8561 silly addNameRange [ '0.1.0', +8561 silly addNameRange '0.2.0', +8561 silly addNameRange '0.2.1', +8561 silly addNameRange '1.0.0', +8561 silly addNameRange '1.0.1', +8561 silly addNameRange '1.0.2', +8561 silly addNameRange '1.0.3', +8561 silly addNameRange '1.1.0' ] ] +8562 silly addNamed arr-flatten@1.1.0 +8563 verbose addNamed "1.1.0" is a plain semver version for arr-flatten +8564 silly cache afterAdd arr-flatten@1.1.0 +8565 verbose afterAdd /home/wso2/.npm/arr-flatten/1.1.0/package/package.json not in flight; writing +8566 verbose afterAdd /home/wso2/.npm/arr-flatten/1.1.0/package/package.json written +8567 silly fetchNamedPackageData expand-range +8568 silly mapToRegistry name expand-range +8569 silly mapToRegistry using default registry +8570 silly mapToRegistry registry https://registry.npmjs.org/ +8571 silly mapToRegistry uri https://registry.npmjs.org/expand-range +8572 silly fetchNamedPackageData preserve +8573 silly mapToRegistry name preserve +8574 silly mapToRegistry using default registry +8575 silly mapToRegistry registry https://registry.npmjs.org/ +8576 silly mapToRegistry uri https://registry.npmjs.org/preserve +8577 silly fetchNamedPackageData repeat-element +8578 silly mapToRegistry name repeat-element +8579 silly mapToRegistry using default registry +8580 silly mapToRegistry registry https://registry.npmjs.org/ +8581 silly mapToRegistry uri https://registry.npmjs.org/repeat-element +8582 verbose request uri https://registry.npmjs.org/expand-range +8583 verbose request no auth needed +8584 info attempt registry request try #1 at 3:04:17 PM +8585 verbose etag W/"5911e677-8bce" +8586 verbose lastModified Tue, 09 May 2017 15:55:35 GMT +8587 http request GET https://registry.npmjs.org/expand-range +8588 verbose request uri https://registry.npmjs.org/preserve +8589 verbose request no auth needed +8590 info attempt registry request try #1 at 3:04:17 PM +8591 verbose etag W/"54b1a7d2-2680" +8592 verbose lastModified Sat, 10 Jan 2015 22:29:38 GMT +8593 http request GET https://registry.npmjs.org/preserve +8594 verbose request uri https://registry.npmjs.org/repeat-element +8595 verbose request no auth needed +8596 info attempt registry request try #1 at 3:04:17 PM +8597 verbose etag W/"554ad9c5-1d07" +8598 verbose lastModified Thu, 07 May 2015 03:19:33 GMT +8599 http request GET https://registry.npmjs.org/repeat-element +8600 http 304 https://registry.npmjs.org/preserve +8601 verbose headers { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8601 verbose headers via: '1.1 varnish', +8601 verbose headers 'cache-control': 'max-age=300', +8601 verbose headers etag: 'W/"54b1a7d2-2680"', +8601 verbose headers age: '248', +8601 verbose headers connection: 'keep-alive', +8601 verbose headers 'x-served-by': 'cache-sin18028-SIN', +8601 verbose headers 'x-cache': 'HIT', +8601 verbose headers 'x-cache-hits': '2', +8601 verbose headers 'x-timer': 'S1506936858.758656,VS0,VE0', +8601 verbose headers vary: 'Accept-Encoding, Accept' } +8602 silly get cb [ 304, +8602 silly get { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8602 silly get via: '1.1 varnish', +8602 silly get 'cache-control': 'max-age=300', +8602 silly get etag: 'W/"54b1a7d2-2680"', +8602 silly get age: '248', +8602 silly get connection: 'keep-alive', +8602 silly get 'x-served-by': 'cache-sin18028-SIN', +8602 silly get 'x-cache': 'HIT', +8602 silly get 'x-cache-hits': '2', +8602 silly get 'x-timer': 'S1506936858.758656,VS0,VE0', +8602 silly get vary: 'Accept-Encoding, Accept' } ] +8603 verbose etag https://registry.npmjs.org/preserve from cache +8604 verbose get saving preserve to /home/wso2/.npm/registry.npmjs.org/preserve/.cache.json +8605 silly resolveWithNewModule preserve@0.2.0 checking installable status +8606 silly cache add args [ 'preserve@^0.2.0', null ] +8607 verbose cache add spec preserve@^0.2.0 +8608 silly cache add parsed spec Result { +8608 silly cache add raw: 'preserve@^0.2.0', +8608 silly cache add scope: null, +8608 silly cache add name: 'preserve', +8608 silly cache add rawSpec: '^0.2.0', +8608 silly cache add spec: '>=0.2.0 <0.3.0', +8608 silly cache add type: 'range' } +8609 silly addNamed preserve@>=0.2.0 <0.3.0 +8610 verbose addNamed ">=0.2.0 <0.3.0" is a valid semver range for preserve +8611 silly addNameRange { name: 'preserve', range: '>=0.2.0 <0.3.0', hasData: false } +8612 silly mapToRegistry name preserve +8613 silly mapToRegistry using default registry +8614 silly mapToRegistry registry https://registry.npmjs.org/ +8615 silly mapToRegistry uri https://registry.npmjs.org/preserve +8616 verbose addNameRange registry:https://registry.npmjs.org/preserve not in flight; fetching +8617 verbose get https://registry.npmjs.org/preserve not expired, no request +8618 silly addNameRange number 2 { name: 'preserve', range: '>=0.2.0 <0.3.0', hasData: true } +8619 silly addNameRange versions [ 'preserve', [ '0.1.0', '0.1.1', '0.1.2', '0.1.3', '0.2.0' ] ] +8620 silly addNamed preserve@0.2.0 +8621 verbose addNamed "0.2.0" is a plain semver version for preserve +8622 silly cache afterAdd preserve@0.2.0 +8623 verbose afterAdd /home/wso2/.npm/preserve/0.2.0/package/package.json not in flight; writing +8624 verbose afterAdd /home/wso2/.npm/preserve/0.2.0/package/package.json written +8625 http 304 https://registry.npmjs.org/repeat-element +8626 verbose headers { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8626 verbose headers via: '1.1 varnish', +8626 verbose headers 'cache-control': 'max-age=300', +8626 verbose headers etag: 'W/"554ad9c5-1d07"', +8626 verbose headers age: '58', +8626 verbose headers connection: 'keep-alive', +8626 verbose headers 'x-served-by': 'cache-sin18021-SIN', +8626 verbose headers 'x-cache': 'HIT', +8626 verbose headers 'x-cache-hits': '4', +8626 verbose headers 'x-timer': 'S1506936858.768392,VS0,VE0', +8626 verbose headers vary: 'Accept-Encoding, Accept' } +8627 silly get cb [ 304, +8627 silly get { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8627 silly get via: '1.1 varnish', +8627 silly get 'cache-control': 'max-age=300', +8627 silly get etag: 'W/"554ad9c5-1d07"', +8627 silly get age: '58', +8627 silly get connection: 'keep-alive', +8627 silly get 'x-served-by': 'cache-sin18021-SIN', +8627 silly get 'x-cache': 'HIT', +8627 silly get 'x-cache-hits': '4', +8627 silly get 'x-timer': 'S1506936858.768392,VS0,VE0', +8627 silly get vary: 'Accept-Encoding, Accept' } ] +8628 verbose etag https://registry.npmjs.org/repeat-element from cache +8629 verbose get saving repeat-element to /home/wso2/.npm/registry.npmjs.org/repeat-element/.cache.json +8630 silly resolveWithNewModule repeat-element@1.1.2 checking installable status +8631 silly cache add args [ 'repeat-element@^1.1.2', null ] +8632 verbose cache add spec repeat-element@^1.1.2 +8633 silly cache add parsed spec Result { +8633 silly cache add raw: 'repeat-element@^1.1.2', +8633 silly cache add scope: null, +8633 silly cache add name: 'repeat-element', +8633 silly cache add rawSpec: '^1.1.2', +8633 silly cache add spec: '>=1.1.2 <2.0.0', +8633 silly cache add type: 'range' } +8634 silly addNamed repeat-element@>=1.1.2 <2.0.0 +8635 verbose addNamed ">=1.1.2 <2.0.0" is a valid semver range for repeat-element +8636 silly addNameRange { name: 'repeat-element', +8636 silly addNameRange range: '>=1.1.2 <2.0.0', +8636 silly addNameRange hasData: false } +8637 silly mapToRegistry name repeat-element +8638 silly mapToRegistry using default registry +8639 silly mapToRegistry registry https://registry.npmjs.org/ +8640 silly mapToRegistry uri https://registry.npmjs.org/repeat-element +8641 verbose addNameRange registry:https://registry.npmjs.org/repeat-element not in flight; fetching +8642 verbose get https://registry.npmjs.org/repeat-element not expired, no request +8643 silly addNameRange number 2 { name: 'repeat-element', +8643 silly addNameRange range: '>=1.1.2 <2.0.0', +8643 silly addNameRange hasData: true } +8644 silly addNameRange versions [ 'repeat-element', [ '1.0.0', '1.1.0', '1.1.1', '1.1.2' ] ] +8645 silly addNamed repeat-element@1.1.2 +8646 verbose addNamed "1.1.2" is a plain semver version for repeat-element +8647 silly cache afterAdd repeat-element@1.1.2 +8648 verbose afterAdd /home/wso2/.npm/repeat-element/1.1.2/package/package.json not in flight; writing +8649 verbose afterAdd /home/wso2/.npm/repeat-element/1.1.2/package/package.json written +8650 http 304 https://registry.npmjs.org/expand-range +8651 verbose headers { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8651 verbose headers via: '1.1 varnish', +8651 verbose headers 'cache-control': 'max-age=300', +8651 verbose headers etag: 'W/"5911e677-8bce"', +8651 verbose headers age: '59', +8651 verbose headers connection: 'keep-alive', +8651 verbose headers 'x-served-by': 'cache-sin18020-SIN', +8651 verbose headers 'x-cache': 'HIT', +8651 verbose headers 'x-cache-hits': '1', +8651 verbose headers 'x-timer': 'S1506936858.781598,VS0,VE0', +8651 verbose headers vary: 'Accept-Encoding, Accept' } +8652 silly get cb [ 304, +8652 silly get { date: 'Mon, 02 Oct 2017 09:34:17 GMT', +8652 silly get via: '1.1 varnish', +8652 silly get 'cache-control': 'max-age=300', +8652 silly get etag: 'W/"5911e677-8bce"', +8652 silly get age: '59', +8652 silly get connection: 'keep-alive', +8652 silly get 'x-served-by': 'cache-sin18020-SIN', +8652 silly get 'x-cache': 'HIT', +8652 silly get 'x-cache-hits': '1', +8652 silly get 'x-timer': 'S1506936858.781598,VS0,VE0', +8652 silly get vary: 'Accept-Encoding, Accept' } ] +8653 verbose etag https://registry.npmjs.org/expand-range from cache +8654 verbose get saving expand-range to /home/wso2/.npm/registry.npmjs.org/expand-range/.cache.json +8655 silly resolveWithNewModule expand-range@1.8.2 checking installable status +8656 silly cache add args [ 'expand-range@^1.8.1', null ] +8657 verbose cache add spec expand-range@^1.8.1 +8658 silly cache add parsed spec Result { +8658 silly cache add raw: 'expand-range@^1.8.1', +8658 silly cache add scope: null, +8658 silly cache add name: 'expand-range', +8658 silly cache add rawSpec: '^1.8.1', +8658 silly cache add spec: '>=1.8.1 <2.0.0', +8658 silly cache add type: 'range' } +8659 silly addNamed expand-range@>=1.8.1 <2.0.0 +8660 verbose addNamed ">=1.8.1 <2.0.0" is a valid semver range for expand-range +8661 silly addNameRange { name: 'expand-range', range: '>=1.8.1 <2.0.0', hasData: false } +8662 silly mapToRegistry name expand-range +8663 silly mapToRegistry using default registry +8664 silly mapToRegistry registry https://registry.npmjs.org/ +8665 silly mapToRegistry uri https://registry.npmjs.org/expand-range +8666 verbose addNameRange registry:https://registry.npmjs.org/expand-range not in flight; fetching +8667 verbose get https://registry.npmjs.org/expand-range not expired, no request +8668 silly addNameRange number 2 { name: 'expand-range', range: '>=1.8.1 <2.0.0', hasData: true } +8669 silly addNameRange versions [ 'expand-range', +8669 silly addNameRange [ '0.1.0', +8669 silly addNameRange '0.1.1', +8669 silly addNameRange '0.2.0', +8669 silly addNameRange '0.2.1', +8669 silly addNameRange '0.3.0', +8669 silly addNameRange '0.3.1', +8669 silly addNameRange '1.0.0', +8669 silly addNameRange '1.1.0', +8669 silly addNameRange '1.2.0', +8669 silly addNameRange '1.4.0', +8669 silly addNameRange '1.5.0', +8669 silly addNameRange '1.6.0', +8669 silly addNameRange '1.7.0', +8669 silly addNameRange '1.8.0', +8669 silly addNameRange '1.8.1', +8669 silly addNameRange '1.8.2', +8669 silly addNameRange '2.0.0', +8669 silly addNameRange '2.0.1' ] ] +8670 silly addNamed expand-range@1.8.2 +8671 verbose addNamed "1.8.2" is a plain semver version for expand-range +8672 silly cache afterAdd expand-range@1.8.2 +8673 verbose afterAdd /home/wso2/.npm/expand-range/1.8.2/package/package.json not in flight; writing +8674 verbose afterAdd /home/wso2/.npm/expand-range/1.8.2/package/package.json written +8675 silly fetchNamedPackageData fill-range +8676 silly mapToRegistry name fill-range +8677 silly mapToRegistry using default registry +8678 silly mapToRegistry registry https://registry.npmjs.org/ +8679 silly mapToRegistry uri https://registry.npmjs.org/fill-range +8680 verbose request uri https://registry.npmjs.org/fill-range +8681 verbose request no auth needed +8682 info attempt registry request try #1 at 3:04:17 PM +8683 verbose etag W/"58fc46eb-db77" +8684 verbose lastModified Sun, 23 Apr 2017 06:17:15 GMT +8685 http request GET https://registry.npmjs.org/fill-range +8686 http 304 https://registry.npmjs.org/fill-range +8687 verbose headers { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8687 verbose headers via: '1.1 varnish', +8687 verbose headers 'cache-control': 'max-age=300', +8687 verbose headers etag: 'W/"58fc46eb-db77"', +8687 verbose headers age: '20', +8687 verbose headers connection: 'keep-alive', +8687 verbose headers 'x-served-by': 'cache-sin18028-SIN', +8687 verbose headers 'x-cache': 'HIT', +8687 verbose headers 'x-cache-hits': '10', +8687 verbose headers 'x-timer': 'S1506936858.046894,VS0,VE0', +8687 verbose headers vary: 'Accept-Encoding, Accept' } +8688 silly get cb [ 304, +8688 silly get { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8688 silly get via: '1.1 varnish', +8688 silly get 'cache-control': 'max-age=300', +8688 silly get etag: 'W/"58fc46eb-db77"', +8688 silly get age: '20', +8688 silly get connection: 'keep-alive', +8688 silly get 'x-served-by': 'cache-sin18028-SIN', +8688 silly get 'x-cache': 'HIT', +8688 silly get 'x-cache-hits': '10', +8688 silly get 'x-timer': 'S1506936858.046894,VS0,VE0', +8688 silly get vary: 'Accept-Encoding, Accept' } ] +8689 verbose etag https://registry.npmjs.org/fill-range from cache +8690 verbose get saving fill-range to /home/wso2/.npm/registry.npmjs.org/fill-range/.cache.json +8691 silly resolveWithNewModule fill-range@2.2.3 checking installable status +8692 silly cache add args [ 'fill-range@^2.1.0', null ] +8693 verbose cache add spec fill-range@^2.1.0 +8694 silly cache add parsed spec Result { +8694 silly cache add raw: 'fill-range@^2.1.0', +8694 silly cache add scope: null, +8694 silly cache add name: 'fill-range', +8694 silly cache add rawSpec: '^2.1.0', +8694 silly cache add spec: '>=2.1.0 <3.0.0', +8694 silly cache add type: 'range' } +8695 silly addNamed fill-range@>=2.1.0 <3.0.0 +8696 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for fill-range +8697 silly addNameRange { name: 'fill-range', range: '>=2.1.0 <3.0.0', hasData: false } +8698 silly mapToRegistry name fill-range +8699 silly mapToRegistry using default registry +8700 silly mapToRegistry registry https://registry.npmjs.org/ +8701 silly mapToRegistry uri https://registry.npmjs.org/fill-range +8702 verbose addNameRange registry:https://registry.npmjs.org/fill-range not in flight; fetching +8703 verbose get https://registry.npmjs.org/fill-range not expired, no request +8704 silly addNameRange number 2 { name: 'fill-range', range: '>=2.1.0 <3.0.0', hasData: true } +8705 silly addNameRange versions [ 'fill-range', +8705 silly addNameRange [ '0.1.0', +8705 silly addNameRange '0.1.1', +8705 silly addNameRange '0.2.0', +8705 silly addNameRange '1.0.0', +8705 silly addNameRange '1.1.0', +8705 silly addNameRange '1.2.0', +8705 silly addNameRange '1.3.0', +8705 silly addNameRange '1.4.0', +8705 silly addNameRange '1.5.0', +8705 silly addNameRange '1.6.0', +8705 silly addNameRange '1.7.0', +8705 silly addNameRange '1.7.1', +8705 silly addNameRange '1.8.0', +8705 silly addNameRange '1.9.0', +8705 silly addNameRange '2.0.0', +8705 silly addNameRange '2.1.0', +8705 silly addNameRange '2.2.0', +8705 silly addNameRange '2.2.1', +8705 silly addNameRange '2.2.2', +8705 silly addNameRange '2.2.3', +8705 silly addNameRange '3.0.0', +8705 silly addNameRange '3.0.1', +8705 silly addNameRange '3.0.2', +8705 silly addNameRange '3.0.3', +8705 silly addNameRange '3.1.0', +8705 silly addNameRange '3.1.1', +8705 silly addNameRange '4.0.0' ] ] +8706 silly addNamed fill-range@2.2.3 +8707 verbose addNamed "2.2.3" is a plain semver version for fill-range +8708 silly cache afterAdd fill-range@2.2.3 +8709 verbose afterAdd /home/wso2/.npm/fill-range/2.2.3/package/package.json not in flight; writing +8710 verbose afterAdd /home/wso2/.npm/fill-range/2.2.3/package/package.json written +8711 silly fetchNamedPackageData is-number +8712 silly mapToRegistry name is-number +8713 silly mapToRegistry using default registry +8714 silly mapToRegistry registry https://registry.npmjs.org/ +8715 silly mapToRegistry uri https://registry.npmjs.org/is-number +8716 silly fetchNamedPackageData isobject +8717 silly mapToRegistry name isobject +8718 silly mapToRegistry using default registry +8719 silly mapToRegistry registry https://registry.npmjs.org/ +8720 silly mapToRegistry uri https://registry.npmjs.org/isobject +8721 silly fetchNamedPackageData randomatic +8722 silly mapToRegistry name randomatic +8723 silly mapToRegistry using default registry +8724 silly mapToRegistry registry https://registry.npmjs.org/ +8725 silly mapToRegistry uri https://registry.npmjs.org/randomatic +8726 silly fetchNamedPackageData repeat-string +8727 silly mapToRegistry name repeat-string +8728 silly mapToRegistry using default registry +8729 silly mapToRegistry registry https://registry.npmjs.org/ +8730 silly mapToRegistry uri https://registry.npmjs.org/repeat-string +8731 verbose request uri https://registry.npmjs.org/is-number +8732 verbose request no auth needed +8733 info attempt registry request try #1 at 3:04:18 PM +8734 verbose etag W/"59aaebba-5165" +8735 verbose lastModified Sat, 02 Sep 2017 17:34:50 GMT +8736 http request GET https://registry.npmjs.org/is-number +8737 verbose request uri https://registry.npmjs.org/randomatic +8738 verbose request no auth needed +8739 info attempt registry request try #1 at 3:04:18 PM +8740 verbose etag W/"59a0ba9d-7682" +8741 verbose lastModified Sat, 26 Aug 2017 00:02:37 GMT +8742 http request GET https://registry.npmjs.org/randomatic +8743 verbose request uri https://registry.npmjs.org/isobject +8744 verbose request no auth needed +8745 info attempt registry request try #1 at 3:04:18 PM +8746 verbose etag W/"59569632-4c10" +8747 verbose lastModified Fri, 30 Jun 2017 18:19:30 GMT +8748 http request GET https://registry.npmjs.org/isobject +8749 verbose request uri https://registry.npmjs.org/repeat-string +8750 verbose request no auth needed +8751 info attempt registry request try #1 at 3:04:18 PM +8752 verbose etag W/"59593065-7864" +8753 verbose lastModified Sun, 02 Jul 2017 17:41:57 GMT +8754 http request GET https://registry.npmjs.org/repeat-string +8755 http 304 https://registry.npmjs.org/repeat-string +8756 verbose headers { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8756 verbose headers via: '1.1 varnish', +8756 verbose headers 'cache-control': 'max-age=300', +8756 verbose headers etag: 'W/"59593065-7864"', +8756 verbose headers age: '119', +8756 verbose headers connection: 'keep-alive', +8756 verbose headers 'x-served-by': 'cache-sin18023-SIN', +8756 verbose headers 'x-cache': 'HIT', +8756 verbose headers 'x-cache-hits': '5', +8756 verbose headers 'x-timer': 'S1506936858.437956,VS0,VE0', +8756 verbose headers vary: 'Accept-Encoding, Accept' } +8757 silly get cb [ 304, +8757 silly get { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8757 silly get via: '1.1 varnish', +8757 silly get 'cache-control': 'max-age=300', +8757 silly get etag: 'W/"59593065-7864"', +8757 silly get age: '119', +8757 silly get connection: 'keep-alive', +8757 silly get 'x-served-by': 'cache-sin18023-SIN', +8757 silly get 'x-cache': 'HIT', +8757 silly get 'x-cache-hits': '5', +8757 silly get 'x-timer': 'S1506936858.437956,VS0,VE0', +8757 silly get vary: 'Accept-Encoding, Accept' } ] +8758 verbose etag https://registry.npmjs.org/repeat-string from cache +8759 verbose get saving repeat-string to /home/wso2/.npm/registry.npmjs.org/repeat-string/.cache.json +8760 silly resolveWithNewModule repeat-string@1.6.1 checking installable status +8761 silly cache add args [ 'repeat-string@^1.5.2', null ] +8762 verbose cache add spec repeat-string@^1.5.2 +8763 silly cache add parsed spec Result { +8763 silly cache add raw: 'repeat-string@^1.5.2', +8763 silly cache add scope: null, +8763 silly cache add name: 'repeat-string', +8763 silly cache add rawSpec: '^1.5.2', +8763 silly cache add spec: '>=1.5.2 <2.0.0', +8763 silly cache add type: 'range' } +8764 silly addNamed repeat-string@>=1.5.2 <2.0.0 +8765 verbose addNamed ">=1.5.2 <2.0.0" is a valid semver range for repeat-string +8766 silly addNameRange { name: 'repeat-string', +8766 silly addNameRange range: '>=1.5.2 <2.0.0', +8766 silly addNameRange hasData: false } +8767 silly mapToRegistry name repeat-string +8768 silly mapToRegistry using default registry +8769 silly mapToRegistry registry https://registry.npmjs.org/ +8770 silly mapToRegistry uri https://registry.npmjs.org/repeat-string +8771 verbose addNameRange registry:https://registry.npmjs.org/repeat-string not in flight; fetching +8772 verbose get https://registry.npmjs.org/repeat-string not expired, no request +8773 silly addNameRange number 2 { name: 'repeat-string', range: '>=1.5.2 <2.0.0', hasData: true } +8774 silly addNameRange versions [ 'repeat-string', +8774 silly addNameRange [ '0.1.0', +8774 silly addNameRange '0.1.1', +8774 silly addNameRange '0.1.2', +8774 silly addNameRange '0.2.0', +8774 silly addNameRange '0.2.1', +8774 silly addNameRange '0.2.2', +8774 silly addNameRange '1.0.0', +8774 silly addNameRange '1.1.0', +8774 silly addNameRange '1.2.0', +8774 silly addNameRange '1.3.0', +8774 silly addNameRange '1.4.0', +8774 silly addNameRange '1.5.0', +8774 silly addNameRange '1.5.1', +8774 silly addNameRange '1.5.2', +8774 silly addNameRange '1.5.4', +8774 silly addNameRange '1.6.0', +8774 silly addNameRange '1.6.1' ] ] +8775 silly addNamed repeat-string@1.6.1 +8776 verbose addNamed "1.6.1" is a plain semver version for repeat-string +8777 silly cache afterAdd repeat-string@1.6.1 +8778 verbose afterAdd /home/wso2/.npm/repeat-string/1.6.1/package/package.json not in flight; writing +8779 verbose afterAdd /home/wso2/.npm/repeat-string/1.6.1/package/package.json written +8780 http 304 https://registry.npmjs.org/isobject +8781 verbose headers { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8781 verbose headers via: '1.1 varnish', +8781 verbose headers 'cache-control': 'max-age=300', +8781 verbose headers etag: 'W/"59569632-4c10"', +8781 verbose headers age: '288', +8781 verbose headers connection: 'keep-alive', +8781 verbose headers 'x-served-by': 'cache-sin18022-SIN', +8781 verbose headers 'x-cache': 'HIT', +8781 verbose headers 'x-cache-hits': '8', +8781 verbose headers 'x-timer': 'S1506936858.445106,VS0,VE0', +8781 verbose headers vary: 'Accept-Encoding, Accept' } +8782 silly get cb [ 304, +8782 silly get { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8782 silly get via: '1.1 varnish', +8782 silly get 'cache-control': 'max-age=300', +8782 silly get etag: 'W/"59569632-4c10"', +8782 silly get age: '288', +8782 silly get connection: 'keep-alive', +8782 silly get 'x-served-by': 'cache-sin18022-SIN', +8782 silly get 'x-cache': 'HIT', +8782 silly get 'x-cache-hits': '8', +8782 silly get 'x-timer': 'S1506936858.445106,VS0,VE0', +8782 silly get vary: 'Accept-Encoding, Accept' } ] +8783 verbose etag https://registry.npmjs.org/isobject from cache +8784 verbose get saving isobject to /home/wso2/.npm/registry.npmjs.org/isobject/.cache.json +8785 silly resolveWithNewModule isobject@2.1.0 checking installable status +8786 silly cache add args [ 'isobject@^2.0.0', null ] +8787 verbose cache add spec isobject@^2.0.0 +8788 silly cache add parsed spec Result { +8788 silly cache add raw: 'isobject@^2.0.0', +8788 silly cache add scope: null, +8788 silly cache add name: 'isobject', +8788 silly cache add rawSpec: '^2.0.0', +8788 silly cache add spec: '>=2.0.0 <3.0.0', +8788 silly cache add type: 'range' } +8789 silly addNamed isobject@>=2.0.0 <3.0.0 +8790 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for isobject +8791 silly addNameRange { name: 'isobject', range: '>=2.0.0 <3.0.0', hasData: false } +8792 silly mapToRegistry name isobject +8793 silly mapToRegistry using default registry +8794 silly mapToRegistry registry https://registry.npmjs.org/ +8795 silly mapToRegistry uri https://registry.npmjs.org/isobject +8796 verbose addNameRange registry:https://registry.npmjs.org/isobject not in flight; fetching +8797 verbose get https://registry.npmjs.org/isobject not expired, no request +8798 silly addNameRange number 2 { name: 'isobject', range: '>=2.0.0 <3.0.0', hasData: true } +8799 silly addNameRange versions [ 'isobject', +8799 silly addNameRange [ '0.1.0', +8799 silly addNameRange '0.1.1', +8799 silly addNameRange '0.2.0', +8799 silly addNameRange '1.0.0', +8799 silly addNameRange '1.0.1', +8799 silly addNameRange '1.0.2', +8799 silly addNameRange '2.0.0', +8799 silly addNameRange '2.1.0', +8799 silly addNameRange '3.0.0', +8799 silly addNameRange '3.0.1' ] ] +8800 silly addNamed isobject@2.1.0 +8801 verbose addNamed "2.1.0" is a plain semver version for isobject +8802 silly cache afterAdd isobject@2.1.0 +8803 verbose afterAdd /home/wso2/.npm/isobject/2.1.0/package/package.json not in flight; writing +8804 verbose afterAdd /home/wso2/.npm/isobject/2.1.0/package/package.json written +8805 http 200 https://registry.npmjs.org/randomatic +8806 verbose headers { server: 'nginx/1.10.3', +8806 verbose headers 'content-type': 'application/json', +8806 verbose headers 'last-modified': 'Fri, 22 Sep 2017 08:49:53 GMT', +8806 verbose headers etag: 'W/"59c4ceb1-7694"', +8806 verbose headers 'content-encoding': 'gzip', +8806 verbose headers 'cache-control': 'max-age=300', +8806 verbose headers 'content-length': '5133', +8806 verbose headers 'accept-ranges': 'bytes', +8806 verbose headers date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8806 verbose headers via: '1.1 varnish', +8806 verbose headers age: '5', +8806 verbose headers connection: 'keep-alive', +8806 verbose headers 'x-served-by': 'cache-sin18030-SIN', +8806 verbose headers 'x-cache': 'HIT', +8806 verbose headers 'x-cache-hits': '1', +8806 verbose headers 'x-timer': 'S1506936858.456824,VS0,VE0', +8806 verbose headers vary: 'Accept-Encoding, Accept' } +8807 silly get cb [ 200, +8807 silly get { server: 'nginx/1.10.3', +8807 silly get 'content-type': 'application/json', +8807 silly get 'last-modified': 'Fri, 22 Sep 2017 08:49:53 GMT', +8807 silly get etag: 'W/"59c4ceb1-7694"', +8807 silly get 'content-encoding': 'gzip', +8807 silly get 'cache-control': 'max-age=300', +8807 silly get 'content-length': '5133', +8807 silly get 'accept-ranges': 'bytes', +8807 silly get date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8807 silly get via: '1.1 varnish', +8807 silly get age: '5', +8807 silly get connection: 'keep-alive', +8807 silly get 'x-served-by': 'cache-sin18030-SIN', +8807 silly get 'x-cache': 'HIT', +8807 silly get 'x-cache-hits': '1', +8807 silly get 'x-timer': 'S1506936858.456824,VS0,VE0', +8807 silly get vary: 'Accept-Encoding, Accept' } ] +8808 verbose get saving randomatic to /home/wso2/.npm/registry.npmjs.org/randomatic/.cache.json +8809 silly resolveWithNewModule randomatic@1.1.7 checking installable status +8810 silly cache add args [ 'randomatic@^1.1.3', null ] +8811 verbose cache add spec randomatic@^1.1.3 +8812 silly cache add parsed spec Result { +8812 silly cache add raw: 'randomatic@^1.1.3', +8812 silly cache add scope: null, +8812 silly cache add name: 'randomatic', +8812 silly cache add rawSpec: '^1.1.3', +8812 silly cache add spec: '>=1.1.3 <2.0.0', +8812 silly cache add type: 'range' } +8813 silly addNamed randomatic@>=1.1.3 <2.0.0 +8814 verbose addNamed ">=1.1.3 <2.0.0" is a valid semver range for randomatic +8815 silly addNameRange { name: 'randomatic', range: '>=1.1.3 <2.0.0', hasData: false } +8816 silly mapToRegistry name randomatic +8817 silly mapToRegistry using default registry +8818 silly mapToRegistry registry https://registry.npmjs.org/ +8819 silly mapToRegistry uri https://registry.npmjs.org/randomatic +8820 verbose addNameRange registry:https://registry.npmjs.org/randomatic not in flight; fetching +8821 verbose get https://registry.npmjs.org/randomatic not expired, no request +8822 silly addNameRange number 2 { name: 'randomatic', range: '>=1.1.3 <2.0.0', hasData: true } +8823 silly addNameRange versions [ 'randomatic', +8823 silly addNameRange [ '0.1.0', +8823 silly addNameRange '0.1.1', +8823 silly addNameRange '0.1.2', +8823 silly addNameRange '0.1.3', +8823 silly addNameRange '0.1.4', +8823 silly addNameRange '1.0.0', +8823 silly addNameRange '1.0.1', +8823 silly addNameRange '1.1.0', +8823 silly addNameRange '1.1.1', +8823 silly addNameRange '1.1.2', +8823 silly addNameRange '1.1.3', +8823 silly addNameRange '1.1.4', +8823 silly addNameRange '1.1.5', +8823 silly addNameRange '1.1.6', +8823 silly addNameRange '1.1.7' ] ] +8824 silly addNamed randomatic@1.1.7 +8825 verbose addNamed "1.1.7" is a plain semver version for randomatic +8826 silly cache afterAdd randomatic@1.1.7 +8827 verbose afterAdd /home/wso2/.npm/randomatic/1.1.7/package/package.json not in flight; writing +8828 verbose afterAdd /home/wso2/.npm/randomatic/1.1.7/package/package.json written +8829 http 304 https://registry.npmjs.org/is-number +8830 verbose headers { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8830 verbose headers via: '1.1 varnish', +8830 verbose headers 'cache-control': 'max-age=300', +8830 verbose headers etag: 'W/"59aaebba-5165"', +8830 verbose headers age: '92', +8830 verbose headers connection: 'keep-alive', +8830 verbose headers 'x-served-by': 'cache-sin18027-SIN', +8830 verbose headers 'x-cache': 'HIT', +8830 verbose headers 'x-cache-hits': '4', +8830 verbose headers 'x-timer': 'S1506936858.476278,VS0,VE0', +8830 verbose headers vary: 'Accept-Encoding, Accept' } +8831 silly get cb [ 304, +8831 silly get { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8831 silly get via: '1.1 varnish', +8831 silly get 'cache-control': 'max-age=300', +8831 silly get etag: 'W/"59aaebba-5165"', +8831 silly get age: '92', +8831 silly get connection: 'keep-alive', +8831 silly get 'x-served-by': 'cache-sin18027-SIN', +8831 silly get 'x-cache': 'HIT', +8831 silly get 'x-cache-hits': '4', +8831 silly get 'x-timer': 'S1506936858.476278,VS0,VE0', +8831 silly get vary: 'Accept-Encoding, Accept' } ] +8832 verbose etag https://registry.npmjs.org/is-number from cache +8833 verbose get saving is-number to /home/wso2/.npm/registry.npmjs.org/is-number/.cache.json +8834 silly resolveWithNewModule is-number@2.1.0 checking installable status +8835 silly cache add args [ 'is-number@^2.1.0', null ] +8836 verbose cache add spec is-number@^2.1.0 +8837 silly cache add parsed spec Result { +8837 silly cache add raw: 'is-number@^2.1.0', +8837 silly cache add scope: null, +8837 silly cache add name: 'is-number', +8837 silly cache add rawSpec: '^2.1.0', +8837 silly cache add spec: '>=2.1.0 <3.0.0', +8837 silly cache add type: 'range' } +8838 silly addNamed is-number@>=2.1.0 <3.0.0 +8839 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for is-number +8840 silly addNameRange { name: 'is-number', range: '>=2.1.0 <3.0.0', hasData: false } +8841 silly mapToRegistry name is-number +8842 silly mapToRegistry using default registry +8843 silly mapToRegistry registry https://registry.npmjs.org/ +8844 silly mapToRegistry uri https://registry.npmjs.org/is-number +8845 verbose addNameRange registry:https://registry.npmjs.org/is-number not in flight; fetching +8846 verbose get https://registry.npmjs.org/is-number not expired, no request +8847 silly addNameRange number 2 { name: 'is-number', range: '>=2.1.0 <3.0.0', hasData: true } +8848 silly addNameRange versions [ 'is-number', +8848 silly addNameRange [ '0.1.0', +8848 silly addNameRange '0.1.1', +8848 silly addNameRange '1.0.0', +8848 silly addNameRange '1.1.0', +8848 silly addNameRange '1.1.1', +8848 silly addNameRange '1.1.2', +8848 silly addNameRange '2.0.0', +8848 silly addNameRange '2.0.1', +8848 silly addNameRange '2.0.2', +8848 silly addNameRange '2.1.0', +8848 silly addNameRange '3.0.0' ] ] +8849 silly addNamed is-number@2.1.0 +8850 verbose addNamed "2.1.0" is a plain semver version for is-number +8851 silly cache afterAdd is-number@2.1.0 +8852 verbose afterAdd /home/wso2/.npm/is-number/2.1.0/package/package.json not in flight; writing +8853 verbose afterAdd /home/wso2/.npm/is-number/2.1.0/package/package.json written +8854 silly fetchNamedPackageData isarray +8855 silly mapToRegistry name isarray +8856 silly mapToRegistry using default registry +8857 silly mapToRegistry registry https://registry.npmjs.org/ +8858 silly mapToRegistry uri https://registry.npmjs.org/isarray +8859 silly resolveWithNewModule isarray@1.0.0 checking installable status +8860 silly cache add args [ 'isarray@1.0.0', null ] +8861 verbose cache add spec isarray@1.0.0 +8862 silly cache add parsed spec Result { +8862 silly cache add raw: 'isarray@1.0.0', +8862 silly cache add scope: null, +8862 silly cache add name: 'isarray', +8862 silly cache add rawSpec: '1.0.0', +8862 silly cache add spec: '1.0.0', +8862 silly cache add type: 'version' } +8863 silly addNamed isarray@1.0.0 +8864 verbose addNamed "1.0.0" is a plain semver version for isarray +8865 silly mapToRegistry name isarray +8866 silly mapToRegistry using default registry +8867 silly mapToRegistry registry https://registry.npmjs.org/ +8868 silly mapToRegistry uri https://registry.npmjs.org/isarray +8869 verbose addNameVersion registry:https://registry.npmjs.org/isarray not in flight; fetching +8870 verbose request uri https://registry.npmjs.org/isarray +8871 verbose request no auth needed +8872 info attempt registry request try #1 at 3:04:18 PM +8873 verbose etag W/"5965e354-286a" +8874 verbose lastModified Wed, 12 Jul 2017 08:52:36 GMT +8875 http request GET https://registry.npmjs.org/isarray +8876 http 304 https://registry.npmjs.org/isarray +8877 verbose headers { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8877 verbose headers via: '1.1 varnish', +8877 verbose headers 'cache-control': 'max-age=300', +8877 verbose headers etag: 'W/"5965e354-286a"', +8877 verbose headers age: '181', +8877 verbose headers connection: 'keep-alive', +8877 verbose headers 'x-served-by': 'cache-sin18029-SIN', +8877 verbose headers 'x-cache': 'HIT', +8877 verbose headers 'x-cache-hits': '16', +8877 verbose headers 'x-timer': 'S1506936859.913476,VS0,VE0', +8877 verbose headers vary: 'Accept-Encoding, Accept' } +8878 silly get cb [ 304, +8878 silly get { date: 'Mon, 02 Oct 2017 09:34:18 GMT', +8878 silly get via: '1.1 varnish', +8878 silly get 'cache-control': 'max-age=300', +8878 silly get etag: 'W/"5965e354-286a"', +8878 silly get age: '181', +8878 silly get connection: 'keep-alive', +8878 silly get 'x-served-by': 'cache-sin18029-SIN', +8878 silly get 'x-cache': 'HIT', +8878 silly get 'x-cache-hits': '16', +8878 silly get 'x-timer': 'S1506936859.913476,VS0,VE0', +8878 silly get vary: 'Accept-Encoding, Accept' } ] +8879 verbose etag https://registry.npmjs.org/isarray from cache +8880 verbose get saving isarray to /home/wso2/.npm/registry.npmjs.org/isarray/.cache.json +8881 silly cache afterAdd isarray@1.0.0 +8882 verbose afterAdd /home/wso2/.npm/isarray/1.0.0/package/package.json not in flight; writing +8883 verbose afterAdd /home/wso2/.npm/isarray/1.0.0/package/package.json written +8884 silly fetchNamedPackageData is-number +8885 silly mapToRegistry name is-number +8886 silly mapToRegistry using default registry +8887 silly mapToRegistry registry https://registry.npmjs.org/ +8888 silly mapToRegistry uri https://registry.npmjs.org/is-number +8889 silly resolveWithNewModule is-number@3.0.0 checking installable status +8890 silly cache add args [ 'is-number@^3.0.0', null ] +8891 verbose cache add spec is-number@^3.0.0 +8892 silly fetchNamedPackageData kind-of +8893 silly mapToRegistry name kind-of +8894 silly mapToRegistry using default registry +8895 silly mapToRegistry registry https://registry.npmjs.org/ +8896 silly mapToRegistry uri https://registry.npmjs.org/kind-of +8897 silly resolveWithNewModule kind-of@4.0.0 checking installable status +8898 silly cache add args [ 'kind-of@^4.0.0', null ] +8899 verbose cache add spec kind-of@^4.0.0 +8900 silly cache add parsed spec Result { +8900 silly cache add raw: 'is-number@^3.0.0', +8900 silly cache add scope: null, +8900 silly cache add name: 'is-number', +8900 silly cache add rawSpec: '^3.0.0', +8900 silly cache add spec: '>=3.0.0 <4.0.0', +8900 silly cache add type: 'range' } +8901 silly addNamed is-number@>=3.0.0 <4.0.0 +8902 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for is-number +8903 silly addNameRange { name: 'is-number', range: '>=3.0.0 <4.0.0', hasData: false } +8904 silly mapToRegistry name is-number +8905 silly mapToRegistry using default registry +8906 silly mapToRegistry registry https://registry.npmjs.org/ +8907 silly mapToRegistry uri https://registry.npmjs.org/is-number +8908 verbose addNameRange registry:https://registry.npmjs.org/is-number not in flight; fetching +8909 silly cache add parsed spec Result { +8909 silly cache add raw: 'kind-of@^4.0.0', +8909 silly cache add scope: null, +8909 silly cache add name: 'kind-of', +8909 silly cache add rawSpec: '^4.0.0', +8909 silly cache add spec: '>=4.0.0 <5.0.0', +8909 silly cache add type: 'range' } +8910 silly addNamed kind-of@>=4.0.0 <5.0.0 +8911 verbose addNamed ">=4.0.0 <5.0.0" is a valid semver range for kind-of +8912 silly addNameRange { name: 'kind-of', range: '>=4.0.0 <5.0.0', hasData: false } +8913 silly mapToRegistry name kind-of +8914 silly mapToRegistry using default registry +8915 silly mapToRegistry registry https://registry.npmjs.org/ +8916 silly mapToRegistry uri https://registry.npmjs.org/kind-of +8917 verbose addNameRange registry:https://registry.npmjs.org/kind-of not in flight; fetching +8918 verbose get https://registry.npmjs.org/kind-of not expired, no request +8919 silly addNameRange number 2 { name: 'kind-of', range: '>=4.0.0 <5.0.0', hasData: true } +8920 silly addNameRange versions [ 'kind-of', +8920 silly addNameRange [ '0.1.0', +8920 silly addNameRange '0.1.1', +8920 silly addNameRange '0.1.2', +8920 silly addNameRange '1.0.0', +8920 silly addNameRange '1.0.1', +8920 silly addNameRange '1.1.0', +8920 silly addNameRange '2.0.0', +8920 silly addNameRange '2.0.1', +8920 silly addNameRange '3.0.0', +8920 silly addNameRange '3.0.1', +8920 silly addNameRange '3.0.2', +8920 silly addNameRange '3.0.3', +8920 silly addNameRange '3.0.4', +8920 silly addNameRange '3.1.0', +8920 silly addNameRange '3.2.0', +8920 silly addNameRange '3.2.1', +8920 silly addNameRange '3.2.2', +8920 silly addNameRange '4.0.0', +8920 silly addNameRange '5.0.0', +8920 silly addNameRange '5.0.1', +8920 silly addNameRange '5.0.2' ] ] +8921 silly addNamed kind-of@4.0.0 +8922 verbose addNamed "4.0.0" is a plain semver version for kind-of +8923 verbose get https://registry.npmjs.org/is-number not expired, no request +8924 silly addNameRange number 2 { name: 'is-number', range: '>=3.0.0 <4.0.0', hasData: true } +8925 silly addNameRange versions [ 'is-number', +8925 silly addNameRange [ '0.1.0', +8925 silly addNameRange '0.1.1', +8925 silly addNameRange '1.0.0', +8925 silly addNameRange '1.1.0', +8925 silly addNameRange '1.1.1', +8925 silly addNameRange '1.1.2', +8925 silly addNameRange '2.0.0', +8925 silly addNameRange '2.0.1', +8925 silly addNameRange '2.0.2', +8925 silly addNameRange '2.1.0', +8925 silly addNameRange '3.0.0' ] ] +8926 silly addNamed is-number@3.0.0 +8927 verbose addNamed "3.0.0" is a plain semver version for is-number +8928 silly cache afterAdd kind-of@4.0.0 +8929 verbose afterAdd /home/wso2/.npm/kind-of/4.0.0/package/package.json not in flight; writing +8930 silly cache afterAdd is-number@3.0.0 +8931 verbose afterAdd /home/wso2/.npm/is-number/3.0.0/package/package.json not in flight; writing +8932 verbose afterAdd /home/wso2/.npm/kind-of/4.0.0/package/package.json written +8933 verbose afterAdd /home/wso2/.npm/is-number/3.0.0/package/package.json written +8934 silly fetchNamedPackageData kind-of +8935 silly mapToRegistry name kind-of +8936 silly mapToRegistry using default registry +8937 silly mapToRegistry registry https://registry.npmjs.org/ +8938 silly mapToRegistry uri https://registry.npmjs.org/kind-of +8939 silly fetchNamedPackageData is-posix-bracket +8940 silly mapToRegistry name is-posix-bracket +8941 silly mapToRegistry using default registry +8942 silly mapToRegistry registry https://registry.npmjs.org/ +8943 silly mapToRegistry uri https://registry.npmjs.org/is-posix-bracket +8944 verbose request uri https://registry.npmjs.org/is-posix-bracket +8945 verbose request no auth needed +8946 info attempt registry request try #1 at 3:04:18 PM +8947 verbose etag W/"57034dbc-1c56" +8948 verbose lastModified Tue, 05 Apr 2016 05:31:40 GMT +8949 http request GET https://registry.npmjs.org/is-posix-bracket +8950 http 304 https://registry.npmjs.org/is-posix-bracket +8951 verbose headers { date: 'Mon, 02 Oct 2017 09:34:19 GMT', +8951 verbose headers via: '1.1 varnish', +8951 verbose headers 'cache-control': 'max-age=300', +8951 verbose headers etag: 'W/"57034dbc-1c56"', +8951 verbose headers age: '248', +8951 verbose headers connection: 'keep-alive', +8951 verbose headers 'x-served-by': 'cache-sin18028-SIN', +8951 verbose headers 'x-cache': 'HIT', +8951 verbose headers 'x-cache-hits': '101', +8951 verbose headers 'x-timer': 'S1506936859.432611,VS0,VE0', +8951 verbose headers vary: 'Accept-Encoding, Accept' } +8952 silly get cb [ 304, +8952 silly get { date: 'Mon, 02 Oct 2017 09:34:19 GMT', +8952 silly get via: '1.1 varnish', +8952 silly get 'cache-control': 'max-age=300', +8952 silly get etag: 'W/"57034dbc-1c56"', +8952 silly get age: '248', +8952 silly get connection: 'keep-alive', +8952 silly get 'x-served-by': 'cache-sin18028-SIN', +8952 silly get 'x-cache': 'HIT', +8952 silly get 'x-cache-hits': '101', +8952 silly get 'x-timer': 'S1506936859.432611,VS0,VE0', +8952 silly get vary: 'Accept-Encoding, Accept' } ] +8953 verbose etag https://registry.npmjs.org/is-posix-bracket from cache +8954 verbose get saving is-posix-bracket to /home/wso2/.npm/registry.npmjs.org/is-posix-bracket/.cache.json +8955 silly resolveWithNewModule is-posix-bracket@0.1.1 checking installable status +8956 silly cache add args [ 'is-posix-bracket@^0.1.0', null ] +8957 verbose cache add spec is-posix-bracket@^0.1.0 +8958 silly cache add parsed spec Result { +8958 silly cache add raw: 'is-posix-bracket@^0.1.0', +8958 silly cache add scope: null, +8958 silly cache add name: 'is-posix-bracket', +8958 silly cache add rawSpec: '^0.1.0', +8958 silly cache add spec: '>=0.1.0 <0.2.0', +8958 silly cache add type: 'range' } +8959 silly addNamed is-posix-bracket@>=0.1.0 <0.2.0 +8960 verbose addNamed ">=0.1.0 <0.2.0" is a valid semver range for is-posix-bracket +8961 silly addNameRange { name: 'is-posix-bracket', +8961 silly addNameRange range: '>=0.1.0 <0.2.0', +8961 silly addNameRange hasData: false } +8962 silly mapToRegistry name is-posix-bracket +8963 silly mapToRegistry using default registry +8964 silly mapToRegistry registry https://registry.npmjs.org/ +8965 silly mapToRegistry uri https://registry.npmjs.org/is-posix-bracket +8966 verbose addNameRange registry:https://registry.npmjs.org/is-posix-bracket not in flight; fetching +8967 verbose get https://registry.npmjs.org/is-posix-bracket not expired, no request +8968 silly addNameRange number 2 { name: 'is-posix-bracket', +8968 silly addNameRange range: '>=0.1.0 <0.2.0', +8968 silly addNameRange hasData: true } +8969 silly addNameRange versions [ 'is-posix-bracket', [ '0.1.0', '0.1.1' ] ] +8970 silly addNamed is-posix-bracket@0.1.1 +8971 verbose addNamed "0.1.1" is a plain semver version for is-posix-bracket +8972 silly cache afterAdd is-posix-bracket@0.1.1 +8973 verbose afterAdd /home/wso2/.npm/is-posix-bracket/0.1.1/package/package.json not in flight; writing +8974 verbose afterAdd /home/wso2/.npm/is-posix-bracket/0.1.1/package/package.json written +8975 silly fetchNamedPackageData remove-trailing-separator +8976 silly mapToRegistry name remove-trailing-separator +8977 silly mapToRegistry using default registry +8978 silly mapToRegistry registry https://registry.npmjs.org/ +8979 silly mapToRegistry uri https://registry.npmjs.org/remove-trailing-separator +8980 verbose request uri https://registry.npmjs.org/remove-trailing-separator +8981 verbose request no auth needed +8982 info attempt registry request try #1 at 3:04:19 PM +8983 verbose etag W/"59940302-2024" +8984 verbose lastModified Wed, 16 Aug 2017 08:32:02 GMT +8985 http request GET https://registry.npmjs.org/remove-trailing-separator +8986 http 304 https://registry.npmjs.org/remove-trailing-separator +8987 verbose headers { date: 'Mon, 02 Oct 2017 09:34:19 GMT', +8987 verbose headers via: '1.1 varnish', +8987 verbose headers 'cache-control': 'max-age=300', +8987 verbose headers etag: 'W/"59940302-2024"', +8987 verbose headers age: '234', +8987 verbose headers connection: 'keep-alive', +8987 verbose headers 'x-served-by': 'cache-sin18022-SIN', +8987 verbose headers 'x-cache': 'HIT', +8987 verbose headers 'x-cache-hits': '7', +8987 verbose headers 'x-timer': 'S1506936860.866909,VS0,VE0', +8987 verbose headers vary: 'Accept-Encoding, Accept' } +8988 silly get cb [ 304, +8988 silly get { date: 'Mon, 02 Oct 2017 09:34:19 GMT', +8988 silly get via: '1.1 varnish', +8988 silly get 'cache-control': 'max-age=300', +8988 silly get etag: 'W/"59940302-2024"', +8988 silly get age: '234', +8988 silly get connection: 'keep-alive', +8988 silly get 'x-served-by': 'cache-sin18022-SIN', +8988 silly get 'x-cache': 'HIT', +8988 silly get 'x-cache-hits': '7', +8988 silly get 'x-timer': 'S1506936860.866909,VS0,VE0', +8988 silly get vary: 'Accept-Encoding, Accept' } ] +8989 verbose etag https://registry.npmjs.org/remove-trailing-separator from cache +8990 verbose get saving remove-trailing-separator to /home/wso2/.npm/registry.npmjs.org/remove-trailing-separator/.cache.json +8991 silly resolveWithNewModule remove-trailing-separator@1.1.0 checking installable status +8992 silly cache add args [ 'remove-trailing-separator@^1.0.1', null ] +8993 verbose cache add spec remove-trailing-separator@^1.0.1 +8994 silly cache add parsed spec Result { +8994 silly cache add raw: 'remove-trailing-separator@^1.0.1', +8994 silly cache add scope: null, +8994 silly cache add name: 'remove-trailing-separator', +8994 silly cache add rawSpec: '^1.0.1', +8994 silly cache add spec: '>=1.0.1 <2.0.0', +8994 silly cache add type: 'range' } +8995 silly addNamed remove-trailing-separator@>=1.0.1 <2.0.0 +8996 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for remove-trailing-separator +8997 silly addNameRange { name: 'remove-trailing-separator', +8997 silly addNameRange range: '>=1.0.1 <2.0.0', +8997 silly addNameRange hasData: false } +8998 silly mapToRegistry name remove-trailing-separator +8999 silly mapToRegistry using default registry +9000 silly mapToRegistry registry https://registry.npmjs.org/ +9001 silly mapToRegistry uri https://registry.npmjs.org/remove-trailing-separator +9002 verbose addNameRange registry:https://registry.npmjs.org/remove-trailing-separator not in flight; fetching +9003 verbose get https://registry.npmjs.org/remove-trailing-separator not expired, no request +9004 silly addNameRange number 2 { name: 'remove-trailing-separator', +9004 silly addNameRange range: '>=1.0.1 <2.0.0', +9004 silly addNameRange hasData: true } +9005 silly addNameRange versions [ 'remove-trailing-separator', +9005 silly addNameRange [ '1.0.0', '1.0.1', '1.0.2', '1.1.0' ] ] +9006 silly addNamed remove-trailing-separator@1.1.0 +9007 verbose addNamed "1.1.0" is a plain semver version for remove-trailing-separator +9008 silly cache afterAdd remove-trailing-separator@1.1.0 +9009 verbose afterAdd /home/wso2/.npm/remove-trailing-separator/1.1.0/package/package.json not in flight; writing +9010 verbose afterAdd /home/wso2/.npm/remove-trailing-separator/1.1.0/package/package.json written +9011 silly fetchNamedPackageData for-own +9012 silly mapToRegistry name for-own +9013 silly mapToRegistry using default registry +9014 silly mapToRegistry registry https://registry.npmjs.org/ +9015 silly mapToRegistry uri https://registry.npmjs.org/for-own +9016 silly fetchNamedPackageData is-extendable +9017 silly mapToRegistry name is-extendable +9018 silly mapToRegistry using default registry +9019 silly mapToRegistry registry https://registry.npmjs.org/ +9020 silly mapToRegistry uri https://registry.npmjs.org/is-extendable +9021 verbose request uri https://registry.npmjs.org/for-own +9022 verbose request no auth needed +9023 info attempt registry request try #1 at 3:04:19 PM +9024 verbose etag W/"59592f39-3e6c" +9025 verbose lastModified Sun, 02 Jul 2017 17:36:57 GMT +9026 http request GET https://registry.npmjs.org/for-own +9027 verbose request uri https://registry.npmjs.org/is-extendable +9028 verbose request no auth needed +9029 info attempt registry request try #1 at 3:04:19 PM +9030 verbose etag W/"59711b91-2518" +9031 verbose lastModified Thu, 20 Jul 2017 21:07:29 GMT +9032 http request GET https://registry.npmjs.org/is-extendable +9033 http 304 https://registry.npmjs.org/for-own +9034 verbose headers { date: 'Mon, 02 Oct 2017 09:34:20 GMT', +9034 verbose headers via: '1.1 varnish', +9034 verbose headers 'cache-control': 'max-age=300', +9034 verbose headers etag: 'W/"59592f39-3e6c"', +9034 verbose headers age: '16', +9034 verbose headers connection: 'keep-alive', +9034 verbose headers 'x-served-by': 'cache-sin18029-SIN', +9034 verbose headers 'x-cache': 'HIT', +9034 verbose headers 'x-cache-hits': '3', +9034 verbose headers 'x-timer': 'S1506936860.267616,VS0,VE0', +9034 verbose headers vary: 'Accept-Encoding, Accept' } +9035 silly get cb [ 304, +9035 silly get { date: 'Mon, 02 Oct 2017 09:34:20 GMT', +9035 silly get via: '1.1 varnish', +9035 silly get 'cache-control': 'max-age=300', +9035 silly get etag: 'W/"59592f39-3e6c"', +9035 silly get age: '16', +9035 silly get connection: 'keep-alive', +9035 silly get 'x-served-by': 'cache-sin18029-SIN', +9035 silly get 'x-cache': 'HIT', +9035 silly get 'x-cache-hits': '3', +9035 silly get 'x-timer': 'S1506936860.267616,VS0,VE0', +9035 silly get vary: 'Accept-Encoding, Accept' } ] +9036 verbose etag https://registry.npmjs.org/for-own from cache +9037 verbose get saving for-own to /home/wso2/.npm/registry.npmjs.org/for-own/.cache.json +9038 silly resolveWithNewModule for-own@0.1.5 checking installable status +9039 silly cache add args [ 'for-own@^0.1.4', null ] +9040 verbose cache add spec for-own@^0.1.4 +9041 silly cache add parsed spec Result { +9041 silly cache add raw: 'for-own@^0.1.4', +9041 silly cache add scope: null, +9041 silly cache add name: 'for-own', +9041 silly cache add rawSpec: '^0.1.4', +9041 silly cache add spec: '>=0.1.4 <0.2.0', +9041 silly cache add type: 'range' } +9042 silly addNamed for-own@>=0.1.4 <0.2.0 +9043 verbose addNamed ">=0.1.4 <0.2.0" is a valid semver range for for-own +9044 silly addNameRange { name: 'for-own', range: '>=0.1.4 <0.2.0', hasData: false } +9045 silly mapToRegistry name for-own +9046 silly mapToRegistry using default registry +9047 silly mapToRegistry registry https://registry.npmjs.org/ +9048 silly mapToRegistry uri https://registry.npmjs.org/for-own +9049 verbose addNameRange registry:https://registry.npmjs.org/for-own not in flight; fetching +9050 verbose get https://registry.npmjs.org/for-own not expired, no request +9051 silly addNameRange number 2 { name: 'for-own', range: '>=0.1.4 <0.2.0', hasData: true } +9052 silly addNameRange versions [ 'for-own', +9052 silly addNameRange [ '0.1.0', '0.1.1', '0.1.2', '0.1.3', '0.1.4', '0.1.5', '1.0.0' ] ] +9053 silly addNamed for-own@0.1.5 +9054 verbose addNamed "0.1.5" is a plain semver version for for-own +9055 silly cache afterAdd for-own@0.1.5 +9056 verbose afterAdd /home/wso2/.npm/for-own/0.1.5/package/package.json not in flight; writing +9057 verbose afterAdd /home/wso2/.npm/for-own/0.1.5/package/package.json written +9058 http 200 https://registry.npmjs.org/is-extendable +9059 verbose headers { server: 'nginx/1.10.3', +9059 verbose headers 'content-type': 'application/json', +9059 verbose headers 'last-modified': 'Mon, 11 Sep 2017 20:38:26 GMT', +9059 verbose headers etag: 'W/"59b6f442-2c25"', +9059 verbose headers 'content-encoding': 'gzip', +9059 verbose headers 'cache-control': 'max-age=300', +9059 verbose headers 'content-length': '3043', +9059 verbose headers 'accept-ranges': 'bytes', +9059 verbose headers date: 'Mon, 02 Oct 2017 09:34:20 GMT', +9059 verbose headers via: '1.1 varnish', +9059 verbose headers age: '252', +9059 verbose headers connection: 'keep-alive', +9059 verbose headers 'x-served-by': 'cache-sin18021-SIN', +9059 verbose headers 'x-cache': 'HIT', +9059 verbose headers 'x-cache-hits': '7', +9059 verbose headers 'x-timer': 'S1506936860.279888,VS0,VE0', +9059 verbose headers vary: 'Accept-Encoding, Accept' } +9060 silly get cb [ 200, +9060 silly get { server: 'nginx/1.10.3', +9060 silly get 'content-type': 'application/json', +9060 silly get 'last-modified': 'Mon, 11 Sep 2017 20:38:26 GMT', +9060 silly get etag: 'W/"59b6f442-2c25"', +9060 silly get 'content-encoding': 'gzip', +9060 silly get 'cache-control': 'max-age=300', +9060 silly get 'content-length': '3043', +9060 silly get 'accept-ranges': 'bytes', +9060 silly get date: 'Mon, 02 Oct 2017 09:34:20 GMT', +9060 silly get via: '1.1 varnish', +9060 silly get age: '252', +9060 silly get connection: 'keep-alive', +9060 silly get 'x-served-by': 'cache-sin18021-SIN', +9060 silly get 'x-cache': 'HIT', +9060 silly get 'x-cache-hits': '7', +9060 silly get 'x-timer': 'S1506936860.279888,VS0,VE0', +9060 silly get vary: 'Accept-Encoding, Accept' } ] +9061 verbose get saving is-extendable to /home/wso2/.npm/registry.npmjs.org/is-extendable/.cache.json +9062 silly resolveWithNewModule is-extendable@0.1.1 checking installable status +9063 silly cache add args [ 'is-extendable@^0.1.1', null ] +9064 verbose cache add spec is-extendable@^0.1.1 +9065 silly cache add parsed spec Result { +9065 silly cache add raw: 'is-extendable@^0.1.1', +9065 silly cache add scope: null, +9065 silly cache add name: 'is-extendable', +9065 silly cache add rawSpec: '^0.1.1', +9065 silly cache add spec: '>=0.1.1 <0.2.0', +9065 silly cache add type: 'range' } +9066 silly addNamed is-extendable@>=0.1.1 <0.2.0 +9067 verbose addNamed ">=0.1.1 <0.2.0" is a valid semver range for is-extendable +9068 silly addNameRange { name: 'is-extendable', +9068 silly addNameRange range: '>=0.1.1 <0.2.0', +9068 silly addNameRange hasData: false } +9069 silly mapToRegistry name is-extendable +9070 silly mapToRegistry using default registry +9071 silly mapToRegistry registry https://registry.npmjs.org/ +9072 silly mapToRegistry uri https://registry.npmjs.org/is-extendable +9073 verbose addNameRange registry:https://registry.npmjs.org/is-extendable not in flight; fetching +9074 verbose get https://registry.npmjs.org/is-extendable not expired, no request +9075 silly addNameRange number 2 { name: 'is-extendable', range: '>=0.1.1 <0.2.0', hasData: true } +9076 silly addNameRange versions [ 'is-extendable', [ '0.1.0', '0.1.1', '1.0.0', '1.0.1' ] ] +9077 silly addNamed is-extendable@0.1.1 +9078 verbose addNamed "0.1.1" is a plain semver version for is-extendable +9079 silly cache afterAdd is-extendable@0.1.1 +9080 verbose afterAdd /home/wso2/.npm/is-extendable/0.1.1/package/package.json not in flight; writing +9081 verbose afterAdd /home/wso2/.npm/is-extendable/0.1.1/package/package.json written +9082 silly fetchNamedPackageData for-in +9083 silly mapToRegistry name for-in +9084 silly mapToRegistry using default registry +9085 silly mapToRegistry registry https://registry.npmjs.org/ +9086 silly mapToRegistry uri https://registry.npmjs.org/for-in +9087 verbose request uri https://registry.npmjs.org/for-in +9088 verbose request no auth needed +9089 info attempt registry request try #1 at 3:04:20 PM +9090 verbose etag W/"59592f38-5dd6" +9091 verbose lastModified Sun, 02 Jul 2017 17:36:56 GMT +9092 http request GET https://registry.npmjs.org/for-in +9093 http 304 https://registry.npmjs.org/for-in +9094 verbose headers { date: 'Mon, 02 Oct 2017 09:34:20 GMT', +9094 verbose headers via: '1.1 varnish', +9094 verbose headers 'cache-control': 'max-age=300', +9094 verbose headers etag: 'W/"59592f38-5dd6"', +9094 verbose headers age: '16', +9094 verbose headers connection: 'keep-alive', +9094 verbose headers 'x-served-by': 'cache-sin18030-SIN', +9094 verbose headers 'x-cache': 'HIT', +9094 verbose headers 'x-cache-hits': '1', +9094 verbose headers 'x-timer': 'S1506936861.667545,VS0,VE0', +9094 verbose headers vary: 'Accept-Encoding, Accept' } +9095 silly get cb [ 304, +9095 silly get { date: 'Mon, 02 Oct 2017 09:34:20 GMT', +9095 silly get via: '1.1 varnish', +9095 silly get 'cache-control': 'max-age=300', +9095 silly get etag: 'W/"59592f38-5dd6"', +9095 silly get age: '16', +9095 silly get connection: 'keep-alive', +9095 silly get 'x-served-by': 'cache-sin18030-SIN', +9095 silly get 'x-cache': 'HIT', +9095 silly get 'x-cache-hits': '1', +9095 silly get 'x-timer': 'S1506936861.667545,VS0,VE0', +9095 silly get vary: 'Accept-Encoding, Accept' } ] +9096 verbose etag https://registry.npmjs.org/for-in from cache +9097 verbose get saving for-in to /home/wso2/.npm/registry.npmjs.org/for-in/.cache.json +9098 silly resolveWithNewModule for-in@1.0.2 checking installable status +9099 silly cache add args [ 'for-in@^1.0.1', null ] +9100 verbose cache add spec for-in@^1.0.1 +9101 silly cache add parsed spec Result { +9101 silly cache add raw: 'for-in@^1.0.1', +9101 silly cache add scope: null, +9101 silly cache add name: 'for-in', +9101 silly cache add rawSpec: '^1.0.1', +9101 silly cache add spec: '>=1.0.1 <2.0.0', +9101 silly cache add type: 'range' } +9102 silly addNamed for-in@>=1.0.1 <2.0.0 +9103 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for for-in +9104 silly addNameRange { name: 'for-in', range: '>=1.0.1 <2.0.0', hasData: false } +9105 silly mapToRegistry name for-in +9106 silly mapToRegistry using default registry +9107 silly mapToRegistry registry https://registry.npmjs.org/ +9108 silly mapToRegistry uri https://registry.npmjs.org/for-in +9109 verbose addNameRange registry:https://registry.npmjs.org/for-in not in flight; fetching +9110 verbose get https://registry.npmjs.org/for-in not expired, no request +9111 silly addNameRange number 2 { name: 'for-in', range: '>=1.0.1 <2.0.0', hasData: true } +9112 silly addNameRange versions [ 'for-in', +9112 silly addNameRange [ '0.1.0', +9112 silly addNameRange '0.1.1', +9112 silly addNameRange '0.1.2', +9112 silly addNameRange '0.1.3', +9112 silly addNameRange '0.1.4', +9112 silly addNameRange '0.1.5', +9112 silly addNameRange '0.1.6', +9112 silly addNameRange '0.1.7', +9112 silly addNameRange '1.0.0', +9112 silly addNameRange '1.0.1', +9112 silly addNameRange '0.1.8', +9112 silly addNameRange '1.0.2' ] ] +9113 silly addNamed for-in@1.0.2 +9114 verbose addNamed "1.0.2" is a plain semver version for for-in +9115 silly cache afterAdd for-in@1.0.2 +9116 verbose afterAdd /home/wso2/.npm/for-in/1.0.2/package/package.json not in flight; writing +9117 verbose afterAdd /home/wso2/.npm/for-in/1.0.2/package/package.json written +9118 silly fetchNamedPackageData glob-base +9119 silly mapToRegistry name glob-base +9120 silly mapToRegistry using default registry +9121 silly mapToRegistry registry https://registry.npmjs.org/ +9122 silly mapToRegistry uri https://registry.npmjs.org/glob-base +9123 silly fetchNamedPackageData is-dotfile +9124 silly mapToRegistry name is-dotfile +9125 silly mapToRegistry using default registry +9126 silly mapToRegistry registry https://registry.npmjs.org/ +9127 silly mapToRegistry uri https://registry.npmjs.org/is-dotfile +9128 verbose request uri https://registry.npmjs.org/is-dotfile +9129 verbose request no auth needed +9130 info attempt registry request try #1 at 3:04:20 PM +9131 verbose etag W/"592d8625-3a45" +9132 verbose lastModified Tue, 30 May 2017 14:48:05 GMT +9133 http request GET https://registry.npmjs.org/is-dotfile +9134 verbose request uri https://registry.npmjs.org/glob-base +9135 verbose request no auth needed +9136 info attempt registry request try #1 at 3:04:20 PM +9137 verbose etag W/"59592f5f-2bdb" +9138 verbose lastModified Sun, 02 Jul 2017 17:37:35 GMT +9139 http request GET https://registry.npmjs.org/glob-base +9140 http 304 https://registry.npmjs.org/is-dotfile +9141 verbose headers { date: 'Mon, 02 Oct 2017 09:34:23 GMT', +9141 verbose headers via: '1.1 varnish', +9141 verbose headers 'cache-control': 'max-age=300', +9141 verbose headers etag: 'W/"592d8625-3a45"', +9141 verbose headers age: '217', +9141 verbose headers connection: 'keep-alive', +9141 verbose headers 'x-served-by': 'cache-sin18031-SIN', +9141 verbose headers 'x-cache': 'HIT', +9141 verbose headers 'x-cache-hits': '6', +9141 verbose headers 'x-timer': 'S1506936863.089851,VS0,VE0', +9141 verbose headers vary: 'Accept-Encoding, Accept' } +9142 silly get cb [ 304, +9142 silly get { date: 'Mon, 02 Oct 2017 09:34:23 GMT', +9142 silly get via: '1.1 varnish', +9142 silly get 'cache-control': 'max-age=300', +9142 silly get etag: 'W/"592d8625-3a45"', +9142 silly get age: '217', +9142 silly get connection: 'keep-alive', +9142 silly get 'x-served-by': 'cache-sin18031-SIN', +9142 silly get 'x-cache': 'HIT', +9142 silly get 'x-cache-hits': '6', +9142 silly get 'x-timer': 'S1506936863.089851,VS0,VE0', +9142 silly get vary: 'Accept-Encoding, Accept' } ] +9143 verbose etag https://registry.npmjs.org/is-dotfile from cache +9144 verbose get saving is-dotfile to /home/wso2/.npm/registry.npmjs.org/is-dotfile/.cache.json +9145 silly resolveWithNewModule is-dotfile@1.0.3 checking installable status +9146 silly cache add args [ 'is-dotfile@^1.0.0', null ] +9147 verbose cache add spec is-dotfile@^1.0.0 +9148 silly cache add parsed spec Result { +9148 silly cache add raw: 'is-dotfile@^1.0.0', +9148 silly cache add scope: null, +9148 silly cache add name: 'is-dotfile', +9148 silly cache add rawSpec: '^1.0.0', +9148 silly cache add spec: '>=1.0.0 <2.0.0', +9148 silly cache add type: 'range' } +9149 silly addNamed is-dotfile@>=1.0.0 <2.0.0 +9150 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for is-dotfile +9151 silly addNameRange { name: 'is-dotfile', range: '>=1.0.0 <2.0.0', hasData: false } +9152 silly mapToRegistry name is-dotfile +9153 silly mapToRegistry using default registry +9154 silly mapToRegistry registry https://registry.npmjs.org/ +9155 silly mapToRegistry uri https://registry.npmjs.org/is-dotfile +9156 verbose addNameRange registry:https://registry.npmjs.org/is-dotfile not in flight; fetching +9157 verbose get https://registry.npmjs.org/is-dotfile not expired, no request +9158 silly addNameRange number 2 { name: 'is-dotfile', range: '>=1.0.0 <2.0.0', hasData: true } +9159 silly addNameRange versions [ 'is-dotfile', +9159 silly addNameRange [ '0.1.0', '0.1.1', '1.0.0', '1.0.1', '1.0.2', '1.0.3', '2.0.0' ] ] +9160 silly addNamed is-dotfile@1.0.3 +9161 verbose addNamed "1.0.3" is a plain semver version for is-dotfile +9162 silly cache afterAdd is-dotfile@1.0.3 +9163 verbose afterAdd /home/wso2/.npm/is-dotfile/1.0.3/package/package.json not in flight; writing +9164 verbose afterAdd /home/wso2/.npm/is-dotfile/1.0.3/package/package.json written +9165 http 304 https://registry.npmjs.org/glob-base +9166 verbose headers { date: 'Mon, 02 Oct 2017 09:34:23 GMT', +9166 verbose headers via: '1.1 varnish', +9166 verbose headers 'cache-control': 'max-age=300', +9166 verbose headers etag: 'W/"59592f5f-2bdb"', +9166 verbose headers age: '67', +9166 verbose headers connection: 'keep-alive', +9166 verbose headers 'x-served-by': 'cache-sin18028-SIN', +9166 verbose headers 'x-cache': 'HIT', +9166 verbose headers 'x-cache-hits': '4', +9166 verbose headers 'x-timer': 'S1506936863.090173,VS0,VE0', +9166 verbose headers vary: 'Accept-Encoding, Accept' } +9167 silly get cb [ 304, +9167 silly get { date: 'Mon, 02 Oct 2017 09:34:23 GMT', +9167 silly get via: '1.1 varnish', +9167 silly get 'cache-control': 'max-age=300', +9167 silly get etag: 'W/"59592f5f-2bdb"', +9167 silly get age: '67', +9167 silly get connection: 'keep-alive', +9167 silly get 'x-served-by': 'cache-sin18028-SIN', +9167 silly get 'x-cache': 'HIT', +9167 silly get 'x-cache-hits': '4', +9167 silly get 'x-timer': 'S1506936863.090173,VS0,VE0', +9167 silly get vary: 'Accept-Encoding, Accept' } ] +9168 verbose etag https://registry.npmjs.org/glob-base from cache +9169 verbose get saving glob-base to /home/wso2/.npm/registry.npmjs.org/glob-base/.cache.json +9170 silly resolveWithNewModule glob-base@0.3.0 checking installable status +9171 silly cache add args [ 'glob-base@^0.3.0', null ] +9172 verbose cache add spec glob-base@^0.3.0 +9173 silly cache add parsed spec Result { +9173 silly cache add raw: 'glob-base@^0.3.0', +9173 silly cache add scope: null, +9173 silly cache add name: 'glob-base', +9173 silly cache add rawSpec: '^0.3.0', +9173 silly cache add spec: '>=0.3.0 <0.4.0', +9173 silly cache add type: 'range' } +9174 silly addNamed glob-base@>=0.3.0 <0.4.0 +9175 verbose addNamed ">=0.3.0 <0.4.0" is a valid semver range for glob-base +9176 silly addNameRange { name: 'glob-base', range: '>=0.3.0 <0.4.0', hasData: false } +9177 silly mapToRegistry name glob-base +9178 silly mapToRegistry using default registry +9179 silly mapToRegistry registry https://registry.npmjs.org/ +9180 silly mapToRegistry uri https://registry.npmjs.org/glob-base +9181 verbose addNameRange registry:https://registry.npmjs.org/glob-base not in flight; fetching +9182 verbose get https://registry.npmjs.org/glob-base not expired, no request +9183 silly addNameRange number 2 { name: 'glob-base', range: '>=0.3.0 <0.4.0', hasData: true } +9184 silly addNameRange versions [ 'glob-base', [ '0.1.0', '0.1.1', '0.2.0', '0.3.0' ] ] +9185 silly addNamed glob-base@0.3.0 +9186 verbose addNamed "0.3.0" is a plain semver version for glob-base +9187 silly cache afterAdd glob-base@0.3.0 +9188 verbose afterAdd /home/wso2/.npm/glob-base/0.3.0/package/package.json not in flight; writing +9189 verbose afterAdd /home/wso2/.npm/glob-base/0.3.0/package/package.json written +9190 silly fetchNamedPackageData glob-parent +9191 silly mapToRegistry name glob-parent +9192 silly mapToRegistry using default registry +9193 silly mapToRegistry registry https://registry.npmjs.org/ +9194 silly mapToRegistry uri https://registry.npmjs.org/glob-parent +9195 verbose request uri https://registry.npmjs.org/glob-parent +9196 verbose request no auth needed +9197 info attempt registry request try #1 at 3:04:23 PM +9198 verbose etag W/"585169df-3840" +9199 verbose lastModified Wed, 14 Dec 2016 15:48:47 GMT +9200 http request GET https://registry.npmjs.org/glob-parent +9201 http 304 https://registry.npmjs.org/glob-parent +9202 verbose headers { date: 'Mon, 02 Oct 2017 09:34:24 GMT', +9202 verbose headers via: '1.1 varnish', +9202 verbose headers 'cache-control': 'max-age=300', +9202 verbose headers etag: 'W/"585169df-3840"', +9202 verbose headers age: '183', +9202 verbose headers connection: 'keep-alive', +9202 verbose headers 'x-served-by': 'cache-jfk8135-JFK', +9202 verbose headers 'x-cache': 'HIT', +9202 verbose headers 'x-cache-hits': '7', +9202 verbose headers 'x-timer': 'S1506936864.432154,VS0,VE0', +9202 verbose headers vary: 'Accept-Encoding, Accept' } +9203 silly get cb [ 304, +9203 silly get { date: 'Mon, 02 Oct 2017 09:34:24 GMT', +9203 silly get via: '1.1 varnish', +9203 silly get 'cache-control': 'max-age=300', +9203 silly get etag: 'W/"585169df-3840"', +9203 silly get age: '183', +9203 silly get connection: 'keep-alive', +9203 silly get 'x-served-by': 'cache-jfk8135-JFK', +9203 silly get 'x-cache': 'HIT', +9203 silly get 'x-cache-hits': '7', +9203 silly get 'x-timer': 'S1506936864.432154,VS0,VE0', +9203 silly get vary: 'Accept-Encoding, Accept' } ] +9204 verbose etag https://registry.npmjs.org/glob-parent from cache +9205 verbose get saving glob-parent to /home/wso2/.npm/registry.npmjs.org/glob-parent/.cache.json +9206 silly resolveWithNewModule glob-parent@2.0.0 checking installable status +9207 silly cache add args [ 'glob-parent@^2.0.0', null ] +9208 verbose cache add spec glob-parent@^2.0.0 +9209 silly cache add parsed spec Result { +9209 silly cache add raw: 'glob-parent@^2.0.0', +9209 silly cache add scope: null, +9209 silly cache add name: 'glob-parent', +9209 silly cache add rawSpec: '^2.0.0', +9209 silly cache add spec: '>=2.0.0 <3.0.0', +9209 silly cache add type: 'range' } +9210 silly addNamed glob-parent@>=2.0.0 <3.0.0 +9211 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for glob-parent +9212 silly addNameRange { name: 'glob-parent', range: '>=2.0.0 <3.0.0', hasData: false } +9213 silly mapToRegistry name glob-parent +9214 silly mapToRegistry using default registry +9215 silly mapToRegistry registry https://registry.npmjs.org/ +9216 silly mapToRegistry uri https://registry.npmjs.org/glob-parent +9217 verbose addNameRange registry:https://registry.npmjs.org/glob-parent not in flight; fetching +9218 verbose get https://registry.npmjs.org/glob-parent not expired, no request +9219 silly addNameRange number 2 { name: 'glob-parent', range: '>=2.0.0 <3.0.0', hasData: true } +9220 silly addNameRange versions [ 'glob-parent', +9220 silly addNameRange [ '1.0.0', +9220 silly addNameRange '1.1.0', +9220 silly addNameRange '1.2.0', +9220 silly addNameRange '1.3.0', +9220 silly addNameRange '2.0.0', +9220 silly addNameRange '3.0.0', +9220 silly addNameRange '3.0.1', +9220 silly addNameRange '3.1.0' ] ] +9221 silly addNamed glob-parent@2.0.0 +9222 verbose addNamed "2.0.0" is a plain semver version for glob-parent +9223 silly cache afterAdd glob-parent@2.0.0 +9224 verbose afterAdd /home/wso2/.npm/glob-parent/2.0.0/package/package.json not in flight; writing +9225 verbose afterAdd /home/wso2/.npm/glob-parent/2.0.0/package/package.json written +9226 silly fetchNamedPackageData is-equal-shallow +9227 silly mapToRegistry name is-equal-shallow +9228 silly mapToRegistry using default registry +9229 silly mapToRegistry registry https://registry.npmjs.org/ +9230 silly mapToRegistry uri https://registry.npmjs.org/is-equal-shallow +9231 verbose request uri https://registry.npmjs.org/is-equal-shallow +9232 verbose request no auth needed +9233 info attempt registry request try #1 at 3:04:24 PM +9234 verbose etag W/"59592fd1-2506" +9235 verbose lastModified Sun, 02 Jul 2017 17:39:29 GMT +9236 http request GET https://registry.npmjs.org/is-equal-shallow +9237 http 304 https://registry.npmjs.org/is-equal-shallow +9238 verbose headers { date: 'Mon, 02 Oct 2017 09:34:25 GMT', +9238 verbose headers via: '1.1 varnish', +9238 verbose headers 'cache-control': 'max-age=300', +9238 verbose headers etag: 'W/"59592fd1-2506"', +9238 verbose headers age: '219', +9238 verbose headers connection: 'keep-alive', +9238 verbose headers 'x-served-by': 'cache-sin18029-SIN', +9238 verbose headers 'x-cache': 'HIT', +9238 verbose headers 'x-cache-hits': '6', +9238 verbose headers 'x-timer': 'S1506936865.005779,VS0,VE0', +9238 verbose headers vary: 'Accept-Encoding, Accept' } +9239 silly get cb [ 304, +9239 silly get { date: 'Mon, 02 Oct 2017 09:34:25 GMT', +9239 silly get via: '1.1 varnish', +9239 silly get 'cache-control': 'max-age=300', +9239 silly get etag: 'W/"59592fd1-2506"', +9239 silly get age: '219', +9239 silly get connection: 'keep-alive', +9239 silly get 'x-served-by': 'cache-sin18029-SIN', +9239 silly get 'x-cache': 'HIT', +9239 silly get 'x-cache-hits': '6', +9239 silly get 'x-timer': 'S1506936865.005779,VS0,VE0', +9239 silly get vary: 'Accept-Encoding, Accept' } ] +9240 verbose etag https://registry.npmjs.org/is-equal-shallow from cache +9241 verbose get saving is-equal-shallow to /home/wso2/.npm/registry.npmjs.org/is-equal-shallow/.cache.json +9242 silly resolveWithNewModule is-equal-shallow@0.1.3 checking installable status +9243 silly cache add args [ 'is-equal-shallow@^0.1.3', null ] +9244 verbose cache add spec is-equal-shallow@^0.1.3 +9245 silly cache add parsed spec Result { +9245 silly cache add raw: 'is-equal-shallow@^0.1.3', +9245 silly cache add scope: null, +9245 silly cache add name: 'is-equal-shallow', +9245 silly cache add rawSpec: '^0.1.3', +9245 silly cache add spec: '>=0.1.3 <0.2.0', +9245 silly cache add type: 'range' } +9246 silly addNamed is-equal-shallow@>=0.1.3 <0.2.0 +9247 verbose addNamed ">=0.1.3 <0.2.0" is a valid semver range for is-equal-shallow +9248 silly addNameRange { name: 'is-equal-shallow', +9248 silly addNameRange range: '>=0.1.3 <0.2.0', +9248 silly addNameRange hasData: false } +9249 silly mapToRegistry name is-equal-shallow +9250 silly mapToRegistry using default registry +9251 silly mapToRegistry registry https://registry.npmjs.org/ +9252 silly mapToRegistry uri https://registry.npmjs.org/is-equal-shallow +9253 verbose addNameRange registry:https://registry.npmjs.org/is-equal-shallow not in flight; fetching +9254 verbose get https://registry.npmjs.org/is-equal-shallow not expired, no request +9255 silly addNameRange number 2 { name: 'is-equal-shallow', +9255 silly addNameRange range: '>=0.1.3 <0.2.0', +9255 silly addNameRange hasData: true } +9256 silly addNameRange versions [ 'is-equal-shallow', [ '0.1.0', '0.1.1', '0.1.2', '0.1.3' ] ] +9257 silly addNamed is-equal-shallow@0.1.3 +9258 verbose addNamed "0.1.3" is a plain semver version for is-equal-shallow +9259 silly cache afterAdd is-equal-shallow@0.1.3 +9260 verbose afterAdd /home/wso2/.npm/is-equal-shallow/0.1.3/package/package.json not in flight; writing +9261 verbose afterAdd /home/wso2/.npm/is-equal-shallow/0.1.3/package/package.json written +9262 silly fetchNamedPackageData is-primitive +9263 silly mapToRegistry name is-primitive +9264 silly mapToRegistry using default registry +9265 silly mapToRegistry registry https://registry.npmjs.org/ +9266 silly mapToRegistry uri https://registry.npmjs.org/is-primitive +9267 verbose request uri https://registry.npmjs.org/is-primitive +9268 verbose request no auth needed +9269 info attempt registry request try #1 at 3:04:25 PM +9270 verbose etag W/"598221ba-16ee" +9271 verbose lastModified Wed, 02 Aug 2017 19:02:18 GMT +9272 http request GET https://registry.npmjs.org/is-primitive +9273 http 304 https://registry.npmjs.org/is-primitive +9274 verbose headers { date: 'Mon, 02 Oct 2017 09:34:25 GMT', +9274 verbose headers via: '1.1 varnish', +9274 verbose headers 'cache-control': 'max-age=300', +9274 verbose headers etag: 'W/"598221ba-16ee"', +9274 verbose headers age: '10', +9274 verbose headers connection: 'keep-alive', +9274 verbose headers 'x-served-by': 'cache-sin18024-SIN', +9274 verbose headers 'x-cache': 'HIT', +9274 verbose headers 'x-cache-hits': '2', +9274 verbose headers 'x-timer': 'S1506936865.249769,VS0,VE0', +9274 verbose headers vary: 'Accept-Encoding, Accept' } +9275 silly get cb [ 304, +9275 silly get { date: 'Mon, 02 Oct 2017 09:34:25 GMT', +9275 silly get via: '1.1 varnish', +9275 silly get 'cache-control': 'max-age=300', +9275 silly get etag: 'W/"598221ba-16ee"', +9275 silly get age: '10', +9275 silly get connection: 'keep-alive', +9275 silly get 'x-served-by': 'cache-sin18024-SIN', +9275 silly get 'x-cache': 'HIT', +9275 silly get 'x-cache-hits': '2', +9275 silly get 'x-timer': 'S1506936865.249769,VS0,VE0', +9275 silly get vary: 'Accept-Encoding, Accept' } ] +9276 verbose etag https://registry.npmjs.org/is-primitive from cache +9277 verbose get saving is-primitive to /home/wso2/.npm/registry.npmjs.org/is-primitive/.cache.json +9278 silly resolveWithNewModule is-primitive@2.0.0 checking installable status +9279 silly cache add args [ 'is-primitive@^2.0.0', null ] +9280 verbose cache add spec is-primitive@^2.0.0 +9281 silly cache add parsed spec Result { +9281 silly cache add raw: 'is-primitive@^2.0.0', +9281 silly cache add scope: null, +9281 silly cache add name: 'is-primitive', +9281 silly cache add rawSpec: '^2.0.0', +9281 silly cache add spec: '>=2.0.0 <3.0.0', +9281 silly cache add type: 'range' } +9282 silly addNamed is-primitive@>=2.0.0 <3.0.0 +9283 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for is-primitive +9284 silly addNameRange { name: 'is-primitive', range: '>=2.0.0 <3.0.0', hasData: false } +9285 silly mapToRegistry name is-primitive +9286 silly mapToRegistry using default registry +9287 silly mapToRegistry registry https://registry.npmjs.org/ +9288 silly mapToRegistry uri https://registry.npmjs.org/is-primitive +9289 verbose addNameRange registry:https://registry.npmjs.org/is-primitive not in flight; fetching +9290 verbose get https://registry.npmjs.org/is-primitive not expired, no request +9291 silly addNameRange number 2 { name: 'is-primitive', range: '>=2.0.0 <3.0.0', hasData: true } +9292 silly addNameRange versions [ 'is-primitive', [ '0.1.0', '1.0.0', '2.0.0' ] ] +9293 silly addNamed is-primitive@2.0.0 +9294 verbose addNamed "2.0.0" is a plain semver version for is-primitive +9295 silly cache afterAdd is-primitive@2.0.0 +9296 verbose afterAdd /home/wso2/.npm/is-primitive/2.0.0/package/package.json not in flight; writing +9297 verbose afterAdd /home/wso2/.npm/is-primitive/2.0.0/package/package.json written +9298 silly fetchNamedPackageData find-up +9299 silly mapToRegistry name find-up +9300 silly mapToRegistry using default registry +9301 silly mapToRegistry registry https://registry.npmjs.org/ +9302 silly mapToRegistry uri https://registry.npmjs.org/find-up +9303 silly resolveWithNewModule find-up@1.1.2 checking installable status +9304 silly cache add args [ 'find-up@^1.0.0', null ] +9305 verbose cache add spec find-up@^1.0.0 +9306 silly fetchNamedPackageData read-pkg +9307 silly mapToRegistry name read-pkg +9308 silly mapToRegistry using default registry +9309 silly mapToRegistry registry https://registry.npmjs.org/ +9310 silly mapToRegistry uri https://registry.npmjs.org/read-pkg +9311 silly cache add parsed spec Result { +9311 silly cache add raw: 'find-up@^1.0.0', +9311 silly cache add scope: null, +9311 silly cache add name: 'find-up', +9311 silly cache add rawSpec: '^1.0.0', +9311 silly cache add spec: '>=1.0.0 <2.0.0', +9311 silly cache add type: 'range' } +9312 silly addNamed find-up@>=1.0.0 <2.0.0 +9313 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for find-up +9314 silly addNameRange { name: 'find-up', range: '>=1.0.0 <2.0.0', hasData: false } +9315 silly mapToRegistry name find-up +9316 silly mapToRegistry using default registry +9317 silly mapToRegistry registry https://registry.npmjs.org/ +9318 silly mapToRegistry uri https://registry.npmjs.org/find-up +9319 verbose addNameRange registry:https://registry.npmjs.org/find-up not in flight; fetching +9320 verbose request uri https://registry.npmjs.org/find-up +9321 verbose request no auth needed +9322 info attempt registry request try #1 at 3:04:25 PM +9323 verbose etag W/"59b754c6-2bcb" +9324 verbose lastModified Tue, 12 Sep 2017 03:30:14 GMT +9325 http request GET https://registry.npmjs.org/find-up +9326 verbose request uri https://registry.npmjs.org/read-pkg +9327 verbose request no auth needed +9328 info attempt registry request try #1 at 3:04:25 PM +9329 verbose etag W/"5995ea62-1925" +9330 verbose lastModified Thu, 17 Aug 2017 19:11:30 GMT +9331 http request GET https://registry.npmjs.org/read-pkg +9332 http 304 https://registry.npmjs.org/find-up +9333 verbose headers { date: 'Mon, 02 Oct 2017 09:34:25 GMT', +9333 verbose headers via: '1.1 varnish', +9333 verbose headers 'cache-control': 'max-age=300', +9333 verbose headers etag: 'W/"59b754c6-2bcb"', +9333 verbose headers age: '239', +9333 verbose headers connection: 'keep-alive', +9333 verbose headers 'x-served-by': 'cache-sin18024-SIN', +9333 verbose headers 'x-cache': 'HIT', +9333 verbose headers 'x-cache-hits': '9', +9333 verbose headers 'x-timer': 'S1506936866.747292,VS0,VE0', +9333 verbose headers vary: 'Accept-Encoding, Accept' } +9334 silly get cb [ 304, +9334 silly get { date: 'Mon, 02 Oct 2017 09:34:25 GMT', +9334 silly get via: '1.1 varnish', +9334 silly get 'cache-control': 'max-age=300', +9334 silly get etag: 'W/"59b754c6-2bcb"', +9334 silly get age: '239', +9334 silly get connection: 'keep-alive', +9334 silly get 'x-served-by': 'cache-sin18024-SIN', +9334 silly get 'x-cache': 'HIT', +9334 silly get 'x-cache-hits': '9', +9334 silly get 'x-timer': 'S1506936866.747292,VS0,VE0', +9334 silly get vary: 'Accept-Encoding, Accept' } ] +9335 verbose etag https://registry.npmjs.org/find-up from cache +9336 verbose get saving find-up to /home/wso2/.npm/registry.npmjs.org/find-up/.cache.json +9337 http 304 https://registry.npmjs.org/read-pkg +9338 verbose headers { date: 'Mon, 02 Oct 2017 09:34:25 GMT', +9338 verbose headers via: '1.1 varnish', +9338 verbose headers 'cache-control': 'max-age=300', +9338 verbose headers etag: 'W/"5995ea62-1925"', +9338 verbose headers age: '248', +9338 verbose headers connection: 'keep-alive', +9338 verbose headers 'x-served-by': 'cache-sin18025-SIN', +9338 verbose headers 'x-cache': 'HIT', +9338 verbose headers 'x-cache-hits': '12', +9338 verbose headers 'x-timer': 'S1506936866.755808,VS0,VE0', +9338 verbose headers vary: 'Accept-Encoding, Accept' } +9339 silly get cb [ 304, +9339 silly get { date: 'Mon, 02 Oct 2017 09:34:25 GMT', +9339 silly get via: '1.1 varnish', +9339 silly get 'cache-control': 'max-age=300', +9339 silly get etag: 'W/"5995ea62-1925"', +9339 silly get age: '248', +9339 silly get connection: 'keep-alive', +9339 silly get 'x-served-by': 'cache-sin18025-SIN', +9339 silly get 'x-cache': 'HIT', +9339 silly get 'x-cache-hits': '12', +9339 silly get 'x-timer': 'S1506936866.755808,VS0,VE0', +9339 silly get vary: 'Accept-Encoding, Accept' } ] +9340 verbose etag https://registry.npmjs.org/read-pkg from cache +9341 verbose get saving read-pkg to /home/wso2/.npm/registry.npmjs.org/read-pkg/.cache.json +9342 silly addNameRange number 2 { name: 'find-up', range: '>=1.0.0 <2.0.0', hasData: true } +9343 silly addNameRange versions [ 'find-up', +9343 silly addNameRange [ '1.0.0', '1.1.0', '1.1.1', '1.1.2', '2.0.0', '2.1.0' ] ] +9344 silly addNamed find-up@1.1.2 +9345 verbose addNamed "1.1.2" is a plain semver version for find-up +9346 silly resolveWithNewModule read-pkg@1.1.0 checking installable status +9347 silly cache add args [ 'read-pkg@^1.0.0', null ] +9348 verbose cache add spec read-pkg@^1.0.0 +9349 silly cache add parsed spec Result { +9349 silly cache add raw: 'read-pkg@^1.0.0', +9349 silly cache add scope: null, +9349 silly cache add name: 'read-pkg', +9349 silly cache add rawSpec: '^1.0.0', +9349 silly cache add spec: '>=1.0.0 <2.0.0', +9349 silly cache add type: 'range' } +9350 silly addNamed read-pkg@>=1.0.0 <2.0.0 +9351 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for read-pkg +9352 silly addNameRange { name: 'read-pkg', range: '>=1.0.0 <2.0.0', hasData: false } +9353 silly mapToRegistry name read-pkg +9354 silly mapToRegistry using default registry +9355 silly mapToRegistry registry https://registry.npmjs.org/ +9356 silly mapToRegistry uri https://registry.npmjs.org/read-pkg +9357 verbose addNameRange registry:https://registry.npmjs.org/read-pkg not in flight; fetching +9358 verbose get https://registry.npmjs.org/read-pkg not expired, no request +9359 silly addNameRange number 2 { name: 'read-pkg', range: '>=1.0.0 <2.0.0', hasData: true } +9360 silly addNameRange versions [ 'read-pkg', [ '1.0.0', '1.1.0', '2.0.0' ] ] +9361 silly addNamed read-pkg@1.1.0 +9362 verbose addNamed "1.1.0" is a plain semver version for read-pkg +9363 silly cache afterAdd find-up@1.1.2 +9364 verbose afterAdd /home/wso2/.npm/find-up/1.1.2/package/package.json not in flight; writing +9365 verbose afterAdd /home/wso2/.npm/find-up/1.1.2/package/package.json written +9366 silly cache afterAdd read-pkg@1.1.0 +9367 verbose afterAdd /home/wso2/.npm/read-pkg/1.1.0/package/package.json not in flight; writing +9368 verbose afterAdd /home/wso2/.npm/read-pkg/1.1.0/package/package.json written +9369 silly fetchNamedPackageData path-exists +9370 silly mapToRegistry name path-exists +9371 silly mapToRegistry using default registry +9372 silly mapToRegistry registry https://registry.npmjs.org/ +9373 silly mapToRegistry uri https://registry.npmjs.org/path-exists +9374 silly resolveWithNewModule path-exists@2.1.0 checking installable status +9375 silly cache add args [ 'path-exists@^2.0.0', null ] +9376 verbose cache add spec path-exists@^2.0.0 +9377 silly fetchNamedPackageData pinkie-promise +9378 silly mapToRegistry name pinkie-promise +9379 silly mapToRegistry using default registry +9380 silly mapToRegistry registry https://registry.npmjs.org/ +9381 silly mapToRegistry uri https://registry.npmjs.org/pinkie-promise +9382 silly cache add parsed spec Result { +9382 silly cache add raw: 'path-exists@^2.0.0', +9382 silly cache add scope: null, +9382 silly cache add name: 'path-exists', +9382 silly cache add rawSpec: '^2.0.0', +9382 silly cache add spec: '>=2.0.0 <3.0.0', +9382 silly cache add type: 'range' } +9383 silly addNamed path-exists@>=2.0.0 <3.0.0 +9384 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for path-exists +9385 silly addNameRange { name: 'path-exists', range: '>=2.0.0 <3.0.0', hasData: false } +9386 silly mapToRegistry name path-exists +9387 silly mapToRegistry using default registry +9388 silly mapToRegistry registry https://registry.npmjs.org/ +9389 silly mapToRegistry uri https://registry.npmjs.org/path-exists +9390 verbose addNameRange registry:https://registry.npmjs.org/path-exists not in flight; fetching +9391 verbose request uri https://registry.npmjs.org/path-exists +9392 verbose request no auth needed +9393 info attempt registry request try #1 at 3:04:25 PM +9394 verbose etag W/"5902ec72-1c2f" +9395 verbose lastModified Fri, 28 Apr 2017 07:17:06 GMT +9396 http request GET https://registry.npmjs.org/path-exists +9397 verbose request uri https://registry.npmjs.org/pinkie-promise +9398 verbose request no auth needed +9399 info attempt registry request try #1 at 3:04:25 PM +9400 verbose etag W/"595568eb-1466" +9401 verbose lastModified Thu, 29 Jun 2017 20:54:03 GMT +9402 http request GET https://registry.npmjs.org/pinkie-promise +9403 http 304 https://registry.npmjs.org/path-exists +9404 verbose headers { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9404 verbose headers via: '1.1 varnish', +9404 verbose headers 'cache-control': 'max-age=300', +9404 verbose headers etag: 'W/"5902ec72-1c2f"', +9404 verbose headers age: '22', +9404 verbose headers connection: 'keep-alive', +9404 verbose headers 'x-served-by': 'cache-sin18024-SIN', +9404 verbose headers 'x-cache': 'HIT', +9404 verbose headers 'x-cache-hits': '1', +9404 verbose headers 'x-timer': 'S1506936866.002132,VS0,VE0', +9404 verbose headers vary: 'Accept-Encoding, Accept' } +9405 silly get cb [ 304, +9405 silly get { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9405 silly get via: '1.1 varnish', +9405 silly get 'cache-control': 'max-age=300', +9405 silly get etag: 'W/"5902ec72-1c2f"', +9405 silly get age: '22', +9405 silly get connection: 'keep-alive', +9405 silly get 'x-served-by': 'cache-sin18024-SIN', +9405 silly get 'x-cache': 'HIT', +9405 silly get 'x-cache-hits': '1', +9405 silly get 'x-timer': 'S1506936866.002132,VS0,VE0', +9405 silly get vary: 'Accept-Encoding, Accept' } ] +9406 verbose etag https://registry.npmjs.org/path-exists from cache +9407 verbose get saving path-exists to /home/wso2/.npm/registry.npmjs.org/path-exists/.cache.json +9408 silly addNameRange number 2 { name: 'path-exists', range: '>=2.0.0 <3.0.0', hasData: true } +9409 silly addNameRange versions [ 'path-exists', [ '1.0.0', '2.0.0', '2.1.0', '3.0.0' ] ] +9410 silly addNamed path-exists@2.1.0 +9411 verbose addNamed "2.1.0" is a plain semver version for path-exists +9412 silly cache afterAdd path-exists@2.1.0 +9413 verbose afterAdd /home/wso2/.npm/path-exists/2.1.0/package/package.json not in flight; writing +9414 verbose afterAdd /home/wso2/.npm/path-exists/2.1.0/package/package.json written +9415 http 304 https://registry.npmjs.org/pinkie-promise +9416 verbose headers { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9416 verbose headers via: '1.1 varnish', +9416 verbose headers 'cache-control': 'max-age=300', +9416 verbose headers etag: 'W/"595568eb-1466"', +9416 verbose headers age: '247', +9416 verbose headers connection: 'keep-alive', +9416 verbose headers 'x-served-by': 'cache-sin18024-SIN', +9416 verbose headers 'x-cache': 'HIT', +9416 verbose headers 'x-cache-hits': '4', +9416 verbose headers 'x-timer': 'S1506936866.016737,VS0,VE0', +9416 verbose headers vary: 'Accept-Encoding, Accept' } +9417 silly get cb [ 304, +9417 silly get { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9417 silly get via: '1.1 varnish', +9417 silly get 'cache-control': 'max-age=300', +9417 silly get etag: 'W/"595568eb-1466"', +9417 silly get age: '247', +9417 silly get connection: 'keep-alive', +9417 silly get 'x-served-by': 'cache-sin18024-SIN', +9417 silly get 'x-cache': 'HIT', +9417 silly get 'x-cache-hits': '4', +9417 silly get 'x-timer': 'S1506936866.016737,VS0,VE0', +9417 silly get vary: 'Accept-Encoding, Accept' } ] +9418 verbose etag https://registry.npmjs.org/pinkie-promise from cache +9419 verbose get saving pinkie-promise to /home/wso2/.npm/registry.npmjs.org/pinkie-promise/.cache.json +9420 silly resolveWithNewModule pinkie-promise@2.0.1 checking installable status +9421 silly cache add args [ 'pinkie-promise@^2.0.0', null ] +9422 verbose cache add spec pinkie-promise@^2.0.0 +9423 silly cache add parsed spec Result { +9423 silly cache add raw: 'pinkie-promise@^2.0.0', +9423 silly cache add scope: null, +9423 silly cache add name: 'pinkie-promise', +9423 silly cache add rawSpec: '^2.0.0', +9423 silly cache add spec: '>=2.0.0 <3.0.0', +9423 silly cache add type: 'range' } +9424 silly addNamed pinkie-promise@>=2.0.0 <3.0.0 +9425 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for pinkie-promise +9426 silly addNameRange { name: 'pinkie-promise', +9426 silly addNameRange range: '>=2.0.0 <3.0.0', +9426 silly addNameRange hasData: false } +9427 silly mapToRegistry name pinkie-promise +9428 silly mapToRegistry using default registry +9429 silly mapToRegistry registry https://registry.npmjs.org/ +9430 silly mapToRegistry uri https://registry.npmjs.org/pinkie-promise +9431 verbose addNameRange registry:https://registry.npmjs.org/pinkie-promise not in flight; fetching +9432 verbose get https://registry.npmjs.org/pinkie-promise not expired, no request +9433 silly addNameRange number 2 { name: 'pinkie-promise', +9433 silly addNameRange range: '>=2.0.0 <3.0.0', +9433 silly addNameRange hasData: true } +9434 silly addNameRange versions [ 'pinkie-promise', [ '1.0.0', '2.0.0', '2.0.1' ] ] +9435 silly addNamed pinkie-promise@2.0.1 +9436 verbose addNamed "2.0.1" is a plain semver version for pinkie-promise +9437 silly cache afterAdd pinkie-promise@2.0.1 +9438 verbose afterAdd /home/wso2/.npm/pinkie-promise/2.0.1/package/package.json not in flight; writing +9439 verbose afterAdd /home/wso2/.npm/pinkie-promise/2.0.1/package/package.json written +9440 silly fetchNamedPackageData pinkie +9441 silly mapToRegistry name pinkie +9442 silly mapToRegistry using default registry +9443 silly mapToRegistry registry https://registry.npmjs.org/ +9444 silly mapToRegistry uri https://registry.npmjs.org/pinkie +9445 verbose request uri https://registry.npmjs.org/pinkie +9446 verbose request no auth needed +9447 info attempt registry request try #1 at 3:04:26 PM +9448 verbose etag W/"5818d879-37c6" +9449 verbose lastModified Tue, 01 Nov 2016 18:01:29 GMT +9450 http request GET https://registry.npmjs.org/pinkie +9451 http 304 https://registry.npmjs.org/pinkie +9452 verbose headers { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9452 verbose headers via: '1.1 varnish', +9452 verbose headers 'cache-control': 'max-age=300', +9452 verbose headers etag: 'W/"5818d879-37c6"', +9452 verbose headers age: '247', +9452 verbose headers connection: 'keep-alive', +9452 verbose headers 'x-served-by': 'cache-sin18030-SIN', +9452 verbose headers 'x-cache': 'HIT', +9452 verbose headers 'x-cache-hits': '4', +9452 verbose headers 'x-timer': 'S1506936866.195070,VS0,VE0', +9452 verbose headers vary: 'Accept-Encoding, Accept' } +9453 silly get cb [ 304, +9453 silly get { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9453 silly get via: '1.1 varnish', +9453 silly get 'cache-control': 'max-age=300', +9453 silly get etag: 'W/"5818d879-37c6"', +9453 silly get age: '247', +9453 silly get connection: 'keep-alive', +9453 silly get 'x-served-by': 'cache-sin18030-SIN', +9453 silly get 'x-cache': 'HIT', +9453 silly get 'x-cache-hits': '4', +9453 silly get 'x-timer': 'S1506936866.195070,VS0,VE0', +9453 silly get vary: 'Accept-Encoding, Accept' } ] +9454 verbose etag https://registry.npmjs.org/pinkie from cache +9455 verbose get saving pinkie to /home/wso2/.npm/registry.npmjs.org/pinkie/.cache.json +9456 silly resolveWithNewModule pinkie@2.0.4 checking installable status +9457 silly cache add args [ 'pinkie@^2.0.0', null ] +9458 verbose cache add spec pinkie@^2.0.0 +9459 silly cache add parsed spec Result { +9459 silly cache add raw: 'pinkie@^2.0.0', +9459 silly cache add scope: null, +9459 silly cache add name: 'pinkie', +9459 silly cache add rawSpec: '^2.0.0', +9459 silly cache add spec: '>=2.0.0 <3.0.0', +9459 silly cache add type: 'range' } +9460 silly addNamed pinkie@>=2.0.0 <3.0.0 +9461 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for pinkie +9462 silly addNameRange { name: 'pinkie', range: '>=2.0.0 <3.0.0', hasData: false } +9463 silly mapToRegistry name pinkie +9464 silly mapToRegistry using default registry +9465 silly mapToRegistry registry https://registry.npmjs.org/ +9466 silly mapToRegistry uri https://registry.npmjs.org/pinkie +9467 verbose addNameRange registry:https://registry.npmjs.org/pinkie not in flight; fetching +9468 verbose get https://registry.npmjs.org/pinkie not expired, no request +9469 silly addNameRange number 2 { name: 'pinkie', range: '>=2.0.0 <3.0.0', hasData: true } +9470 silly addNameRange versions [ 'pinkie', +9470 silly addNameRange [ '0.0.0', +9470 silly addNameRange '0.0.1', +9470 silly addNameRange '0.0.2', +9470 silly addNameRange '1.0.0', +9470 silly addNameRange '2.0.0', +9470 silly addNameRange '2.0.1', +9470 silly addNameRange '2.0.2', +9470 silly addNameRange '2.0.3', +9470 silly addNameRange '2.0.4' ] ] +9471 silly addNamed pinkie@2.0.4 +9472 verbose addNamed "2.0.4" is a plain semver version for pinkie +9473 silly cache afterAdd pinkie@2.0.4 +9474 verbose afterAdd /home/wso2/.npm/pinkie/2.0.4/package/package.json not in flight; writing +9475 verbose afterAdd /home/wso2/.npm/pinkie/2.0.4/package/package.json written +9476 silly fetchNamedPackageData load-json-file +9477 silly mapToRegistry name load-json-file +9478 silly mapToRegistry using default registry +9479 silly mapToRegistry registry https://registry.npmjs.org/ +9480 silly mapToRegistry uri https://registry.npmjs.org/load-json-file +9481 silly fetchNamedPackageData normalize-package-data +9482 silly mapToRegistry name normalize-package-data +9483 silly mapToRegistry using default registry +9484 silly mapToRegistry registry https://registry.npmjs.org/ +9485 silly mapToRegistry uri https://registry.npmjs.org/normalize-package-data +9486 silly fetchNamedPackageData path-type +9487 silly mapToRegistry name path-type +9488 silly mapToRegistry using default registry +9489 silly mapToRegistry registry https://registry.npmjs.org/ +9490 silly mapToRegistry uri https://registry.npmjs.org/path-type +9491 verbose request uri https://registry.npmjs.org/load-json-file +9492 verbose request no auth needed +9493 info attempt registry request try #1 at 3:04:26 PM +9494 verbose etag W/"5998d53a-211c" +9495 verbose lastModified Sun, 20 Aug 2017 00:18:02 GMT +9496 http request GET https://registry.npmjs.org/load-json-file +9497 verbose request uri https://registry.npmjs.org/path-type +9498 verbose request no auth needed +9499 info attempt registry request try #1 at 3:04:26 PM +9500 verbose etag W/"5961642a-1b7b" +9501 verbose lastModified Sat, 08 Jul 2017 23:00:58 GMT +9502 http request GET https://registry.npmjs.org/path-type +9503 verbose request uri https://registry.npmjs.org/normalize-package-data +9504 verbose request no auth needed +9505 info attempt registry request try #1 at 3:04:26 PM +9506 verbose etag W/"5967f91b-108c1" +9507 verbose lastModified Thu, 13 Jul 2017 22:50:03 GMT +9508 http request GET https://registry.npmjs.org/normalize-package-data +9509 http 304 https://registry.npmjs.org/load-json-file +9510 verbose headers { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9510 verbose headers via: '1.1 varnish', +9510 verbose headers 'cache-control': 'max-age=300', +9510 verbose headers etag: 'W/"5998d53a-211c"', +9510 verbose headers age: '248', +9510 verbose headers connection: 'keep-alive', +9510 verbose headers 'x-served-by': 'cache-sin18031-SIN', +9510 verbose headers 'x-cache': 'HIT', +9510 verbose headers 'x-cache-hits': '3', +9510 verbose headers 'x-timer': 'S1506936867.557052,VS0,VE0', +9510 verbose headers vary: 'Accept-Encoding, Accept' } +9511 silly get cb [ 304, +9511 silly get { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9511 silly get via: '1.1 varnish', +9511 silly get 'cache-control': 'max-age=300', +9511 silly get etag: 'W/"5998d53a-211c"', +9511 silly get age: '248', +9511 silly get connection: 'keep-alive', +9511 silly get 'x-served-by': 'cache-sin18031-SIN', +9511 silly get 'x-cache': 'HIT', +9511 silly get 'x-cache-hits': '3', +9511 silly get 'x-timer': 'S1506936867.557052,VS0,VE0', +9511 silly get vary: 'Accept-Encoding, Accept' } ] +9512 verbose etag https://registry.npmjs.org/load-json-file from cache +9513 verbose get saving load-json-file to /home/wso2/.npm/registry.npmjs.org/load-json-file/.cache.json +9514 silly resolveWithNewModule load-json-file@1.1.0 checking installable status +9515 silly cache add args [ 'load-json-file@^1.0.0', null ] +9516 verbose cache add spec load-json-file@^1.0.0 +9517 silly cache add parsed spec Result { +9517 silly cache add raw: 'load-json-file@^1.0.0', +9517 silly cache add scope: null, +9517 silly cache add name: 'load-json-file', +9517 silly cache add rawSpec: '^1.0.0', +9517 silly cache add spec: '>=1.0.0 <2.0.0', +9517 silly cache add type: 'range' } +9518 silly addNamed load-json-file@>=1.0.0 <2.0.0 +9519 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for load-json-file +9520 silly addNameRange { name: 'load-json-file', +9520 silly addNameRange range: '>=1.0.0 <2.0.0', +9520 silly addNameRange hasData: false } +9521 silly mapToRegistry name load-json-file +9522 silly mapToRegistry using default registry +9523 silly mapToRegistry registry https://registry.npmjs.org/ +9524 silly mapToRegistry uri https://registry.npmjs.org/load-json-file +9525 verbose addNameRange registry:https://registry.npmjs.org/load-json-file not in flight; fetching +9526 verbose get https://registry.npmjs.org/load-json-file not expired, no request +9527 silly addNameRange number 2 { name: 'load-json-file', +9527 silly addNameRange range: '>=1.0.0 <2.0.0', +9527 silly addNameRange hasData: true } +9528 silly addNameRange versions [ 'load-json-file', +9528 silly addNameRange [ '1.0.0', '1.0.1', '1.1.0', '2.0.0', '3.0.0' ] ] +9529 silly addNamed load-json-file@1.1.0 +9530 verbose addNamed "1.1.0" is a plain semver version for load-json-file +9531 silly cache afterAdd load-json-file@1.1.0 +9532 verbose afterAdd /home/wso2/.npm/load-json-file/1.1.0/package/package.json not in flight; writing +9533 verbose afterAdd /home/wso2/.npm/load-json-file/1.1.0/package/package.json written +9534 http 304 https://registry.npmjs.org/path-type +9535 verbose headers { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9535 verbose headers via: '1.1 varnish', +9535 verbose headers 'cache-control': 'max-age=300', +9535 verbose headers etag: 'W/"5961642a-1b7b"', +9535 verbose headers age: '249', +9535 verbose headers connection: 'keep-alive', +9535 verbose headers 'x-served-by': 'cache-sin18022-SIN', +9535 verbose headers 'x-cache': 'HIT', +9535 verbose headers 'x-cache-hits': '5', +9535 verbose headers 'x-timer': 'S1506936867.552906,VS0,VE0', +9535 verbose headers vary: 'Accept-Encoding, Accept' } +9536 silly get cb [ 304, +9536 silly get { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9536 silly get via: '1.1 varnish', +9536 silly get 'cache-control': 'max-age=300', +9536 silly get etag: 'W/"5961642a-1b7b"', +9536 silly get age: '249', +9536 silly get connection: 'keep-alive', +9536 silly get 'x-served-by': 'cache-sin18022-SIN', +9536 silly get 'x-cache': 'HIT', +9536 silly get 'x-cache-hits': '5', +9536 silly get 'x-timer': 'S1506936867.552906,VS0,VE0', +9536 silly get vary: 'Accept-Encoding, Accept' } ] +9537 verbose etag https://registry.npmjs.org/path-type from cache +9538 verbose get saving path-type to /home/wso2/.npm/registry.npmjs.org/path-type/.cache.json +9539 silly resolveWithNewModule path-type@1.1.0 checking installable status +9540 silly cache add args [ 'path-type@^1.0.0', null ] +9541 verbose cache add spec path-type@^1.0.0 +9542 silly cache add parsed spec Result { +9542 silly cache add raw: 'path-type@^1.0.0', +9542 silly cache add scope: null, +9542 silly cache add name: 'path-type', +9542 silly cache add rawSpec: '^1.0.0', +9542 silly cache add spec: '>=1.0.0 <2.0.0', +9542 silly cache add type: 'range' } +9543 silly addNamed path-type@>=1.0.0 <2.0.0 +9544 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for path-type +9545 silly addNameRange { name: 'path-type', range: '>=1.0.0 <2.0.0', hasData: false } +9546 silly mapToRegistry name path-type +9547 silly mapToRegistry using default registry +9548 silly mapToRegistry registry https://registry.npmjs.org/ +9549 silly mapToRegistry uri https://registry.npmjs.org/path-type +9550 verbose addNameRange registry:https://registry.npmjs.org/path-type not in flight; fetching +9551 verbose get https://registry.npmjs.org/path-type not expired, no request +9552 silly addNameRange number 2 { name: 'path-type', range: '>=1.0.0 <2.0.0', hasData: true } +9553 silly addNameRange versions [ 'path-type', [ '1.0.0', '1.1.0', '2.0.0', '3.0.0' ] ] +9554 silly addNamed path-type@1.1.0 +9555 verbose addNamed "1.1.0" is a plain semver version for path-type +9556 silly cache afterAdd path-type@1.1.0 +9557 verbose afterAdd /home/wso2/.npm/path-type/1.1.0/package/package.json not in flight; writing +9558 verbose afterAdd /home/wso2/.npm/path-type/1.1.0/package/package.json written +9559 http 304 https://registry.npmjs.org/normalize-package-data +9560 verbose headers { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9560 verbose headers via: '1.1 varnish', +9560 verbose headers 'cache-control': 'max-age=300', +9560 verbose headers etag: 'W/"5967f91b-108c1"', +9560 verbose headers age: '39', +9560 verbose headers connection: 'keep-alive', +9560 verbose headers 'x-served-by': 'cache-sin18023-SIN', +9560 verbose headers 'x-cache': 'HIT', +9560 verbose headers 'x-cache-hits': '1', +9560 verbose headers 'x-timer': 'S1506936867.595097,VS0,VE0', +9560 verbose headers vary: 'Accept-Encoding, Accept' } +9561 silly get cb [ 304, +9561 silly get { date: 'Mon, 02 Oct 2017 09:34:26 GMT', +9561 silly get via: '1.1 varnish', +9561 silly get 'cache-control': 'max-age=300', +9561 silly get etag: 'W/"5967f91b-108c1"', +9561 silly get age: '39', +9561 silly get connection: 'keep-alive', +9561 silly get 'x-served-by': 'cache-sin18023-SIN', +9561 silly get 'x-cache': 'HIT', +9561 silly get 'x-cache-hits': '1', +9561 silly get 'x-timer': 'S1506936867.595097,VS0,VE0', +9561 silly get vary: 'Accept-Encoding, Accept' } ] +9562 verbose etag https://registry.npmjs.org/normalize-package-data from cache +9563 verbose get saving normalize-package-data to /home/wso2/.npm/registry.npmjs.org/normalize-package-data/.cache.json +9564 silly resolveWithNewModule normalize-package-data@2.4.0 checking installable status +9565 silly cache add args [ 'normalize-package-data@^2.3.2', null ] +9566 verbose cache add spec normalize-package-data@^2.3.2 +9567 silly cache add parsed spec Result { +9567 silly cache add raw: 'normalize-package-data@^2.3.2', +9567 silly cache add scope: null, +9567 silly cache add name: 'normalize-package-data', +9567 silly cache add rawSpec: '^2.3.2', +9567 silly cache add spec: '>=2.3.2 <3.0.0', +9567 silly cache add type: 'range' } +9568 silly addNamed normalize-package-data@>=2.3.2 <3.0.0 +9569 verbose addNamed ">=2.3.2 <3.0.0" is a valid semver range for normalize-package-data +9570 silly addNameRange { name: 'normalize-package-data', +9570 silly addNameRange range: '>=2.3.2 <3.0.0', +9570 silly addNameRange hasData: false } +9571 silly mapToRegistry name normalize-package-data +9572 silly mapToRegistry using default registry +9573 silly mapToRegistry registry https://registry.npmjs.org/ +9574 silly mapToRegistry uri https://registry.npmjs.org/normalize-package-data +9575 verbose addNameRange registry:https://registry.npmjs.org/normalize-package-data not in flight; fetching +9576 verbose get https://registry.npmjs.org/normalize-package-data not expired, no request +9577 silly addNameRange number 2 { name: 'normalize-package-data', +9577 silly addNameRange range: '>=2.3.2 <3.0.0', +9577 silly addNameRange hasData: true } +9578 silly addNameRange versions [ 'normalize-package-data', +9578 silly addNameRange [ '0.0.1', +9578 silly addNameRange '0.0.3', +9578 silly addNameRange '0.0.5', +9578 silly addNameRange '0.0.7', +9578 silly addNameRange '0.0.9', +9578 silly addNameRange '0.0.10', +9578 silly addNameRange '0.1.1', +9578 silly addNameRange '0.1.2', +9578 silly addNameRange '0.1.3', +9578 silly addNameRange '0.1.4', +9578 silly addNameRange '0.1.5', +9578 silly addNameRange '0.1.6', +9578 silly addNameRange '0.1.7', +9578 silly addNameRange '0.2.0', +9578 silly addNameRange '0.2.1', +9578 silly addNameRange '0.2.2', +9578 silly addNameRange '0.2.3', +9578 silly addNameRange '0.2.4', +9578 silly addNameRange '0.2.5', +9578 silly addNameRange '0.2.6', +9578 silly addNameRange '0.2.7', +9578 silly addNameRange '0.2.8', +9578 silly addNameRange '0.2.9', +9578 silly addNameRange '0.2.11', +9578 silly addNameRange '0.2.12', +9578 silly addNameRange '0.2.13', +9578 silly addNameRange '0.3.0', +9578 silly addNameRange '0.4.1', +9578 silly addNameRange '0.4.2', +9578 silly addNameRange '1.0.0', +9578 silly addNameRange '1.0.1', +9578 silly addNameRange '1.0.2', +9578 silly addNameRange '1.0.3', +9578 silly addNameRange '2.0.0', +9578 silly addNameRange '2.1.0', +9578 silly addNameRange '2.2.0', +9578 silly addNameRange '2.2.1', +9578 silly addNameRange '2.3.0', +9578 silly addNameRange '2.3.1', +9578 silly addNameRange '2.3.2', +9578 silly addNameRange '2.3.3', +9578 silly addNameRange '2.3.4', +9578 silly addNameRange '2.3.5', +9578 silly addNameRange '2.3.6', +9578 silly addNameRange '2.3.7', +9578 silly addNameRange '2.3.8', +9578 silly addNameRange '2.4.0' ] ] +9579 silly addNamed normalize-package-data@2.4.0 +9580 verbose addNamed "2.4.0" is a plain semver version for normalize-package-data +9581 silly cache afterAdd normalize-package-data@2.4.0 +9582 verbose afterAdd /home/wso2/.npm/normalize-package-data/2.4.0/package/package.json not in flight; writing +9583 verbose afterAdd /home/wso2/.npm/normalize-package-data/2.4.0/package/package.json written +9584 silly fetchNamedPackageData graceful-fs +9585 silly mapToRegistry name graceful-fs +9586 silly mapToRegistry using default registry +9587 silly mapToRegistry registry https://registry.npmjs.org/ +9588 silly mapToRegistry uri https://registry.npmjs.org/graceful-fs +9589 silly fetchNamedPackageData parse-json +9590 silly mapToRegistry name parse-json +9591 silly mapToRegistry using default registry +9592 silly mapToRegistry registry https://registry.npmjs.org/ +9593 silly mapToRegistry uri https://registry.npmjs.org/parse-json +9594 silly fetchNamedPackageData pify +9595 silly mapToRegistry name pify +9596 silly mapToRegistry using default registry +9597 silly mapToRegistry registry https://registry.npmjs.org/ +9598 silly mapToRegistry uri https://registry.npmjs.org/pify +9599 silly fetchNamedPackageData strip-bom +9600 silly mapToRegistry name strip-bom +9601 silly mapToRegistry using default registry +9602 silly mapToRegistry registry https://registry.npmjs.org/ +9603 silly mapToRegistry uri https://registry.npmjs.org/strip-bom +9604 verbose request uri https://registry.npmjs.org/pify +9605 verbose request no auth needed +9606 info attempt registry request try #1 at 3:04:26 PM +9607 verbose etag W/"59adb074-3b21" +9608 verbose lastModified Mon, 04 Sep 2017 19:58:44 GMT +9609 http request GET https://registry.npmjs.org/pify +9610 verbose request uri https://registry.npmjs.org/strip-bom +9611 verbose request no auth needed +9612 info attempt registry request try #1 at 3:04:26 PM +9613 verbose etag W/"599a9140-2d5e" +9614 verbose lastModified Mon, 21 Aug 2017 07:52:32 GMT +9615 http request GET https://registry.npmjs.org/strip-bom +9616 verbose request uri https://registry.npmjs.org/parse-json +9617 verbose request no auth needed +9618 info attempt registry request try #1 at 3:04:26 PM +9619 verbose etag W/"59956bc4-2848" +9620 verbose lastModified Thu, 17 Aug 2017 10:11:16 GMT +9621 http request GET https://registry.npmjs.org/parse-json +9622 verbose request uri https://registry.npmjs.org/graceful-fs +9623 verbose request no auth needed +9624 info attempt registry request try #1 at 3:04:26 PM +9625 verbose etag W/"599143e3-10106" +9626 verbose lastModified Mon, 14 Aug 2017 06:32:03 GMT +9627 http request GET https://registry.npmjs.org/graceful-fs +9628 http 304 https://registry.npmjs.org/parse-json +9629 verbose headers { date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9629 verbose headers via: '1.1 varnish', +9629 verbose headers 'cache-control': 'max-age=300', +9629 verbose headers etag: 'W/"59956bc4-2848"', +9629 verbose headers age: '122', +9629 verbose headers connection: 'keep-alive', +9629 verbose headers 'x-served-by': 'cache-sin18020-SIN', +9629 verbose headers 'x-cache': 'HIT', +9629 verbose headers 'x-cache-hits': '1', +9629 verbose headers 'x-timer': 'S1506936867.024822,VS0,VE0', +9629 verbose headers vary: 'Accept-Encoding, Accept' } +9630 silly get cb [ 304, +9630 silly get { date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9630 silly get via: '1.1 varnish', +9630 silly get 'cache-control': 'max-age=300', +9630 silly get etag: 'W/"59956bc4-2848"', +9630 silly get age: '122', +9630 silly get connection: 'keep-alive', +9630 silly get 'x-served-by': 'cache-sin18020-SIN', +9630 silly get 'x-cache': 'HIT', +9630 silly get 'x-cache-hits': '1', +9630 silly get 'x-timer': 'S1506936867.024822,VS0,VE0', +9630 silly get vary: 'Accept-Encoding, Accept' } ] +9631 verbose etag https://registry.npmjs.org/parse-json from cache +9632 verbose get saving parse-json to /home/wso2/.npm/registry.npmjs.org/parse-json/.cache.json +9633 silly resolveWithNewModule parse-json@2.2.0 checking installable status +9634 silly cache add args [ 'parse-json@^2.2.0', null ] +9635 verbose cache add spec parse-json@^2.2.0 +9636 silly cache add parsed spec Result { +9636 silly cache add raw: 'parse-json@^2.2.0', +9636 silly cache add scope: null, +9636 silly cache add name: 'parse-json', +9636 silly cache add rawSpec: '^2.2.0', +9636 silly cache add spec: '>=2.2.0 <3.0.0', +9636 silly cache add type: 'range' } +9637 silly addNamed parse-json@>=2.2.0 <3.0.0 +9638 verbose addNamed ">=2.2.0 <3.0.0" is a valid semver range for parse-json +9639 silly addNameRange { name: 'parse-json', range: '>=2.2.0 <3.0.0', hasData: false } +9640 silly mapToRegistry name parse-json +9641 silly mapToRegistry using default registry +9642 silly mapToRegistry registry https://registry.npmjs.org/ +9643 silly mapToRegistry uri https://registry.npmjs.org/parse-json +9644 verbose addNameRange registry:https://registry.npmjs.org/parse-json not in flight; fetching +9645 verbose get https://registry.npmjs.org/parse-json not expired, no request +9646 silly addNameRange number 2 { name: 'parse-json', range: '>=2.2.0 <3.0.0', hasData: true } +9647 silly addNameRange versions [ 'parse-json', +9647 silly addNameRange [ '1.0.0', '1.0.1', '2.0.0', '2.1.0', '2.2.0', '3.0.0' ] ] +9648 silly addNamed parse-json@2.2.0 +9649 verbose addNamed "2.2.0" is a plain semver version for parse-json +9650 silly cache afterAdd parse-json@2.2.0 +9651 verbose afterAdd /home/wso2/.npm/parse-json/2.2.0/package/package.json not in flight; writing +9652 verbose afterAdd /home/wso2/.npm/parse-json/2.2.0/package/package.json written +9653 http 200 https://registry.npmjs.org/graceful-fs +9654 verbose headers { server: 'nginx/1.10.3', +9654 verbose headers 'content-type': 'application/json', +9654 verbose headers 'last-modified': 'Mon, 18 Sep 2017 09:16:49 GMT', +9654 verbose headers etag: 'W/"59bf8f01-1011b"', +9654 verbose headers 'content-encoding': 'gzip', +9654 verbose headers 'cache-control': 'max-age=300', +9654 verbose headers 'content-length': '8608', +9654 verbose headers 'accept-ranges': 'bytes', +9654 verbose headers date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9654 verbose headers via: '1.1 varnish', +9654 verbose headers age: '33', +9654 verbose headers connection: 'keep-alive', +9654 verbose headers 'x-served-by': 'cache-sin18024-SIN', +9654 verbose headers 'x-cache': 'HIT', +9654 verbose headers 'x-cache-hits': '2', +9654 verbose headers 'x-timer': 'S1506936867.031824,VS0,VE0', +9654 verbose headers vary: 'Accept-Encoding, Accept' } +9655 silly get cb [ 200, +9655 silly get { server: 'nginx/1.10.3', +9655 silly get 'content-type': 'application/json', +9655 silly get 'last-modified': 'Mon, 18 Sep 2017 09:16:49 GMT', +9655 silly get etag: 'W/"59bf8f01-1011b"', +9655 silly get 'content-encoding': 'gzip', +9655 silly get 'cache-control': 'max-age=300', +9655 silly get 'content-length': '8608', +9655 silly get 'accept-ranges': 'bytes', +9655 silly get date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9655 silly get via: '1.1 varnish', +9655 silly get age: '33', +9655 silly get connection: 'keep-alive', +9655 silly get 'x-served-by': 'cache-sin18024-SIN', +9655 silly get 'x-cache': 'HIT', +9655 silly get 'x-cache-hits': '2', +9655 silly get 'x-timer': 'S1506936867.031824,VS0,VE0', +9655 silly get vary: 'Accept-Encoding, Accept' } ] +9656 verbose get saving graceful-fs to /home/wso2/.npm/registry.npmjs.org/graceful-fs/.cache.json +9657 silly resolveWithNewModule graceful-fs@4.1.11 checking installable status +9658 silly cache add args [ 'graceful-fs@^4.1.2', null ] +9659 verbose cache add spec graceful-fs@^4.1.2 +9660 silly cache add parsed spec Result { +9660 silly cache add raw: 'graceful-fs@^4.1.2', +9660 silly cache add scope: null, +9660 silly cache add name: 'graceful-fs', +9660 silly cache add rawSpec: '^4.1.2', +9660 silly cache add spec: '>=4.1.2 <5.0.0', +9660 silly cache add type: 'range' } +9661 silly addNamed graceful-fs@>=4.1.2 <5.0.0 +9662 verbose addNamed ">=4.1.2 <5.0.0" is a valid semver range for graceful-fs +9663 silly addNameRange { name: 'graceful-fs', range: '>=4.1.2 <5.0.0', hasData: false } +9664 silly mapToRegistry name graceful-fs +9665 silly mapToRegistry using default registry +9666 silly mapToRegistry registry https://registry.npmjs.org/ +9667 silly mapToRegistry uri https://registry.npmjs.org/graceful-fs +9668 verbose addNameRange registry:https://registry.npmjs.org/graceful-fs not in flight; fetching +9669 verbose get https://registry.npmjs.org/graceful-fs not expired, no request +9670 silly addNameRange number 2 { name: 'graceful-fs', range: '>=4.1.2 <5.0.0', hasData: true } +9671 silly addNameRange versions [ 'graceful-fs', +9671 silly addNameRange [ '1.0.0', +9671 silly addNameRange '1.0.1', +9671 silly addNameRange '1.0.2', +9671 silly addNameRange '1.1.0', +9671 silly addNameRange '1.1.1', +9671 silly addNameRange '1.1.2', +9671 silly addNameRange '1.1.3', +9671 silly addNameRange '1.1.4', +9671 silly addNameRange '1.1.5', +9671 silly addNameRange '1.1.6', +9671 silly addNameRange '1.1.7', +9671 silly addNameRange '1.1.8', +9671 silly addNameRange '1.1.9', +9671 silly addNameRange '1.1.10', +9671 silly addNameRange '1.1.11', +9671 silly addNameRange '1.1.12', +9671 silly addNameRange '1.1.13', +9671 silly addNameRange '1.1.14', +9671 silly addNameRange '1.2.0', +9671 silly addNameRange '1.2.1', +9671 silly addNameRange '1.2.2', +9671 silly addNameRange '1.2.3', +9671 silly addNameRange '2.0.0', +9671 silly addNameRange '2.0.1', +9671 silly addNameRange '2.0.2', +9671 silly addNameRange '2.0.3', +9671 silly addNameRange '3.0.0', +9671 silly addNameRange '3.0.1', +9671 silly addNameRange '3.0.2', +9671 silly addNameRange '3.0.3', +9671 silly addNameRange '3.0.4', +9671 silly addNameRange '3.0.5', +9671 silly addNameRange '3.0.6', +9671 silly addNameRange '3.0.7', +9671 silly addNameRange '3.0.8', +9671 silly addNameRange '4.1.0', +9671 silly addNameRange '4.1.1', +9671 silly addNameRange '4.1.2', +9671 silly addNameRange '4.1.3', +9671 silly addNameRange '4.1.4', +9671 silly addNameRange '4.1.5', +9671 silly addNameRange '3.0.9', +9671 silly addNameRange '4.1.6', +9671 silly addNameRange '3.0.10', +9671 silly addNameRange '3.0.11', +9671 silly addNameRange '4.1.7', +9671 silly addNameRange '4.1.8', +9671 silly addNameRange '4.1.9', +9671 silly addNameRange '4.1.10', +9671 silly addNameRange '4.1.11' ] ] +9672 silly addNamed graceful-fs@4.1.11 +9673 verbose addNamed "4.1.11" is a plain semver version for graceful-fs +9674 silly cache afterAdd graceful-fs@4.1.11 +9675 verbose afterAdd /home/wso2/.npm/graceful-fs/4.1.11/package/package.json not in flight; writing +9676 verbose afterAdd /home/wso2/.npm/graceful-fs/4.1.11/package/package.json written +9677 http 304 https://registry.npmjs.org/pify +9678 verbose headers { date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9678 verbose headers via: '1.1 varnish', +9678 verbose headers 'cache-control': 'max-age=300', +9678 verbose headers etag: 'W/"59adb074-3b21"', +9678 verbose headers age: '22', +9678 verbose headers connection: 'keep-alive', +9678 verbose headers 'x-served-by': 'cache-sin18022-SIN', +9678 verbose headers 'x-cache': 'HIT', +9678 verbose headers 'x-cache-hits': '2', +9678 verbose headers 'x-timer': 'S1506936867.054113,VS0,VE0', +9678 verbose headers vary: 'Accept-Encoding, Accept' } +9679 silly get cb [ 304, +9679 silly get { date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9679 silly get via: '1.1 varnish', +9679 silly get 'cache-control': 'max-age=300', +9679 silly get etag: 'W/"59adb074-3b21"', +9679 silly get age: '22', +9679 silly get connection: 'keep-alive', +9679 silly get 'x-served-by': 'cache-sin18022-SIN', +9679 silly get 'x-cache': 'HIT', +9679 silly get 'x-cache-hits': '2', +9679 silly get 'x-timer': 'S1506936867.054113,VS0,VE0', +9679 silly get vary: 'Accept-Encoding, Accept' } ] +9680 verbose etag https://registry.npmjs.org/pify from cache +9681 verbose get saving pify to /home/wso2/.npm/registry.npmjs.org/pify/.cache.json +9682 silly resolveWithNewModule pify@2.3.0 checking installable status +9683 silly cache add args [ 'pify@^2.0.0', null ] +9684 verbose cache add spec pify@^2.0.0 +9685 silly cache add parsed spec Result { +9685 silly cache add raw: 'pify@^2.0.0', +9685 silly cache add scope: null, +9685 silly cache add name: 'pify', +9685 silly cache add rawSpec: '^2.0.0', +9685 silly cache add spec: '>=2.0.0 <3.0.0', +9685 silly cache add type: 'range' } +9686 silly addNamed pify@>=2.0.0 <3.0.0 +9687 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for pify +9688 silly addNameRange { name: 'pify', range: '>=2.0.0 <3.0.0', hasData: false } +9689 silly mapToRegistry name pify +9690 silly mapToRegistry using default registry +9691 silly mapToRegistry registry https://registry.npmjs.org/ +9692 silly mapToRegistry uri https://registry.npmjs.org/pify +9693 verbose addNameRange registry:https://registry.npmjs.org/pify not in flight; fetching +9694 http 304 https://registry.npmjs.org/strip-bom +9695 verbose headers { date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9695 verbose headers via: '1.1 varnish', +9695 verbose headers 'cache-control': 'max-age=300', +9695 verbose headers etag: 'W/"599a9140-2d5e"', +9695 verbose headers age: '37', +9695 verbose headers connection: 'keep-alive', +9695 verbose headers 'x-served-by': 'cache-sin18023-SIN', +9695 verbose headers 'x-cache': 'HIT', +9695 verbose headers 'x-cache-hits': '3', +9695 verbose headers 'x-timer': 'S1506936867.060031,VS0,VE0', +9695 verbose headers vary: 'Accept-Encoding, Accept' } +9696 silly get cb [ 304, +9696 silly get { date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9696 silly get via: '1.1 varnish', +9696 silly get 'cache-control': 'max-age=300', +9696 silly get etag: 'W/"599a9140-2d5e"', +9696 silly get age: '37', +9696 silly get connection: 'keep-alive', +9696 silly get 'x-served-by': 'cache-sin18023-SIN', +9696 silly get 'x-cache': 'HIT', +9696 silly get 'x-cache-hits': '3', +9696 silly get 'x-timer': 'S1506936867.060031,VS0,VE0', +9696 silly get vary: 'Accept-Encoding, Accept' } ] +9697 verbose etag https://registry.npmjs.org/strip-bom from cache +9698 verbose get saving strip-bom to /home/wso2/.npm/registry.npmjs.org/strip-bom/.cache.json +9699 verbose get https://registry.npmjs.org/pify not expired, no request +9700 silly addNameRange number 2 { name: 'pify', range: '>=2.0.0 <3.0.0', hasData: true } +9701 silly addNameRange versions [ 'pify', +9701 silly addNameRange [ '1.0.0', +9701 silly addNameRange '1.1.0', +9701 silly addNameRange '1.1.1', +9701 silly addNameRange '2.0.0', +9701 silly addNameRange '2.1.0', +9701 silly addNameRange '2.2.0', +9701 silly addNameRange '2.3.0', +9701 silly addNameRange '3.0.0' ] ] +9702 silly addNamed pify@2.3.0 +9703 verbose addNamed "2.3.0" is a plain semver version for pify +9704 silly resolveWithNewModule strip-bom@2.0.0 checking installable status +9705 silly cache add args [ 'strip-bom@^2.0.0', null ] +9706 verbose cache add spec strip-bom@^2.0.0 +9707 silly cache add parsed spec Result { +9707 silly cache add raw: 'strip-bom@^2.0.0', +9707 silly cache add scope: null, +9707 silly cache add name: 'strip-bom', +9707 silly cache add rawSpec: '^2.0.0', +9707 silly cache add spec: '>=2.0.0 <3.0.0', +9707 silly cache add type: 'range' } +9708 silly addNamed strip-bom@>=2.0.0 <3.0.0 +9709 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for strip-bom +9710 silly addNameRange { name: 'strip-bom', range: '>=2.0.0 <3.0.0', hasData: false } +9711 silly mapToRegistry name strip-bom +9712 silly mapToRegistry using default registry +9713 silly mapToRegistry registry https://registry.npmjs.org/ +9714 silly mapToRegistry uri https://registry.npmjs.org/strip-bom +9715 verbose addNameRange registry:https://registry.npmjs.org/strip-bom not in flight; fetching +9716 silly cache afterAdd pify@2.3.0 +9717 verbose afterAdd /home/wso2/.npm/pify/2.3.0/package/package.json not in flight; writing +9718 verbose get https://registry.npmjs.org/strip-bom not expired, no request +9719 silly addNameRange number 2 { name: 'strip-bom', range: '>=2.0.0 <3.0.0', hasData: true } +9720 silly addNameRange versions [ 'strip-bom', +9720 silly addNameRange [ '0.1.0', +9720 silly addNameRange '0.2.0', +9720 silly addNameRange '0.2.1', +9720 silly addNameRange '0.3.0', +9720 silly addNameRange '0.3.1', +9720 silly addNameRange '1.0.0', +9720 silly addNameRange '2.0.0', +9720 silly addNameRange '3.0.0' ] ] +9721 silly addNamed strip-bom@2.0.0 +9722 verbose addNamed "2.0.0" is a plain semver version for strip-bom +9723 verbose afterAdd /home/wso2/.npm/pify/2.3.0/package/package.json written +9724 silly cache afterAdd strip-bom@2.0.0 +9725 verbose afterAdd /home/wso2/.npm/strip-bom/2.0.0/package/package.json not in flight; writing +9726 verbose afterAdd /home/wso2/.npm/strip-bom/2.0.0/package/package.json written +9727 silly fetchNamedPackageData error-ex +9728 silly mapToRegistry name error-ex +9729 silly mapToRegistry using default registry +9730 silly mapToRegistry registry https://registry.npmjs.org/ +9731 silly mapToRegistry uri https://registry.npmjs.org/error-ex +9732 verbose request uri https://registry.npmjs.org/error-ex +9733 verbose request no auth needed +9734 info attempt registry request try #1 at 3:04:27 PM +9735 verbose etag W/"5995038b-5991" +9736 verbose lastModified Thu, 17 Aug 2017 02:46:35 GMT +9737 http request GET https://registry.npmjs.org/error-ex +9738 http 304 https://registry.npmjs.org/error-ex +9739 verbose headers { date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9739 verbose headers via: '1.1 varnish', +9739 verbose headers 'cache-control': 'max-age=300', +9739 verbose headers etag: 'W/"5995038b-5991"', +9739 verbose headers age: '121', +9739 verbose headers connection: 'keep-alive', +9739 verbose headers 'x-served-by': 'cache-sin18028-SIN', +9739 verbose headers 'x-cache': 'HIT', +9739 verbose headers 'x-cache-hits': '6', +9739 verbose headers 'x-timer': 'S1506936868.596883,VS0,VE0', +9739 verbose headers vary: 'Accept-Encoding, Accept' } +9740 silly get cb [ 304, +9740 silly get { date: 'Mon, 02 Oct 2017 09:34:27 GMT', +9740 silly get via: '1.1 varnish', +9740 silly get 'cache-control': 'max-age=300', +9740 silly get etag: 'W/"5995038b-5991"', +9740 silly get age: '121', +9740 silly get connection: 'keep-alive', +9740 silly get 'x-served-by': 'cache-sin18028-SIN', +9740 silly get 'x-cache': 'HIT', +9740 silly get 'x-cache-hits': '6', +9740 silly get 'x-timer': 'S1506936868.596883,VS0,VE0', +9740 silly get vary: 'Accept-Encoding, Accept' } ] +9741 verbose etag https://registry.npmjs.org/error-ex from cache +9742 verbose get saving error-ex to /home/wso2/.npm/registry.npmjs.org/error-ex/.cache.json +9743 silly resolveWithNewModule error-ex@1.3.1 checking installable status +9744 silly cache add args [ 'error-ex@^1.2.0', null ] +9745 verbose cache add spec error-ex@^1.2.0 +9746 silly cache add parsed spec Result { +9746 silly cache add raw: 'error-ex@^1.2.0', +9746 silly cache add scope: null, +9746 silly cache add name: 'error-ex', +9746 silly cache add rawSpec: '^1.2.0', +9746 silly cache add spec: '>=1.2.0 <2.0.0', +9746 silly cache add type: 'range' } +9747 silly addNamed error-ex@>=1.2.0 <2.0.0 +9748 verbose addNamed ">=1.2.0 <2.0.0" is a valid semver range for error-ex +9749 silly addNameRange { name: 'error-ex', range: '>=1.2.0 <2.0.0', hasData: false } +9750 silly mapToRegistry name error-ex +9751 silly mapToRegistry using default registry +9752 silly mapToRegistry registry https://registry.npmjs.org/ +9753 silly mapToRegistry uri https://registry.npmjs.org/error-ex +9754 verbose addNameRange registry:https://registry.npmjs.org/error-ex not in flight; fetching +9755 verbose get https://registry.npmjs.org/error-ex not expired, no request +9756 silly addNameRange number 2 { name: 'error-ex', range: '>=1.2.0 <2.0.0', hasData: true } +9757 silly addNameRange versions [ 'error-ex', +9757 silly addNameRange [ '0.1.0', +9757 silly addNameRange '0.2.0', +9757 silly addNameRange '0.2.1', +9757 silly addNameRange '0.2.2', +9757 silly addNameRange '0.2.3', +9757 silly addNameRange '0.2.4', +9757 silly addNameRange '0.3.0', +9757 silly addNameRange '0.3.1', +9757 silly addNameRange '1.0.0', +9757 silly addNameRange '1.1.0', +9757 silly addNameRange '1.1.1', +9757 silly addNameRange '1.1.2', +9757 silly addNameRange '1.2.0', +9757 silly addNameRange '1.3.0', +9757 silly addNameRange '1.3.1' ] ] +9758 silly addNamed error-ex@1.3.1 +9759 verbose addNamed "1.3.1" is a plain semver version for error-ex +9760 silly cache afterAdd error-ex@1.3.1 +9761 verbose afterAdd /home/wso2/.npm/error-ex/1.3.1/package/package.json not in flight; writing +9762 verbose afterAdd /home/wso2/.npm/error-ex/1.3.1/package/package.json written +9763 silly fetchNamedPackageData is-arrayish +9764 silly mapToRegistry name is-arrayish +9765 silly mapToRegistry using default registry +9766 silly mapToRegistry registry https://registry.npmjs.org/ +9767 silly mapToRegistry uri https://registry.npmjs.org/is-arrayish +9768 verbose request uri https://registry.npmjs.org/is-arrayish +9769 verbose request no auth needed +9770 info attempt registry request try #1 at 3:04:27 PM +9771 verbose etag W/"59162dcc-2293" +9772 verbose lastModified Fri, 12 May 2017 21:49:00 GMT +9773 http request GET https://registry.npmjs.org/is-arrayish +9774 http 304 https://registry.npmjs.org/is-arrayish +9775 verbose headers { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9775 verbose headers via: '1.1 varnish', +9775 verbose headers 'cache-control': 'max-age=300', +9775 verbose headers etag: 'W/"59162dcc-2293"', +9775 verbose headers age: '69', +9775 verbose headers connection: 'keep-alive', +9775 verbose headers 'x-served-by': 'cache-sin18028-SIN', +9775 verbose headers 'x-cache': 'HIT', +9775 verbose headers 'x-cache-hits': '2', +9775 verbose headers 'x-timer': 'S1506936868.219201,VS0,VE0', +9775 verbose headers vary: 'Accept-Encoding, Accept' } +9776 silly get cb [ 304, +9776 silly get { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9776 silly get via: '1.1 varnish', +9776 silly get 'cache-control': 'max-age=300', +9776 silly get etag: 'W/"59162dcc-2293"', +9776 silly get age: '69', +9776 silly get connection: 'keep-alive', +9776 silly get 'x-served-by': 'cache-sin18028-SIN', +9776 silly get 'x-cache': 'HIT', +9776 silly get 'x-cache-hits': '2', +9776 silly get 'x-timer': 'S1506936868.219201,VS0,VE0', +9776 silly get vary: 'Accept-Encoding, Accept' } ] +9777 verbose etag https://registry.npmjs.org/is-arrayish from cache +9778 verbose get saving is-arrayish to /home/wso2/.npm/registry.npmjs.org/is-arrayish/.cache.json +9779 silly resolveWithNewModule is-arrayish@0.2.1 checking installable status +9780 silly cache add args [ 'is-arrayish@^0.2.1', null ] +9781 verbose cache add spec is-arrayish@^0.2.1 +9782 silly cache add parsed spec Result { +9782 silly cache add raw: 'is-arrayish@^0.2.1', +9782 silly cache add scope: null, +9782 silly cache add name: 'is-arrayish', +9782 silly cache add rawSpec: '^0.2.1', +9782 silly cache add spec: '>=0.2.1 <0.3.0', +9782 silly cache add type: 'range' } +9783 silly addNamed is-arrayish@>=0.2.1 <0.3.0 +9784 verbose addNamed ">=0.2.1 <0.3.0" is a valid semver range for is-arrayish +9785 silly addNameRange { name: 'is-arrayish', range: '>=0.2.1 <0.3.0', hasData: false } +9786 silly mapToRegistry name is-arrayish +9787 silly mapToRegistry using default registry +9788 silly mapToRegistry registry https://registry.npmjs.org/ +9789 silly mapToRegistry uri https://registry.npmjs.org/is-arrayish +9790 verbose addNameRange registry:https://registry.npmjs.org/is-arrayish not in flight; fetching +9791 verbose get https://registry.npmjs.org/is-arrayish not expired, no request +9792 silly addNameRange number 2 { name: 'is-arrayish', range: '>=0.2.1 <0.3.0', hasData: true } +9793 silly addNameRange versions [ 'is-arrayish', +9793 silly addNameRange [ '0.1.0', '0.1.1', '0.2.0', '0.2.1', '0.3.0', '0.3.1' ] ] +9794 silly addNamed is-arrayish@0.2.1 +9795 verbose addNamed "0.2.1" is a plain semver version for is-arrayish +9796 silly cache afterAdd is-arrayish@0.2.1 +9797 verbose afterAdd /home/wso2/.npm/is-arrayish/0.2.1/package/package.json not in flight; writing +9798 verbose afterAdd /home/wso2/.npm/is-arrayish/0.2.1/package/package.json written +9799 silly fetchNamedPackageData is-utf8 +9800 silly mapToRegistry name is-utf8 +9801 silly mapToRegistry using default registry +9802 silly mapToRegistry registry https://registry.npmjs.org/ +9803 silly mapToRegistry uri https://registry.npmjs.org/is-utf8 +9804 verbose request uri https://registry.npmjs.org/is-utf8 +9805 verbose request no auth needed +9806 info attempt registry request try #1 at 3:04:28 PM +9807 verbose etag W/"5674d746-d12" +9808 verbose lastModified Sat, 19 Dec 2015 04:04:22 GMT +9809 http request GET https://registry.npmjs.org/is-utf8 +9810 http 304 https://registry.npmjs.org/is-utf8 +9811 verbose headers { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9811 verbose headers via: '1.1 varnish', +9811 verbose headers 'cache-control': 'max-age=300', +9811 verbose headers etag: 'W/"5674d746-d12"', +9811 verbose headers age: '207', +9811 verbose headers connection: 'keep-alive', +9811 verbose headers 'x-served-by': 'cache-sin18026-SIN', +9811 verbose headers 'x-cache': 'HIT', +9811 verbose headers 'x-cache-hits': '8', +9811 verbose headers 'x-timer': 'S1506936869.606609,VS0,VE0', +9811 verbose headers vary: 'Accept-Encoding, Accept' } +9812 silly get cb [ 304, +9812 silly get { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9812 silly get via: '1.1 varnish', +9812 silly get 'cache-control': 'max-age=300', +9812 silly get etag: 'W/"5674d746-d12"', +9812 silly get age: '207', +9812 silly get connection: 'keep-alive', +9812 silly get 'x-served-by': 'cache-sin18026-SIN', +9812 silly get 'x-cache': 'HIT', +9812 silly get 'x-cache-hits': '8', +9812 silly get 'x-timer': 'S1506936869.606609,VS0,VE0', +9812 silly get vary: 'Accept-Encoding, Accept' } ] +9813 verbose etag https://registry.npmjs.org/is-utf8 from cache +9814 verbose get saving is-utf8 to /home/wso2/.npm/registry.npmjs.org/is-utf8/.cache.json +9815 silly resolveWithNewModule is-utf8@0.2.1 checking installable status +9816 silly cache add args [ 'is-utf8@^0.2.0', null ] +9817 verbose cache add spec is-utf8@^0.2.0 +9818 silly cache add parsed spec Result { +9818 silly cache add raw: 'is-utf8@^0.2.0', +9818 silly cache add scope: null, +9818 silly cache add name: 'is-utf8', +9818 silly cache add rawSpec: '^0.2.0', +9818 silly cache add spec: '>=0.2.0 <0.3.0', +9818 silly cache add type: 'range' } +9819 silly addNamed is-utf8@>=0.2.0 <0.3.0 +9820 verbose addNamed ">=0.2.0 <0.3.0" is a valid semver range for is-utf8 +9821 silly addNameRange { name: 'is-utf8', range: '>=0.2.0 <0.3.0', hasData: false } +9822 silly mapToRegistry name is-utf8 +9823 silly mapToRegistry using default registry +9824 silly mapToRegistry registry https://registry.npmjs.org/ +9825 silly mapToRegistry uri https://registry.npmjs.org/is-utf8 +9826 verbose addNameRange registry:https://registry.npmjs.org/is-utf8 not in flight; fetching +9827 verbose get https://registry.npmjs.org/is-utf8 not expired, no request +9828 silly addNameRange number 2 { name: 'is-utf8', range: '>=0.2.0 <0.3.0', hasData: true } +9829 silly addNameRange versions [ 'is-utf8', [ '0.1.0', '0.2.0', '0.2.1' ] ] +9830 silly addNamed is-utf8@0.2.1 +9831 verbose addNamed "0.2.1" is a plain semver version for is-utf8 +9832 silly cache afterAdd is-utf8@0.2.1 +9833 verbose afterAdd /home/wso2/.npm/is-utf8/0.2.1/package/package.json not in flight; writing +9834 verbose afterAdd /home/wso2/.npm/is-utf8/0.2.1/package/package.json written +9835 silly fetchNamedPackageData hosted-git-info +9836 silly mapToRegistry name hosted-git-info +9837 silly mapToRegistry using default registry +9838 silly mapToRegistry registry https://registry.npmjs.org/ +9839 silly mapToRegistry uri https://registry.npmjs.org/hosted-git-info +9840 silly fetchNamedPackageData is-builtin-module +9841 silly mapToRegistry name is-builtin-module +9842 silly mapToRegistry using default registry +9843 silly mapToRegistry registry https://registry.npmjs.org/ +9844 silly mapToRegistry uri https://registry.npmjs.org/is-builtin-module +9845 silly fetchNamedPackageData validate-npm-package-license +9846 silly mapToRegistry name validate-npm-package-license +9847 silly mapToRegistry using default registry +9848 silly mapToRegistry registry https://registry.npmjs.org/ +9849 silly mapToRegistry uri https://registry.npmjs.org/validate-npm-package-license +9850 verbose request uri https://registry.npmjs.org/is-builtin-module +9851 verbose request no auth needed +9852 info attempt registry request try #1 at 3:04:28 PM +9853 verbose etag W/"59162d6f-b55" +9854 verbose lastModified Fri, 12 May 2017 21:47:27 GMT +9855 http request GET https://registry.npmjs.org/is-builtin-module +9856 verbose request uri https://registry.npmjs.org/hosted-git-info +9857 verbose request no auth needed +9858 info attempt registry request try #1 at 3:04:28 PM +9859 verbose etag W/"5967f90e-93ca" +9860 verbose lastModified Thu, 13 Jul 2017 22:49:50 GMT +9861 http request GET https://registry.npmjs.org/hosted-git-info +9862 verbose request uri https://registry.npmjs.org/validate-npm-package-license +9863 verbose request no auth needed +9864 info attempt registry request try #1 at 3:04:28 PM +9865 verbose etag W/"59404762-33e2" +9866 verbose lastModified Tue, 13 Jun 2017 20:13:22 GMT +9867 http request GET https://registry.npmjs.org/validate-npm-package-license +9868 http 304 https://registry.npmjs.org/is-builtin-module +9869 verbose headers { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9869 verbose headers via: '1.1 varnish', +9869 verbose headers 'cache-control': 'max-age=300', +9869 verbose headers etag: 'W/"59162d6f-b55"', +9869 verbose headers age: '211', +9869 verbose headers connection: 'keep-alive', +9869 verbose headers 'x-served-by': 'cache-sin18030-SIN', +9869 verbose headers 'x-cache': 'HIT', +9869 verbose headers 'x-cache-hits': '10', +9869 verbose headers 'x-timer': 'S1506936869.814011,VS0,VE0', +9869 verbose headers vary: 'Accept-Encoding, Accept' } +9870 silly get cb [ 304, +9870 silly get { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9870 silly get via: '1.1 varnish', +9870 silly get 'cache-control': 'max-age=300', +9870 silly get etag: 'W/"59162d6f-b55"', +9870 silly get age: '211', +9870 silly get connection: 'keep-alive', +9870 silly get 'x-served-by': 'cache-sin18030-SIN', +9870 silly get 'x-cache': 'HIT', +9870 silly get 'x-cache-hits': '10', +9870 silly get 'x-timer': 'S1506936869.814011,VS0,VE0', +9870 silly get vary: 'Accept-Encoding, Accept' } ] +9871 verbose etag https://registry.npmjs.org/is-builtin-module from cache +9872 verbose get saving is-builtin-module to /home/wso2/.npm/registry.npmjs.org/is-builtin-module/.cache.json +9873 silly resolveWithNewModule is-builtin-module@1.0.0 checking installable status +9874 silly cache add args [ 'is-builtin-module@^1.0.0', null ] +9875 verbose cache add spec is-builtin-module@^1.0.0 +9876 silly cache add parsed spec Result { +9876 silly cache add raw: 'is-builtin-module@^1.0.0', +9876 silly cache add scope: null, +9876 silly cache add name: 'is-builtin-module', +9876 silly cache add rawSpec: '^1.0.0', +9876 silly cache add spec: '>=1.0.0 <2.0.0', +9876 silly cache add type: 'range' } +9877 silly addNamed is-builtin-module@>=1.0.0 <2.0.0 +9878 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for is-builtin-module +9879 silly addNameRange { name: 'is-builtin-module', +9879 silly addNameRange range: '>=1.0.0 <2.0.0', +9879 silly addNameRange hasData: false } +9880 silly mapToRegistry name is-builtin-module +9881 silly mapToRegistry using default registry +9882 silly mapToRegistry registry https://registry.npmjs.org/ +9883 silly mapToRegistry uri https://registry.npmjs.org/is-builtin-module +9884 verbose addNameRange registry:https://registry.npmjs.org/is-builtin-module not in flight; fetching +9885 verbose get https://registry.npmjs.org/is-builtin-module not expired, no request +9886 silly addNameRange number 2 { name: 'is-builtin-module', +9886 silly addNameRange range: '>=1.0.0 <2.0.0', +9886 silly addNameRange hasData: true } +9887 silly addNameRange versions [ 'is-builtin-module', [ '1.0.0' ] ] +9888 silly addNamed is-builtin-module@1.0.0 +9889 verbose addNamed "1.0.0" is a plain semver version for is-builtin-module +9890 silly cache afterAdd is-builtin-module@1.0.0 +9891 verbose afterAdd /home/wso2/.npm/is-builtin-module/1.0.0/package/package.json not in flight; writing +9892 verbose afterAdd /home/wso2/.npm/is-builtin-module/1.0.0/package/package.json written +9893 http 304 https://registry.npmjs.org/validate-npm-package-license +9894 verbose headers { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9894 verbose headers via: '1.1 varnish', +9894 verbose headers 'cache-control': 'max-age=300', +9894 verbose headers etag: 'W/"59404762-33e2"', +9894 verbose headers age: '41', +9894 verbose headers connection: 'keep-alive', +9894 verbose headers 'x-served-by': 'cache-sin18024-SIN', +9894 verbose headers 'x-cache': 'HIT', +9894 verbose headers 'x-cache-hits': '1', +9894 verbose headers 'x-timer': 'S1506936869.824032,VS0,VE0', +9894 verbose headers vary: 'Accept-Encoding, Accept' } +9895 silly get cb [ 304, +9895 silly get { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9895 silly get via: '1.1 varnish', +9895 silly get 'cache-control': 'max-age=300', +9895 silly get etag: 'W/"59404762-33e2"', +9895 silly get age: '41', +9895 silly get connection: 'keep-alive', +9895 silly get 'x-served-by': 'cache-sin18024-SIN', +9895 silly get 'x-cache': 'HIT', +9895 silly get 'x-cache-hits': '1', +9895 silly get 'x-timer': 'S1506936869.824032,VS0,VE0', +9895 silly get vary: 'Accept-Encoding, Accept' } ] +9896 verbose etag https://registry.npmjs.org/validate-npm-package-license from cache +9897 verbose get saving validate-npm-package-license to /home/wso2/.npm/registry.npmjs.org/validate-npm-package-license/.cache.json +9898 silly resolveWithNewModule validate-npm-package-license@3.0.1 checking installable status +9899 silly cache add args [ 'validate-npm-package-license@^3.0.1', null ] +9900 verbose cache add spec validate-npm-package-license@^3.0.1 +9901 silly cache add parsed spec Result { +9901 silly cache add raw: 'validate-npm-package-license@^3.0.1', +9901 silly cache add scope: null, +9901 silly cache add name: 'validate-npm-package-license', +9901 silly cache add rawSpec: '^3.0.1', +9901 silly cache add spec: '>=3.0.1 <4.0.0', +9901 silly cache add type: 'range' } +9902 silly addNamed validate-npm-package-license@>=3.0.1 <4.0.0 +9903 verbose addNamed ">=3.0.1 <4.0.0" is a valid semver range for validate-npm-package-license +9904 silly addNameRange { name: 'validate-npm-package-license', +9904 silly addNameRange range: '>=3.0.1 <4.0.0', +9904 silly addNameRange hasData: false } +9905 silly mapToRegistry name validate-npm-package-license +9906 silly mapToRegistry using default registry +9907 silly mapToRegistry registry https://registry.npmjs.org/ +9908 silly mapToRegistry uri https://registry.npmjs.org/validate-npm-package-license +9909 verbose addNameRange registry:https://registry.npmjs.org/validate-npm-package-license not in flight; fetching +9910 verbose get https://registry.npmjs.org/validate-npm-package-license not expired, no request +9911 silly addNameRange number 2 { name: 'validate-npm-package-license', +9911 silly addNameRange range: '>=3.0.1 <4.0.0', +9911 silly addNameRange hasData: true } +9912 silly addNameRange versions [ 'validate-npm-package-license', +9912 silly addNameRange [ '1.0.0-prerelease-1', +9912 silly addNameRange '1.0.0-prerelease-2', +9912 silly addNameRange '1.0.0-prerelease-3', +9912 silly addNameRange '1.0.0', +9912 silly addNameRange '2.0.0', +9912 silly addNameRange '3.0.0', +9912 silly addNameRange '3.0.1' ] ] +9913 silly addNamed validate-npm-package-license@3.0.1 +9914 verbose addNamed "3.0.1" is a plain semver version for validate-npm-package-license +9915 http 304 https://registry.npmjs.org/hosted-git-info +9916 verbose headers { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9916 verbose headers via: '1.1 varnish', +9916 verbose headers 'cache-control': 'max-age=300', +9916 verbose headers etag: 'W/"5967f90e-93ca"', +9916 verbose headers age: '41', +9916 verbose headers connection: 'keep-alive', +9916 verbose headers 'x-served-by': 'cache-sin18026-SIN', +9916 verbose headers 'x-cache': 'HIT', +9916 verbose headers 'x-cache-hits': '1', +9916 verbose headers 'x-timer': 'S1506936869.828991,VS0,VE1', +9916 verbose headers vary: 'Accept-Encoding, Accept' } +9917 silly get cb [ 304, +9917 silly get { date: 'Mon, 02 Oct 2017 09:34:28 GMT', +9917 silly get via: '1.1 varnish', +9917 silly get 'cache-control': 'max-age=300', +9917 silly get etag: 'W/"5967f90e-93ca"', +9917 silly get age: '41', +9917 silly get connection: 'keep-alive', +9917 silly get 'x-served-by': 'cache-sin18026-SIN', +9917 silly get 'x-cache': 'HIT', +9917 silly get 'x-cache-hits': '1', +9917 silly get 'x-timer': 'S1506936869.828991,VS0,VE1', +9917 silly get vary: 'Accept-Encoding, Accept' } ] +9918 verbose etag https://registry.npmjs.org/hosted-git-info from cache +9919 verbose get saving hosted-git-info to /home/wso2/.npm/registry.npmjs.org/hosted-git-info/.cache.json +9920 silly cache afterAdd validate-npm-package-license@3.0.1 +9921 verbose afterAdd /home/wso2/.npm/validate-npm-package-license/3.0.1/package/package.json not in flight; writing +9922 silly resolveWithNewModule hosted-git-info@2.5.0 checking installable status +9923 silly cache add args [ 'hosted-git-info@^2.1.4', null ] +9924 verbose cache add spec hosted-git-info@^2.1.4 +9925 silly cache add parsed spec Result { +9925 silly cache add raw: 'hosted-git-info@^2.1.4', +9925 silly cache add scope: null, +9925 silly cache add name: 'hosted-git-info', +9925 silly cache add rawSpec: '^2.1.4', +9925 silly cache add spec: '>=2.1.4 <3.0.0', +9925 silly cache add type: 'range' } +9926 silly addNamed hosted-git-info@>=2.1.4 <3.0.0 +9927 verbose addNamed ">=2.1.4 <3.0.0" is a valid semver range for hosted-git-info +9928 silly addNameRange { name: 'hosted-git-info', +9928 silly addNameRange range: '>=2.1.4 <3.0.0', +9928 silly addNameRange hasData: false } +9929 silly mapToRegistry name hosted-git-info +9930 silly mapToRegistry using default registry +9931 silly mapToRegistry registry https://registry.npmjs.org/ +9932 silly mapToRegistry uri https://registry.npmjs.org/hosted-git-info +9933 verbose addNameRange registry:https://registry.npmjs.org/hosted-git-info not in flight; fetching +9934 verbose afterAdd /home/wso2/.npm/validate-npm-package-license/3.0.1/package/package.json written +9935 verbose get https://registry.npmjs.org/hosted-git-info not expired, no request +9936 silly addNameRange number 2 { name: 'hosted-git-info', +9936 silly addNameRange range: '>=2.1.4 <3.0.0', +9936 silly addNameRange hasData: true } +9937 silly addNameRange versions [ 'hosted-git-info', +9937 silly addNameRange [ '1.0.0', +9937 silly addNameRange '1.1.0', +9937 silly addNameRange '1.2.0', +9937 silly addNameRange '1.3.0', +9937 silly addNameRange '1.4.0', +9937 silly addNameRange '1.5.0', +9937 silly addNameRange '1.5.1', +9937 silly addNameRange '1.5.2', +9937 silly addNameRange '1.5.3', +9937 silly addNameRange '1.6.0', +9937 silly addNameRange '2.0.0', +9937 silly addNameRange '2.0.1', +9937 silly addNameRange '2.0.2', +9937 silly addNameRange '2.0.3', +9937 silly addNameRange '2.1.0', +9937 silly addNameRange '2.1.1', +9937 silly addNameRange '2.1.2', +9937 silly addNameRange '2.1.3', +9937 silly addNameRange '2.1.4', +9937 silly addNameRange '2.1.5', +9937 silly addNameRange '2.2.0', +9937 silly addNameRange '2.3.0', +9937 silly addNameRange '2.3.1', +9937 silly addNameRange '2.4.0', +9937 silly addNameRange '2.4.1', +9937 silly addNameRange '2.4.2', +9937 silly addNameRange '2.5.0' ] ] +9938 silly addNamed hosted-git-info@2.5.0 +9939 verbose addNamed "2.5.0" is a plain semver version for hosted-git-info +9940 silly cache afterAdd hosted-git-info@2.5.0 +9941 verbose afterAdd /home/wso2/.npm/hosted-git-info/2.5.0/package/package.json not in flight; writing +9942 verbose afterAdd /home/wso2/.npm/hosted-git-info/2.5.0/package/package.json written +9943 silly fetchNamedPackageData builtin-modules +9944 silly mapToRegistry name builtin-modules +9945 silly mapToRegistry using default registry +9946 silly mapToRegistry registry https://registry.npmjs.org/ +9947 silly mapToRegistry uri https://registry.npmjs.org/builtin-modules +9948 verbose request uri https://registry.npmjs.org/builtin-modules +9949 verbose request no auth needed +9950 info attempt registry request try #1 at 3:04:28 PM +9951 verbose etag W/"58450a96-1add" +9952 verbose lastModified Mon, 05 Dec 2016 06:35:02 GMT +9953 http request GET https://registry.npmjs.org/builtin-modules +9954 http 304 https://registry.npmjs.org/builtin-modules +9955 verbose headers { date: 'Mon, 02 Oct 2017 09:34:29 GMT', +9955 verbose headers via: '1.1 varnish', +9955 verbose headers 'cache-control': 'max-age=300', +9955 verbose headers etag: 'W/"58450a96-1add"', +9955 verbose headers age: '208', +9955 verbose headers connection: 'keep-alive', +9955 verbose headers 'x-served-by': 'cache-sin18027-SIN', +9955 verbose headers 'x-cache': 'HIT', +9955 verbose headers 'x-cache-hits': '5', +9955 verbose headers 'x-timer': 'S1506936869.049009,VS0,VE0', +9955 verbose headers vary: 'Accept-Encoding, Accept' } +9956 silly get cb [ 304, +9956 silly get { date: 'Mon, 02 Oct 2017 09:34:29 GMT', +9956 silly get via: '1.1 varnish', +9956 silly get 'cache-control': 'max-age=300', +9956 silly get etag: 'W/"58450a96-1add"', +9956 silly get age: '208', +9956 silly get connection: 'keep-alive', +9956 silly get 'x-served-by': 'cache-sin18027-SIN', +9956 silly get 'x-cache': 'HIT', +9956 silly get 'x-cache-hits': '5', +9956 silly get 'x-timer': 'S1506936869.049009,VS0,VE0', +9956 silly get vary: 'Accept-Encoding, Accept' } ] +9957 verbose etag https://registry.npmjs.org/builtin-modules from cache +9958 verbose get saving builtin-modules to /home/wso2/.npm/registry.npmjs.org/builtin-modules/.cache.json +9959 silly resolveWithNewModule builtin-modules@1.1.1 checking installable status +9960 silly cache add args [ 'builtin-modules@^1.0.0', null ] +9961 verbose cache add spec builtin-modules@^1.0.0 +9962 silly cache add parsed spec Result { +9962 silly cache add raw: 'builtin-modules@^1.0.0', +9962 silly cache add scope: null, +9962 silly cache add name: 'builtin-modules', +9962 silly cache add rawSpec: '^1.0.0', +9962 silly cache add spec: '>=1.0.0 <2.0.0', +9962 silly cache add type: 'range' } +9963 silly addNamed builtin-modules@>=1.0.0 <2.0.0 +9964 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for builtin-modules +9965 silly addNameRange { name: 'builtin-modules', +9965 silly addNameRange range: '>=1.0.0 <2.0.0', +9965 silly addNameRange hasData: false } +9966 silly mapToRegistry name builtin-modules +9967 silly mapToRegistry using default registry +9968 silly mapToRegistry registry https://registry.npmjs.org/ +9969 silly mapToRegistry uri https://registry.npmjs.org/builtin-modules +9970 verbose addNameRange registry:https://registry.npmjs.org/builtin-modules not in flight; fetching +9971 verbose get https://registry.npmjs.org/builtin-modules not expired, no request +9972 silly addNameRange number 2 { name: 'builtin-modules', +9972 silly addNameRange range: '>=1.0.0 <2.0.0', +9972 silly addNameRange hasData: true } +9973 silly addNameRange versions [ 'builtin-modules', [ '1.0.0', '1.0.1', '1.1.0', '1.1.1' ] ] +9974 silly addNamed builtin-modules@1.1.1 +9975 verbose addNamed "1.1.1" is a plain semver version for builtin-modules +9976 silly cache afterAdd builtin-modules@1.1.1 +9977 verbose afterAdd /home/wso2/.npm/builtin-modules/1.1.1/package/package.json not in flight; writing +9978 verbose afterAdd /home/wso2/.npm/builtin-modules/1.1.1/package/package.json written +9979 silly fetchNamedPackageData spdx-correct +9980 silly mapToRegistry name spdx-correct +9981 silly mapToRegistry using default registry +9982 silly mapToRegistry registry https://registry.npmjs.org/ +9983 silly mapToRegistry uri https://registry.npmjs.org/spdx-correct +9984 silly fetchNamedPackageData spdx-expression-parse +9985 silly mapToRegistry name spdx-expression-parse +9986 silly mapToRegistry using default registry +9987 silly mapToRegistry registry https://registry.npmjs.org/ +9988 silly mapToRegistry uri https://registry.npmjs.org/spdx-expression-parse +9989 verbose request uri https://registry.npmjs.org/spdx-correct +9990 verbose request no auth needed +9991 info attempt registry request try #1 at 3:04:29 PM +9992 verbose etag W/"597f7388-4a68" +9993 verbose lastModified Mon, 31 Jul 2017 18:14:32 GMT +9994 http request GET https://registry.npmjs.org/spdx-correct +9995 verbose request uri https://registry.npmjs.org/spdx-expression-parse +9996 verbose request no auth needed +9997 info attempt registry request try #1 at 3:04:29 PM +9998 verbose etag W/"595bf928-4b13" +9999 verbose lastModified Tue, 04 Jul 2017 20:23:04 GMT +10000 http request GET https://registry.npmjs.org/spdx-expression-parse +10001 http 304 https://registry.npmjs.org/spdx-expression-parse +10002 verbose headers { date: 'Mon, 02 Oct 2017 09:34:29 GMT', +10002 verbose headers via: '1.1 varnish', +10002 verbose headers 'cache-control': 'max-age=300', +10002 verbose headers etag: 'W/"595bf928-4b13"', +10002 verbose headers age: '235', +10002 verbose headers connection: 'keep-alive', +10002 verbose headers 'x-served-by': 'cache-sin18025-SIN', +10002 verbose headers 'x-cache': 'HIT', +10002 verbose headers 'x-cache-hits': '4', +10002 verbose headers 'x-timer': 'S1506936869.256178,VS0,VE0', +10002 verbose headers vary: 'Accept-Encoding, Accept' } +10003 silly get cb [ 304, +10003 silly get { date: 'Mon, 02 Oct 2017 09:34:29 GMT', +10003 silly get via: '1.1 varnish', +10003 silly get 'cache-control': 'max-age=300', +10003 silly get etag: 'W/"595bf928-4b13"', +10003 silly get age: '235', +10003 silly get connection: 'keep-alive', +10003 silly get 'x-served-by': 'cache-sin18025-SIN', +10003 silly get 'x-cache': 'HIT', +10003 silly get 'x-cache-hits': '4', +10003 silly get 'x-timer': 'S1506936869.256178,VS0,VE0', +10003 silly get vary: 'Accept-Encoding, Accept' } ] +10004 verbose etag https://registry.npmjs.org/spdx-expression-parse from cache +10005 verbose get saving spdx-expression-parse to /home/wso2/.npm/registry.npmjs.org/spdx-expression-parse/.cache.json +10006 http 304 https://registry.npmjs.org/spdx-correct +10007 verbose headers { date: 'Mon, 02 Oct 2017 09:34:29 GMT', +10007 verbose headers via: '1.1 varnish', +10007 verbose headers 'cache-control': 'max-age=300', +10007 verbose headers etag: 'W/"597f7388-4a68"', +10007 verbose headers age: '234', +10007 verbose headers connection: 'keep-alive', +10007 verbose headers 'x-served-by': 'cache-sin18031-SIN', +10007 verbose headers 'x-cache': 'HIT', +10007 verbose headers 'x-cache-hits': '571', +10007 verbose headers 'x-timer': 'S1506936869.275113,VS0,VE0', +10007 verbose headers vary: 'Accept-Encoding, Accept' } +10008 silly get cb [ 304, +10008 silly get { date: 'Mon, 02 Oct 2017 09:34:29 GMT', +10008 silly get via: '1.1 varnish', +10008 silly get 'cache-control': 'max-age=300', +10008 silly get etag: 'W/"597f7388-4a68"', +10008 silly get age: '234', +10008 silly get connection: 'keep-alive', +10008 silly get 'x-served-by': 'cache-sin18031-SIN', +10008 silly get 'x-cache': 'HIT', +10008 silly get 'x-cache-hits': '571', +10008 silly get 'x-timer': 'S1506936869.275113,VS0,VE0', +10008 silly get vary: 'Accept-Encoding, Accept' } ] +10009 verbose etag https://registry.npmjs.org/spdx-correct from cache +10010 verbose get saving spdx-correct to /home/wso2/.npm/registry.npmjs.org/spdx-correct/.cache.json +10011 silly resolveWithNewModule spdx-expression-parse@1.0.4 checking installable status +10012 silly cache add args [ 'spdx-expression-parse@~1.0.0', null ] +10013 verbose cache add spec spdx-expression-parse@~1.0.0 +10014 silly cache add parsed spec Result { +10014 silly cache add raw: 'spdx-expression-parse@~1.0.0', +10014 silly cache add scope: null, +10014 silly cache add name: 'spdx-expression-parse', +10014 silly cache add rawSpec: '~1.0.0', +10014 silly cache add spec: '>=1.0.0 <1.1.0', +10014 silly cache add type: 'range' } +10015 silly addNamed spdx-expression-parse@>=1.0.0 <1.1.0 +10016 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for spdx-expression-parse +10017 silly addNameRange { name: 'spdx-expression-parse', +10017 silly addNameRange range: '>=1.0.0 <1.1.0', +10017 silly addNameRange hasData: false } +10018 silly mapToRegistry name spdx-expression-parse +10019 silly mapToRegistry using default registry +10020 silly mapToRegistry registry https://registry.npmjs.org/ +10021 silly mapToRegistry uri https://registry.npmjs.org/spdx-expression-parse +10022 verbose addNameRange registry:https://registry.npmjs.org/spdx-expression-parse not in flight; fetching +10023 silly resolveWithNewModule spdx-correct@1.0.2 checking installable status +10024 silly cache add args [ 'spdx-correct@~1.0.0', null ] +10025 verbose cache add spec spdx-correct@~1.0.0 +10026 silly cache add parsed spec Result { +10026 silly cache add raw: 'spdx-correct@~1.0.0', +10026 silly cache add scope: null, +10026 silly cache add name: 'spdx-correct', +10026 silly cache add rawSpec: '~1.0.0', +10026 silly cache add spec: '>=1.0.0 <1.1.0', +10026 silly cache add type: 'range' } +10027 silly addNamed spdx-correct@>=1.0.0 <1.1.0 +10028 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for spdx-correct +10029 silly addNameRange { name: 'spdx-correct', range: '>=1.0.0 <1.1.0', hasData: false } +10030 silly mapToRegistry name spdx-correct +10031 silly mapToRegistry using default registry +10032 silly mapToRegistry registry https://registry.npmjs.org/ +10033 silly mapToRegistry uri https://registry.npmjs.org/spdx-correct +10034 verbose addNameRange registry:https://registry.npmjs.org/spdx-correct not in flight; fetching +10035 verbose get https://registry.npmjs.org/spdx-expression-parse not expired, no request +10036 silly addNameRange number 2 { name: 'spdx-expression-parse', +10036 silly addNameRange range: '>=1.0.0 <1.1.0', +10036 silly addNameRange hasData: true } +10037 silly addNameRange versions [ 'spdx-expression-parse', +10037 silly addNameRange [ '1.0.0', +10037 silly addNameRange '1.0.1', +10037 silly addNameRange '1.0.2', +10037 silly addNameRange '1.0.3', +10037 silly addNameRange '1.0.4', +10037 silly addNameRange '2.0.0', +10037 silly addNameRange '2.0.1', +10037 silly addNameRange '2.0.2' ] ] +10038 silly addNamed spdx-expression-parse@1.0.4 +10039 verbose addNamed "1.0.4" is a plain semver version for spdx-expression-parse +10040 verbose get https://registry.npmjs.org/spdx-correct not expired, no request +10041 silly addNameRange number 2 { name: 'spdx-correct', range: '>=1.0.0 <1.1.0', hasData: true } +10042 silly addNameRange versions [ 'spdx-correct', +10042 silly addNameRange [ '1.0.0-prerelease-1', +10042 silly addNameRange '1.0.0-prerelease-2', +10042 silly addNameRange '1.0.0-prerelease-3', +10042 silly addNameRange '1.0.0-prerelease-4', +10042 silly addNameRange '1.0.0', +10042 silly addNameRange '1.0.1', +10042 silly addNameRange '1.0.2', +10042 silly addNameRange '2.0.0', +10042 silly addNameRange '2.0.1', +10042 silly addNameRange '2.0.2', +10042 silly addNameRange '2.0.3', +10042 silly addNameRange '2.0.4' ] ] +10043 silly addNamed spdx-correct@1.0.2 +10044 verbose addNamed "1.0.2" is a plain semver version for spdx-correct +10045 silly cache afterAdd spdx-expression-parse@1.0.4 +10046 verbose afterAdd /home/wso2/.npm/spdx-expression-parse/1.0.4/package/package.json not in flight; writing +10047 silly cache afterAdd spdx-correct@1.0.2 +10048 verbose afterAdd /home/wso2/.npm/spdx-correct/1.0.2/package/package.json not in flight; writing +10049 verbose afterAdd /home/wso2/.npm/spdx-correct/1.0.2/package/package.json written +10050 verbose afterAdd /home/wso2/.npm/spdx-expression-parse/1.0.4/package/package.json written +10051 silly fetchNamedPackageData spdx-license-ids +10052 silly mapToRegistry name spdx-license-ids +10053 silly mapToRegistry using default registry +10054 silly mapToRegistry registry https://registry.npmjs.org/ +10055 silly mapToRegistry uri https://registry.npmjs.org/spdx-license-ids +10056 verbose request uri https://registry.npmjs.org/spdx-license-ids +10057 verbose request no auth needed +10058 info attempt registry request try #1 at 3:04:29 PM +10059 verbose etag W/"58983939-4f2d" +10060 verbose lastModified Mon, 06 Feb 2017 08:52:09 GMT +10061 http request GET https://registry.npmjs.org/spdx-license-ids +10062 http 304 https://registry.npmjs.org/spdx-license-ids +10063 verbose headers { date: 'Mon, 02 Oct 2017 09:34:29 GMT', +10063 verbose headers via: '1.1 varnish', +10063 verbose headers 'cache-control': 'max-age=300', +10063 verbose headers etag: 'W/"58983939-4f2d"', +10063 verbose headers age: '208', +10063 verbose headers connection: 'keep-alive', +10063 verbose headers 'x-served-by': 'cache-sin18032-SIN', +10063 verbose headers 'x-cache': 'HIT', +10063 verbose headers 'x-cache-hits': '5', +10063 verbose headers 'x-timer': 'S1506936869.491354,VS0,VE0', +10063 verbose headers vary: 'Accept-Encoding, Accept' } +10064 silly get cb [ 304, +10064 silly get { date: 'Mon, 02 Oct 2017 09:34:29 GMT', +10064 silly get via: '1.1 varnish', +10064 silly get 'cache-control': 'max-age=300', +10064 silly get etag: 'W/"58983939-4f2d"', +10064 silly get age: '208', +10064 silly get connection: 'keep-alive', +10064 silly get 'x-served-by': 'cache-sin18032-SIN', +10064 silly get 'x-cache': 'HIT', +10064 silly get 'x-cache-hits': '5', +10064 silly get 'x-timer': 'S1506936869.491354,VS0,VE0', +10064 silly get vary: 'Accept-Encoding, Accept' } ] +10065 verbose etag https://registry.npmjs.org/spdx-license-ids from cache +10066 verbose get saving spdx-license-ids to /home/wso2/.npm/registry.npmjs.org/spdx-license-ids/.cache.json +10067 silly resolveWithNewModule spdx-license-ids@1.2.2 checking installable status +10068 silly cache add args [ 'spdx-license-ids@^1.0.2', null ] +10069 verbose cache add spec spdx-license-ids@^1.0.2 +10070 silly cache add parsed spec Result { +10070 silly cache add raw: 'spdx-license-ids@^1.0.2', +10070 silly cache add scope: null, +10070 silly cache add name: 'spdx-license-ids', +10070 silly cache add rawSpec: '^1.0.2', +10070 silly cache add spec: '>=1.0.2 <2.0.0', +10070 silly cache add type: 'range' } +10071 silly addNamed spdx-license-ids@>=1.0.2 <2.0.0 +10072 verbose addNamed ">=1.0.2 <2.0.0" is a valid semver range for spdx-license-ids +10073 silly addNameRange { name: 'spdx-license-ids', +10073 silly addNameRange range: '>=1.0.2 <2.0.0', +10073 silly addNameRange hasData: false } +10074 silly mapToRegistry name spdx-license-ids +10075 silly mapToRegistry using default registry +10076 silly mapToRegistry registry https://registry.npmjs.org/ +10077 silly mapToRegistry uri https://registry.npmjs.org/spdx-license-ids +10078 verbose addNameRange registry:https://registry.npmjs.org/spdx-license-ids not in flight; fetching +10079 verbose get https://registry.npmjs.org/spdx-license-ids not expired, no request +10080 silly addNameRange number 2 { name: 'spdx-license-ids', +10080 silly addNameRange range: '>=1.0.2 <2.0.0', +10080 silly addNameRange hasData: true } +10081 silly addNameRange versions [ 'spdx-license-ids', +10081 silly addNameRange [ '0.0.0', +10081 silly addNameRange '1.0.0', +10081 silly addNameRange '1.0.1', +10081 silly addNameRange '1.0.2', +10081 silly addNameRange '1.1.0', +10081 silly addNameRange '1.2.0', +10081 silly addNameRange '1.2.1', +10081 silly addNameRange '1.2.2', +10081 silly addNameRange '2.0.0', +10081 silly addNameRange '2.0.1' ] ] +10082 silly addNamed spdx-license-ids@1.2.2 +10083 verbose addNamed "1.2.2" is a plain semver version for spdx-license-ids +10084 silly cache afterAdd spdx-license-ids@1.2.2 +10085 verbose afterAdd /home/wso2/.npm/spdx-license-ids/1.2.2/package/package.json not in flight; writing +10086 verbose afterAdd /home/wso2/.npm/spdx-license-ids/1.2.2/package/package.json written +10087 silly fetchNamedPackageData babel-plugin-jest-hoist +10088 silly mapToRegistry name babel-plugin-jest-hoist +10089 silly mapToRegistry using default registry +10090 silly mapToRegistry registry https://registry.npmjs.org/ +10091 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-jest-hoist +10092 verbose request uri https://registry.npmjs.org/babel-plugin-jest-hoist +10093 verbose request no auth needed +10094 info attempt registry request try #1 at 3:04:29 PM +10095 verbose etag W/"59ad6ad6-1947f" +10096 verbose lastModified Mon, 04 Sep 2017 15:01:42 GMT +10097 http request GET https://registry.npmjs.org/babel-plugin-jest-hoist +10098 http 200 https://registry.npmjs.org/babel-plugin-jest-hoist +10099 verbose headers { server: 'nginx/1.10.3', +10099 verbose headers 'content-type': 'application/json', +10099 verbose headers 'last-modified': 'Sun, 01 Oct 2017 16:46:41 GMT', +10099 verbose headers etag: 'W/"59d11bf1-1abc7"', +10099 verbose headers 'content-encoding': 'gzip', +10099 verbose headers 'cache-control': 'max-age=300', +10099 verbose headers 'content-length': '10336', +10099 verbose headers 'accept-ranges': 'bytes', +10099 verbose headers date: 'Mon, 02 Oct 2017 09:34:29 GMT', +10099 verbose headers via: '1.1 varnish', +10099 verbose headers age: '138', +10099 verbose headers connection: 'keep-alive', +10099 verbose headers 'x-served-by': 'cache-sin18025-SIN', +10099 verbose headers 'x-cache': 'HIT', +10099 verbose headers 'x-cache-hits': '1', +10099 verbose headers 'x-timer': 'S1506936870.732503,VS0,VE0', +10099 verbose headers vary: 'Accept-Encoding, Accept' } +10100 silly get cb [ 200, +10100 silly get { server: 'nginx/1.10.3', +10100 silly get 'content-type': 'application/json', +10100 silly get 'last-modified': 'Sun, 01 Oct 2017 16:46:41 GMT', +10100 silly get etag: 'W/"59d11bf1-1abc7"', +10100 silly get 'content-encoding': 'gzip', +10100 silly get 'cache-control': 'max-age=300', +10100 silly get 'content-length': '10336', +10100 silly get 'accept-ranges': 'bytes', +10100 silly get date: 'Mon, 02 Oct 2017 09:34:29 GMT', +10100 silly get via: '1.1 varnish', +10100 silly get age: '138', +10100 silly get connection: 'keep-alive', +10100 silly get 'x-served-by': 'cache-sin18025-SIN', +10100 silly get 'x-cache': 'HIT', +10100 silly get 'x-cache-hits': '1', +10100 silly get 'x-timer': 'S1506936870.732503,VS0,VE0', +10100 silly get vary: 'Accept-Encoding, Accept' } ] +10101 verbose get saving babel-plugin-jest-hoist to /home/wso2/.npm/registry.npmjs.org/babel-plugin-jest-hoist/.cache.json +10102 silly resolveWithNewModule babel-plugin-jest-hoist@20.0.3 checking installable status +10103 silly cache add args [ 'babel-plugin-jest-hoist@^20.0.3', null ] +10104 verbose cache add spec babel-plugin-jest-hoist@^20.0.3 +10105 silly cache add parsed spec Result { +10105 silly cache add raw: 'babel-plugin-jest-hoist@^20.0.3', +10105 silly cache add scope: null, +10105 silly cache add name: 'babel-plugin-jest-hoist', +10105 silly cache add rawSpec: '^20.0.3', +10105 silly cache add spec: '>=20.0.3 <21.0.0', +10105 silly cache add type: 'range' } +10106 silly addNamed babel-plugin-jest-hoist@>=20.0.3 <21.0.0 +10107 verbose addNamed ">=20.0.3 <21.0.0" is a valid semver range for babel-plugin-jest-hoist +10108 silly addNameRange { name: 'babel-plugin-jest-hoist', +10108 silly addNameRange range: '>=20.0.3 <21.0.0', +10108 silly addNameRange hasData: false } +10109 silly mapToRegistry name babel-plugin-jest-hoist +10110 silly mapToRegistry using default registry +10111 silly mapToRegistry registry https://registry.npmjs.org/ +10112 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-jest-hoist +10113 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-jest-hoist not in flight; fetching +10114 verbose get https://registry.npmjs.org/babel-plugin-jest-hoist not expired, no request +10115 silly addNameRange number 2 { name: 'babel-plugin-jest-hoist', +10115 silly addNameRange range: '>=20.0.3 <21.0.0', +10115 silly addNameRange hasData: true } +10116 silly addNameRange versions [ 'babel-plugin-jest-hoist', +10116 silly addNameRange [ '1.0.0', +10116 silly addNameRange '9.0.3', +10116 silly addNameRange '10.0.0', +10116 silly addNameRange '10.0.1', +10116 silly addNameRange '10.0.2', +10116 silly addNameRange '11.0.0', +10116 silly addNameRange '11.0.1', +10116 silly addNameRange '11.0.2', +10116 silly addNameRange '12.0.0', +10116 silly addNameRange '12.0.1', +10116 silly addNameRange '12.0.2', +10116 silly addNameRange '12.1.0', +10116 silly addNameRange '12.1.1-alpha.2935e14d', +10116 silly addNameRange '12.1.2-alpha.a482b15c', +10116 silly addNameRange '12.1.2-alpha.6230044c', +10116 silly addNameRange '12.1.3-alpha.6230044c', +10116 silly addNameRange '12.1.4-alpha.a737c6e5', +10116 silly addNameRange '12.1.5-alpha.b5322422', +10116 silly addNameRange '13.0.0', +10116 silly addNameRange '13.2.1', +10116 silly addNameRange '13.2.2', +10116 silly addNameRange '13.3.0-alpha.a44f195f', +10116 silly addNameRange '13.3.0-alpha.4eb0c908', +10116 silly addNameRange '13.2.3-alpha.ffc7404b', +10116 silly addNameRange '13.3.0-alpha.ffc7404b', +10116 silly addNameRange '13.3.0-alpha.8b48d59e', +10116 silly addNameRange '13.3.0-alpha.g8b48d59', +10116 silly addNameRange '13.4.0-alpha.d2632006', +10116 silly addNameRange '14.0.0', +10116 silly addNameRange '14.1.0', +10116 silly addNameRange '14.1.1', +10116 silly addNameRange '14.2.0-alpha.ca8bfb6e', +10116 silly addNameRange '14.2.1-alpha.e21d71a4', +10116 silly addNameRange '14.2.2-alpha.22bd3c33', +10116 silly addNameRange '14.3.0-alpha.d13c163e', +10116 silly addNameRange '14.3.1-alpha.410cb91a', +10116 silly addNameRange '14.3.2-alpha.83c25417', +10116 silly addNameRange '15.0.0', +10116 silly addNameRange '15.2.0-alpha.c681f819', +10116 silly addNameRange '16.0.0', +10116 silly addNameRange '16.1.0-alpha.691b0e22', +10116 silly addNameRange '17.0.2', +10116 silly addNameRange '18.0.0', +10116 silly addNameRange '18.5.0-alpha.7da3df39', +10116 silly addNameRange '19.0.0', +10116 silly addNameRange '19.1.0-alpha.eed82034', +10116 silly addNameRange '19.2.0-alpha.993e64af', +10116 silly addNameRange '19.3.0-alpha.85402254', +10116 silly addNameRange '20.0.0', +10116 silly addNameRange '20.0.1', +10116 silly addNameRange '20.0.2', +10116 silly addNameRange '20.0.3', +10116 silly addNameRange '20.1.0-alpha.1', +10116 silly addNameRange '20.1.0-alpha.2', +10116 silly addNameRange '20.1.0-alpha.3', +10116 silly addNameRange '20.1.0-beta.1', +10116 silly addNameRange '20.1.0-chi.1', +10116 silly addNameRange '20.1.0-delta.1', +10116 silly addNameRange '20.1.0-delta.2', +10116 silly addNameRange '20.1.0-delta.3', +10116 silly addNameRange '20.1.0-delta.4', +10116 silly addNameRange '20.1.0-delta.5', +10116 silly addNameRange '20.1.0-echo.1', +10116 silly addNameRange '21.0.0-alpha.1', +10116 silly addNameRange '21.0.0-alpha.2', +10116 silly addNameRange '21.0.0-beta.1', +10116 silly addNameRange '21.0.0', +10116 silly addNameRange '21.0.2', +10116 silly addNameRange '21.2.0', +10116 silly addNameRange '21.3.0-alpha.1e3ee68e', +10116 silly addNameRange '21.3.0-alpha.eff7a1cf' ] ] +10117 silly addNamed babel-plugin-jest-hoist@20.0.3 +10118 verbose addNamed "20.0.3" is a plain semver version for babel-plugin-jest-hoist +10119 silly cache afterAdd babel-plugin-jest-hoist@20.0.3 +10120 verbose afterAdd /home/wso2/.npm/babel-plugin-jest-hoist/20.0.3/package/package.json not in flight; writing +10121 verbose afterAdd /home/wso2/.npm/babel-plugin-jest-hoist/20.0.3/package/package.json written +10122 silly fetchNamedPackageData find-cache-dir +10123 silly mapToRegistry name find-cache-dir +10124 silly mapToRegistry using default registry +10125 silly mapToRegistry registry https://registry.npmjs.org/ +10126 silly mapToRegistry uri https://registry.npmjs.org/find-cache-dir +10127 silly fetchNamedPackageData loader-utils +10128 silly mapToRegistry name loader-utils +10129 silly mapToRegistry using default registry +10130 silly mapToRegistry registry https://registry.npmjs.org/ +10131 silly mapToRegistry uri https://registry.npmjs.org/loader-utils +10132 verbose request uri https://registry.npmjs.org/find-cache-dir +10133 verbose request no auth needed +10134 info attempt registry request try #1 at 3:04:29 PM +10135 verbose etag W/"5915c6a2-1edb" +10136 verbose lastModified Fri, 12 May 2017 14:28:50 GMT +10137 http request GET https://registry.npmjs.org/find-cache-dir +10138 verbose request uri https://registry.npmjs.org/loader-utils +10139 verbose request no auth needed +10140 info attempt registry request try #1 at 3:04:29 PM +10141 verbose etag W/"599c40a2-a328" +10142 verbose lastModified Tue, 22 Aug 2017 14:33:06 GMT +10143 http request GET https://registry.npmjs.org/loader-utils +10144 http 200 https://registry.npmjs.org/loader-utils +10145 verbose headers { server: 'nginx/1.10.3', +10145 verbose headers 'content-type': 'application/json', +10145 verbose headers 'last-modified': 'Thu, 21 Sep 2017 06:02:27 GMT', +10145 verbose headers etag: 'W/"59c355f3-a339"', +10145 verbose headers 'content-encoding': 'gzip', +10145 verbose headers 'cache-control': 'max-age=300', +10145 verbose headers 'content-length': '6850', +10145 verbose headers 'accept-ranges': 'bytes', +10145 verbose headers date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10145 verbose headers via: '1.1 varnish', +10145 verbose headers age: '251', +10145 verbose headers connection: 'keep-alive', +10145 verbose headers 'x-served-by': 'cache-sin18023-SIN', +10145 verbose headers 'x-cache': 'HIT', +10145 verbose headers 'x-cache-hits': '6', +10145 verbose headers 'x-timer': 'S1506936870.173931,VS0,VE0', +10145 verbose headers vary: 'Accept-Encoding, Accept' } +10146 silly get cb [ 200, +10146 silly get { server: 'nginx/1.10.3', +10146 silly get 'content-type': 'application/json', +10146 silly get 'last-modified': 'Thu, 21 Sep 2017 06:02:27 GMT', +10146 silly get etag: 'W/"59c355f3-a339"', +10146 silly get 'content-encoding': 'gzip', +10146 silly get 'cache-control': 'max-age=300', +10146 silly get 'content-length': '6850', +10146 silly get 'accept-ranges': 'bytes', +10146 silly get date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10146 silly get via: '1.1 varnish', +10146 silly get age: '251', +10146 silly get connection: 'keep-alive', +10146 silly get 'x-served-by': 'cache-sin18023-SIN', +10146 silly get 'x-cache': 'HIT', +10146 silly get 'x-cache-hits': '6', +10146 silly get 'x-timer': 'S1506936870.173931,VS0,VE0', +10146 silly get vary: 'Accept-Encoding, Accept' } ] +10147 verbose get saving loader-utils to /home/wso2/.npm/registry.npmjs.org/loader-utils/.cache.json +10148 silly resolveWithNewModule loader-utils@1.1.0 checking installable status +10149 silly cache add args [ 'loader-utils@^1.0.2', null ] +10150 verbose cache add spec loader-utils@^1.0.2 +10151 silly cache add parsed spec Result { +10151 silly cache add raw: 'loader-utils@^1.0.2', +10151 silly cache add scope: null, +10151 silly cache add name: 'loader-utils', +10151 silly cache add rawSpec: '^1.0.2', +10151 silly cache add spec: '>=1.0.2 <2.0.0', +10151 silly cache add type: 'range' } +10152 silly addNamed loader-utils@>=1.0.2 <2.0.0 +10153 verbose addNamed ">=1.0.2 <2.0.0" is a valid semver range for loader-utils +10154 silly addNameRange { name: 'loader-utils', range: '>=1.0.2 <2.0.0', hasData: false } +10155 silly mapToRegistry name loader-utils +10156 silly mapToRegistry using default registry +10157 silly mapToRegistry registry https://registry.npmjs.org/ +10158 silly mapToRegistry uri https://registry.npmjs.org/loader-utils +10159 verbose addNameRange registry:https://registry.npmjs.org/loader-utils not in flight; fetching +10160 verbose get https://registry.npmjs.org/loader-utils not expired, no request +10161 silly addNameRange number 2 { name: 'loader-utils', range: '>=1.0.2 <2.0.0', hasData: true } +10162 silly addNameRange versions [ 'loader-utils', +10162 silly addNameRange [ '0.1.0', +10162 silly addNameRange '0.1.1', +10162 silly addNameRange '0.1.2', +10162 silly addNameRange '0.2.0', +10162 silly addNameRange '0.2.1', +10162 silly addNameRange '0.2.2', +10162 silly addNameRange '0.2.3', +10162 silly addNameRange '0.2.4', +10162 silly addNameRange '0.2.5', +10162 silly addNameRange '0.2.6', +10162 silly addNameRange '0.2.7', +10162 silly addNameRange '0.2.8', +10162 silly addNameRange '0.2.9', +10162 silly addNameRange '0.2.10', +10162 silly addNameRange '0.2.11', +10162 silly addNameRange '0.2.12', +10162 silly addNameRange '0.2.13', +10162 silly addNameRange '0.2.14', +10162 silly addNameRange '0.2.15', +10162 silly addNameRange '0.2.16', +10162 silly addNameRange '0.2.17', +10162 silly addNameRange '1.0.0', +10162 silly addNameRange '1.0.1', +10162 silly addNameRange '1.0.2', +10162 silly addNameRange '1.0.3', +10162 silly addNameRange '1.0.4', +10162 silly addNameRange '1.1.0' ] ] +10163 silly addNamed loader-utils@1.1.0 +10164 verbose addNamed "1.1.0" is a plain semver version for loader-utils +10165 silly cache afterAdd loader-utils@1.1.0 +10166 verbose afterAdd /home/wso2/.npm/loader-utils/1.1.0/package/package.json not in flight; writing +10167 http 304 https://registry.npmjs.org/find-cache-dir +10168 verbose headers { date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10168 verbose headers via: '1.1 varnish', +10168 verbose headers 'cache-control': 'max-age=300', +10168 verbose headers etag: 'W/"5915c6a2-1edb"', +10168 verbose headers age: '298', +10168 verbose headers connection: 'keep-alive', +10168 verbose headers 'x-served-by': 'cache-sin18033-SIN', +10168 verbose headers 'x-cache': 'HIT', +10168 verbose headers 'x-cache-hits': '4', +10168 verbose headers 'x-timer': 'S1506936870.195694,VS0,VE0', +10168 verbose headers vary: 'Accept-Encoding, Accept' } +10169 silly get cb [ 304, +10169 silly get { date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10169 silly get via: '1.1 varnish', +10169 silly get 'cache-control': 'max-age=300', +10169 silly get etag: 'W/"5915c6a2-1edb"', +10169 silly get age: '298', +10169 silly get connection: 'keep-alive', +10169 silly get 'x-served-by': 'cache-sin18033-SIN', +10169 silly get 'x-cache': 'HIT', +10169 silly get 'x-cache-hits': '4', +10169 silly get 'x-timer': 'S1506936870.195694,VS0,VE0', +10169 silly get vary: 'Accept-Encoding, Accept' } ] +10170 verbose etag https://registry.npmjs.org/find-cache-dir from cache +10171 verbose get saving find-cache-dir to /home/wso2/.npm/registry.npmjs.org/find-cache-dir/.cache.json +10172 verbose afterAdd /home/wso2/.npm/loader-utils/1.1.0/package/package.json written +10173 silly resolveWithNewModule find-cache-dir@0.1.1 checking installable status +10174 silly cache add args [ 'find-cache-dir@^0.1.1', null ] +10175 verbose cache add spec find-cache-dir@^0.1.1 +10176 silly cache add parsed spec Result { +10176 silly cache add raw: 'find-cache-dir@^0.1.1', +10176 silly cache add scope: null, +10176 silly cache add name: 'find-cache-dir', +10176 silly cache add rawSpec: '^0.1.1', +10176 silly cache add spec: '>=0.1.1 <0.2.0', +10176 silly cache add type: 'range' } +10177 silly addNamed find-cache-dir@>=0.1.1 <0.2.0 +10178 verbose addNamed ">=0.1.1 <0.2.0" is a valid semver range for find-cache-dir +10179 silly addNameRange { name: 'find-cache-dir', +10179 silly addNameRange range: '>=0.1.1 <0.2.0', +10179 silly addNameRange hasData: false } +10180 silly mapToRegistry name find-cache-dir +10181 silly mapToRegistry using default registry +10182 silly mapToRegistry registry https://registry.npmjs.org/ +10183 silly mapToRegistry uri https://registry.npmjs.org/find-cache-dir +10184 verbose addNameRange registry:https://registry.npmjs.org/find-cache-dir not in flight; fetching +10185 verbose get https://registry.npmjs.org/find-cache-dir not expired, no request +10186 silly addNameRange number 2 { name: 'find-cache-dir', +10186 silly addNameRange range: '>=0.1.1 <0.2.0', +10186 silly addNameRange hasData: true } +10187 silly addNameRange versions [ 'find-cache-dir', [ '0.1.0', '0.1.1', '1.0.0' ] ] +10188 silly addNamed find-cache-dir@0.1.1 +10189 verbose addNamed "0.1.1" is a plain semver version for find-cache-dir +10190 silly cache afterAdd find-cache-dir@0.1.1 +10191 verbose afterAdd /home/wso2/.npm/find-cache-dir/0.1.1/package/package.json not in flight; writing +10192 verbose afterAdd /home/wso2/.npm/find-cache-dir/0.1.1/package/package.json written +10193 silly fetchNamedPackageData commondir +10194 silly mapToRegistry name commondir +10195 silly mapToRegistry using default registry +10196 silly mapToRegistry registry https://registry.npmjs.org/ +10197 silly mapToRegistry uri https://registry.npmjs.org/commondir +10198 silly fetchNamedPackageData pkg-dir +10199 silly mapToRegistry name pkg-dir +10200 silly mapToRegistry using default registry +10201 silly mapToRegistry registry https://registry.npmjs.org/ +10202 silly mapToRegistry uri https://registry.npmjs.org/pkg-dir +10203 verbose request uri https://registry.npmjs.org/commondir +10204 verbose request no auth needed +10205 info attempt registry request try #1 at 3:04:30 PM +10206 verbose etag W/"59312537-1aff" +10207 verbose lastModified Fri, 02 Jun 2017 08:43:35 GMT +10208 http request GET https://registry.npmjs.org/commondir +10209 verbose request uri https://registry.npmjs.org/pkg-dir +10210 verbose request no auth needed +10211 info attempt registry request try #1 at 3:04:30 PM +10212 verbose etag W/"59859ce5-13b0" +10213 verbose lastModified Sat, 05 Aug 2017 10:24:37 GMT +10214 http request GET https://registry.npmjs.org/pkg-dir +10215 http 304 https://registry.npmjs.org/commondir +10216 verbose headers { date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10216 verbose headers via: '1.1 varnish', +10216 verbose headers 'cache-control': 'max-age=300', +10216 verbose headers etag: 'W/"59312537-1aff"', +10216 verbose headers age: '67', +10216 verbose headers connection: 'keep-alive', +10216 verbose headers 'x-served-by': 'cache-sin18027-SIN', +10216 verbose headers 'x-cache': 'HIT', +10216 verbose headers 'x-cache-hits': '1', +10216 verbose headers 'x-timer': 'S1506936870.383540,VS0,VE0', +10216 verbose headers vary: 'Accept-Encoding, Accept' } +10217 silly get cb [ 304, +10217 silly get { date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10217 silly get via: '1.1 varnish', +10217 silly get 'cache-control': 'max-age=300', +10217 silly get etag: 'W/"59312537-1aff"', +10217 silly get age: '67', +10217 silly get connection: 'keep-alive', +10217 silly get 'x-served-by': 'cache-sin18027-SIN', +10217 silly get 'x-cache': 'HIT', +10217 silly get 'x-cache-hits': '1', +10217 silly get 'x-timer': 'S1506936870.383540,VS0,VE0', +10217 silly get vary: 'Accept-Encoding, Accept' } ] +10218 verbose etag https://registry.npmjs.org/commondir from cache +10219 verbose get saving commondir to /home/wso2/.npm/registry.npmjs.org/commondir/.cache.json +10220 silly resolveWithNewModule commondir@1.0.1 checking installable status +10221 silly cache add args [ 'commondir@^1.0.1', null ] +10222 verbose cache add spec commondir@^1.0.1 +10223 silly cache add parsed spec Result { +10223 silly cache add raw: 'commondir@^1.0.1', +10223 silly cache add scope: null, +10223 silly cache add name: 'commondir', +10223 silly cache add rawSpec: '^1.0.1', +10223 silly cache add spec: '>=1.0.1 <2.0.0', +10223 silly cache add type: 'range' } +10224 silly addNamed commondir@>=1.0.1 <2.0.0 +10225 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for commondir +10226 silly addNameRange { name: 'commondir', range: '>=1.0.1 <2.0.0', hasData: false } +10227 silly mapToRegistry name commondir +10228 silly mapToRegistry using default registry +10229 silly mapToRegistry registry https://registry.npmjs.org/ +10230 silly mapToRegistry uri https://registry.npmjs.org/commondir +10231 verbose addNameRange registry:https://registry.npmjs.org/commondir not in flight; fetching +10232 verbose get https://registry.npmjs.org/commondir not expired, no request +10233 silly addNameRange number 2 { name: 'commondir', range: '>=1.0.1 <2.0.0', hasData: true } +10234 silly addNameRange versions [ 'commondir', [ '0.0.0', '0.0.1', '0.0.2', '1.0.0', '1.0.1' ] ] +10235 silly addNamed commondir@1.0.1 +10236 verbose addNamed "1.0.1" is a plain semver version for commondir +10237 silly cache afterAdd commondir@1.0.1 +10238 verbose afterAdd /home/wso2/.npm/commondir/1.0.1/package/package.json not in flight; writing +10239 verbose afterAdd /home/wso2/.npm/commondir/1.0.1/package/package.json written +10240 http 304 https://registry.npmjs.org/pkg-dir +10241 verbose headers { date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10241 verbose headers via: '1.1 varnish', +10241 verbose headers 'cache-control': 'max-age=300', +10241 verbose headers etag: 'W/"59859ce5-13b0"', +10241 verbose headers age: '297', +10241 verbose headers connection: 'keep-alive', +10241 verbose headers 'x-served-by': 'cache-sin18032-SIN', +10241 verbose headers 'x-cache': 'HIT', +10241 verbose headers 'x-cache-hits': '4', +10241 verbose headers 'x-timer': 'S1506936870.394669,VS0,VE0', +10241 verbose headers vary: 'Accept-Encoding, Accept' } +10242 silly get cb [ 304, +10242 silly get { date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10242 silly get via: '1.1 varnish', +10242 silly get 'cache-control': 'max-age=300', +10242 silly get etag: 'W/"59859ce5-13b0"', +10242 silly get age: '297', +10242 silly get connection: 'keep-alive', +10242 silly get 'x-served-by': 'cache-sin18032-SIN', +10242 silly get 'x-cache': 'HIT', +10242 silly get 'x-cache-hits': '4', +10242 silly get 'x-timer': 'S1506936870.394669,VS0,VE0', +10242 silly get vary: 'Accept-Encoding, Accept' } ] +10243 verbose etag https://registry.npmjs.org/pkg-dir from cache +10244 verbose get saving pkg-dir to /home/wso2/.npm/registry.npmjs.org/pkg-dir/.cache.json +10245 silly resolveWithNewModule pkg-dir@1.0.0 checking installable status +10246 silly cache add args [ 'pkg-dir@^1.0.0', null ] +10247 verbose cache add spec pkg-dir@^1.0.0 +10248 silly cache add parsed spec Result { +10248 silly cache add raw: 'pkg-dir@^1.0.0', +10248 silly cache add scope: null, +10248 silly cache add name: 'pkg-dir', +10248 silly cache add rawSpec: '^1.0.0', +10248 silly cache add spec: '>=1.0.0 <2.0.0', +10248 silly cache add type: 'range' } +10249 silly addNamed pkg-dir@>=1.0.0 <2.0.0 +10250 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for pkg-dir +10251 silly addNameRange { name: 'pkg-dir', range: '>=1.0.0 <2.0.0', hasData: false } +10252 silly mapToRegistry name pkg-dir +10253 silly mapToRegistry using default registry +10254 silly mapToRegistry registry https://registry.npmjs.org/ +10255 silly mapToRegistry uri https://registry.npmjs.org/pkg-dir +10256 verbose addNameRange registry:https://registry.npmjs.org/pkg-dir not in flight; fetching +10257 verbose get https://registry.npmjs.org/pkg-dir not expired, no request +10258 silly addNameRange number 2 { name: 'pkg-dir', range: '>=1.0.0 <2.0.0', hasData: true } +10259 silly addNameRange versions [ 'pkg-dir', [ '1.0.0', '2.0.0' ] ] +10260 silly addNamed pkg-dir@1.0.0 +10261 verbose addNamed "1.0.0" is a plain semver version for pkg-dir +10262 silly cache afterAdd pkg-dir@1.0.0 +10263 verbose afterAdd /home/wso2/.npm/pkg-dir/1.0.0/package/package.json not in flight; writing +10264 verbose afterAdd /home/wso2/.npm/pkg-dir/1.0.0/package/package.json written +10265 silly fetchNamedPackageData find-up +10266 silly mapToRegistry name find-up +10267 silly mapToRegistry using default registry +10268 silly mapToRegistry registry https://registry.npmjs.org/ +10269 silly mapToRegistry uri https://registry.npmjs.org/find-up +10270 silly resolveWithNewModule find-up@1.1.2 checking installable status +10271 silly cache add args [ 'find-up@^1.0.0', null ] +10272 verbose cache add spec find-up@^1.0.0 +10273 silly cache add parsed spec Result { +10273 silly cache add raw: 'find-up@^1.0.0', +10273 silly cache add scope: null, +10273 silly cache add name: 'find-up', +10273 silly cache add rawSpec: '^1.0.0', +10273 silly cache add spec: '>=1.0.0 <2.0.0', +10273 silly cache add type: 'range' } +10274 silly addNamed find-up@>=1.0.0 <2.0.0 +10275 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for find-up +10276 silly addNameRange { name: 'find-up', range: '>=1.0.0 <2.0.0', hasData: false } +10277 silly mapToRegistry name find-up +10278 silly mapToRegistry using default registry +10279 silly mapToRegistry registry https://registry.npmjs.org/ +10280 silly mapToRegistry uri https://registry.npmjs.org/find-up +10281 verbose addNameRange registry:https://registry.npmjs.org/find-up not in flight; fetching +10282 verbose get https://registry.npmjs.org/find-up not expired, no request +10283 silly addNameRange number 2 { name: 'find-up', range: '>=1.0.0 <2.0.0', hasData: true } +10284 silly addNameRange versions [ 'find-up', +10284 silly addNameRange [ '1.0.0', '1.1.0', '1.1.1', '1.1.2', '2.0.0', '2.1.0' ] ] +10285 silly addNamed find-up@1.1.2 +10286 verbose addNamed "1.1.2" is a plain semver version for find-up +10287 silly cache afterAdd find-up@1.1.2 +10288 verbose afterAdd /home/wso2/.npm/find-up/1.1.2/package/package.json not in flight; writing +10289 verbose afterAdd /home/wso2/.npm/find-up/1.1.2/package/package.json written +10290 silly fetchNamedPackageData path-exists +10291 silly mapToRegistry name path-exists +10292 silly mapToRegistry using default registry +10293 silly mapToRegistry registry https://registry.npmjs.org/ +10294 silly mapToRegistry uri https://registry.npmjs.org/path-exists +10295 silly resolveWithNewModule path-exists@2.1.0 checking installable status +10296 silly cache add args [ 'path-exists@^2.0.0', null ] +10297 verbose cache add spec path-exists@^2.0.0 +10298 silly cache add parsed spec Result { +10298 silly cache add raw: 'path-exists@^2.0.0', +10298 silly cache add scope: null, +10298 silly cache add name: 'path-exists', +10298 silly cache add rawSpec: '^2.0.0', +10298 silly cache add spec: '>=2.0.0 <3.0.0', +10298 silly cache add type: 'range' } +10299 silly addNamed path-exists@>=2.0.0 <3.0.0 +10300 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for path-exists +10301 silly addNameRange { name: 'path-exists', range: '>=2.0.0 <3.0.0', hasData: false } +10302 silly mapToRegistry name path-exists +10303 silly mapToRegistry using default registry +10304 silly mapToRegistry registry https://registry.npmjs.org/ +10305 silly mapToRegistry uri https://registry.npmjs.org/path-exists +10306 verbose addNameRange registry:https://registry.npmjs.org/path-exists not in flight; fetching +10307 verbose get https://registry.npmjs.org/path-exists not expired, no request +10308 silly addNameRange number 2 { name: 'path-exists', range: '>=2.0.0 <3.0.0', hasData: true } +10309 silly addNameRange versions [ 'path-exists', [ '1.0.0', '2.0.0', '2.1.0', '3.0.0' ] ] +10310 silly addNamed path-exists@2.1.0 +10311 verbose addNamed "2.1.0" is a plain semver version for path-exists +10312 silly cache afterAdd path-exists@2.1.0 +10313 verbose afterAdd /home/wso2/.npm/path-exists/2.1.0/package/package.json not in flight; writing +10314 verbose afterAdd /home/wso2/.npm/path-exists/2.1.0/package/package.json written +10315 silly fetchNamedPackageData big.js +10316 silly mapToRegistry name big.js +10317 silly mapToRegistry using default registry +10318 silly mapToRegistry registry https://registry.npmjs.org/ +10319 silly mapToRegistry uri https://registry.npmjs.org/big.js +10320 silly fetchNamedPackageData emojis-list +10321 silly mapToRegistry name emojis-list +10322 silly mapToRegistry using default registry +10323 silly mapToRegistry registry https://registry.npmjs.org/ +10324 silly mapToRegistry uri https://registry.npmjs.org/emojis-list +10325 verbose request uri https://registry.npmjs.org/big.js +10326 verbose request no auth needed +10327 info attempt registry request try #1 at 3:04:30 PM +10328 verbose etag W/"586ccd9e-5b5b" +10329 verbose lastModified Wed, 04 Jan 2017 10:25:34 GMT +10330 http request GET https://registry.npmjs.org/big.js +10331 verbose request uri https://registry.npmjs.org/emojis-list +10332 verbose request no auth needed +10333 info attempt registry request try #1 at 3:04:30 PM +10334 verbose etag W/"582f83e1-345b" +10335 verbose lastModified Fri, 18 Nov 2016 22:42:41 GMT +10336 http request GET https://registry.npmjs.org/emojis-list +10337 http 200 https://registry.npmjs.org/emojis-list +10338 verbose headers { server: 'nginx/1.10.3', +10338 verbose headers 'content-type': 'application/json', +10338 verbose headers 'last-modified': 'Tue, 12 Sep 2017 07:09:01 GMT', +10338 verbose headers etag: 'W/"59b7880d-3469"', +10338 verbose headers 'content-encoding': 'gzip', +10338 verbose headers 'cache-control': 'max-age=300', +10338 verbose headers 'content-length': '2590', +10338 verbose headers 'accept-ranges': 'bytes', +10338 verbose headers date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10338 verbose headers via: '1.1 varnish', +10338 verbose headers age: '282', +10338 verbose headers connection: 'keep-alive', +10338 verbose headers 'x-served-by': 'cache-sin18030-SIN', +10338 verbose headers 'x-cache': 'HIT', +10338 verbose headers 'x-cache-hits': '5', +10338 verbose headers 'x-timer': 'S1506936871.618424,VS0,VE0', +10338 verbose headers vary: 'Accept-Encoding, Accept' } +10339 silly get cb [ 200, +10339 silly get { server: 'nginx/1.10.3', +10339 silly get 'content-type': 'application/json', +10339 silly get 'last-modified': 'Tue, 12 Sep 2017 07:09:01 GMT', +10339 silly get etag: 'W/"59b7880d-3469"', +10339 silly get 'content-encoding': 'gzip', +10339 silly get 'cache-control': 'max-age=300', +10339 silly get 'content-length': '2590', +10339 silly get 'accept-ranges': 'bytes', +10339 silly get date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10339 silly get via: '1.1 varnish', +10339 silly get age: '282', +10339 silly get connection: 'keep-alive', +10339 silly get 'x-served-by': 'cache-sin18030-SIN', +10339 silly get 'x-cache': 'HIT', +10339 silly get 'x-cache-hits': '5', +10339 silly get 'x-timer': 'S1506936871.618424,VS0,VE0', +10339 silly get vary: 'Accept-Encoding, Accept' } ] +10340 verbose get saving emojis-list to /home/wso2/.npm/registry.npmjs.org/emojis-list/.cache.json +10341 silly resolveWithNewModule emojis-list@2.1.0 checking installable status +10342 silly cache add args [ 'emojis-list@^2.0.0', null ] +10343 verbose cache add spec emojis-list@^2.0.0 +10344 silly cache add parsed spec Result { +10344 silly cache add raw: 'emojis-list@^2.0.0', +10344 silly cache add scope: null, +10344 silly cache add name: 'emojis-list', +10344 silly cache add rawSpec: '^2.0.0', +10344 silly cache add spec: '>=2.0.0 <3.0.0', +10344 silly cache add type: 'range' } +10345 silly addNamed emojis-list@>=2.0.0 <3.0.0 +10346 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for emojis-list +10347 silly addNameRange { name: 'emojis-list', range: '>=2.0.0 <3.0.0', hasData: false } +10348 silly mapToRegistry name emojis-list +10349 silly mapToRegistry using default registry +10350 silly mapToRegistry registry https://registry.npmjs.org/ +10351 silly mapToRegistry uri https://registry.npmjs.org/emojis-list +10352 verbose addNameRange registry:https://registry.npmjs.org/emojis-list not in flight; fetching +10353 verbose get https://registry.npmjs.org/emojis-list not expired, no request +10354 silly addNameRange number 2 { name: 'emojis-list', range: '>=2.0.0 <3.0.0', hasData: true } +10355 silly addNameRange versions [ 'emojis-list', +10355 silly addNameRange [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '2.0.0', '2.0.1', '2.1.0' ] ] +10356 silly addNamed emojis-list@2.1.0 +10357 verbose addNamed "2.1.0" is a plain semver version for emojis-list +10358 silly cache afterAdd emojis-list@2.1.0 +10359 verbose afterAdd /home/wso2/.npm/emojis-list/2.1.0/package/package.json not in flight; writing +10360 verbose afterAdd /home/wso2/.npm/emojis-list/2.1.0/package/package.json written +10361 http 200 https://registry.npmjs.org/big.js +10362 verbose headers { server: 'nginx/1.10.3', +10362 verbose headers 'content-type': 'application/json', +10362 verbose headers 'last-modified': 'Thu, 28 Sep 2017 09:08:25 GMT', +10362 verbose headers etag: 'W/"59ccbc09-7353"', +10362 verbose headers 'content-encoding': 'gzip', +10362 verbose headers 'cache-control': 'max-age=300', +10362 verbose headers 'content-length': '6179', +10362 verbose headers 'accept-ranges': 'bytes', +10362 verbose headers date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10362 verbose headers via: '1.1 varnish', +10362 verbose headers age: '282', +10362 verbose headers connection: 'keep-alive', +10362 verbose headers 'x-served-by': 'cache-sin18021-SIN', +10362 verbose headers 'x-cache': 'HIT', +10362 verbose headers 'x-cache-hits': '6', +10362 verbose headers 'x-timer': 'S1506936871.632544,VS0,VE0', +10362 verbose headers vary: 'Accept-Encoding, Accept' } +10363 silly get cb [ 200, +10363 silly get { server: 'nginx/1.10.3', +10363 silly get 'content-type': 'application/json', +10363 silly get 'last-modified': 'Thu, 28 Sep 2017 09:08:25 GMT', +10363 silly get etag: 'W/"59ccbc09-7353"', +10363 silly get 'content-encoding': 'gzip', +10363 silly get 'cache-control': 'max-age=300', +10363 silly get 'content-length': '6179', +10363 silly get 'accept-ranges': 'bytes', +10363 silly get date: 'Mon, 02 Oct 2017 09:34:30 GMT', +10363 silly get via: '1.1 varnish', +10363 silly get age: '282', +10363 silly get connection: 'keep-alive', +10363 silly get 'x-served-by': 'cache-sin18021-SIN', +10363 silly get 'x-cache': 'HIT', +10363 silly get 'x-cache-hits': '6', +10363 silly get 'x-timer': 'S1506936871.632544,VS0,VE0', +10363 silly get vary: 'Accept-Encoding, Accept' } ] +10364 verbose get saving big.js to /home/wso2/.npm/registry.npmjs.org/big.js/.cache.json +10365 silly resolveWithNewModule big.js@3.2.0 checking installable status +10366 silly cache add args [ 'big.js@^3.1.3', null ] +10367 verbose cache add spec big.js@^3.1.3 +10368 silly cache add parsed spec Result { +10368 silly cache add raw: 'big.js@^3.1.3', +10368 silly cache add scope: null, +10368 silly cache add name: 'big.js', +10368 silly cache add rawSpec: '^3.1.3', +10368 silly cache add spec: '>=3.1.3 <4.0.0', +10368 silly cache add type: 'range' } +10369 silly addNamed big.js@>=3.1.3 <4.0.0 +10370 verbose addNamed ">=3.1.3 <4.0.0" is a valid semver range for big.js +10371 silly addNameRange { name: 'big.js', range: '>=3.1.3 <4.0.0', hasData: false } +10372 silly mapToRegistry name big.js +10373 silly mapToRegistry using default registry +10374 silly mapToRegistry registry https://registry.npmjs.org/ +10375 silly mapToRegistry uri https://registry.npmjs.org/big.js +10376 verbose addNameRange registry:https://registry.npmjs.org/big.js not in flight; fetching +10377 verbose get https://registry.npmjs.org/big.js not expired, no request +10378 silly addNameRange number 2 { name: 'big.js', range: '>=3.1.3 <4.0.0', hasData: true } +10379 silly addNameRange versions [ 'big.js', +10379 silly addNameRange [ '2.0.0', +10379 silly addNameRange '2.1.0', +10379 silly addNameRange '2.2.0', +10379 silly addNameRange '2.4.0', +10379 silly addNameRange '2.4.1', +10379 silly addNameRange '2.5.0', +10379 silly addNameRange '2.5.1', +10379 silly addNameRange '3.0.0', +10379 silly addNameRange '3.0.1', +10379 silly addNameRange '3.0.2', +10379 silly addNameRange '3.1.1', +10379 silly addNameRange '3.1.2', +10379 silly addNameRange '3.1.3', +10379 silly addNameRange '3.2.0', +10379 silly addNameRange '4.0.0', +10379 silly addNameRange '4.0.1', +10379 silly addNameRange '4.0.2' ] ] +10380 silly addNamed big.js@3.2.0 +10381 verbose addNamed "3.2.0" is a plain semver version for big.js +10382 silly mapToRegistry name big.js +10383 silly mapToRegistry using default registry +10384 silly mapToRegistry registry https://registry.npmjs.org/ +10385 silly mapToRegistry uri https://registry.npmjs.org/big.js +10386 verbose addRemoteTarball https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz not in flight; adding +10387 verbose addRemoteTarball [ 'https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz', +10387 verbose addRemoteTarball 'a5fc298b81b9e0dca2e458824784b65c52ba588e' ] +10388 info retry fetch attempt 1 at 3:04:30 PM +10389 info attempt registry request try #1 at 3:04:30 PM +10390 http fetch GET https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz +10391 http fetch 200 https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz +10392 silly fetchAndShaCheck shasum a5fc298b81b9e0dca2e458824784b65c52ba588e +10393 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/big.js/-/big.js-3.2.0.tgz not in flight; adding +10394 verbose addTmpTarball already have metadata; skipping unpack for big.js@3.2.0 +10395 silly cache afterAdd big.js@3.2.0 +10396 verbose afterAdd /home/wso2/.npm/big.js/3.2.0/package/package.json not in flight; writing +10397 verbose afterAdd /home/wso2/.npm/big.js/3.2.0/package/package.json written +10398 silly fetchNamedPackageData babel-plugin-dynamic-import-node +10399 silly mapToRegistry name babel-plugin-dynamic-import-node +10400 silly mapToRegistry using default registry +10401 silly mapToRegistry registry https://registry.npmjs.org/ +10402 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-dynamic-import-node +10403 silly fetchNamedPackageData babel-plugin-syntax-dynamic-import +10404 silly mapToRegistry name babel-plugin-syntax-dynamic-import +10405 silly mapToRegistry using default registry +10406 silly mapToRegistry registry https://registry.npmjs.org/ +10407 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-dynamic-import +10408 silly fetchNamedPackageData babel-plugin-transform-class-properties +10409 silly mapToRegistry name babel-plugin-transform-class-properties +10410 silly mapToRegistry using default registry +10411 silly mapToRegistry registry https://registry.npmjs.org/ +10412 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-class-properties +10413 silly fetchNamedPackageData babel-plugin-transform-object-rest-spread +10414 silly mapToRegistry name babel-plugin-transform-object-rest-spread +10415 silly mapToRegistry using default registry +10416 silly mapToRegistry registry https://registry.npmjs.org/ +10417 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-object-rest-spread +10418 silly fetchNamedPackageData babel-plugin-transform-react-constant-elements +10419 silly mapToRegistry name babel-plugin-transform-react-constant-elements +10420 silly mapToRegistry using default registry +10421 silly mapToRegistry registry https://registry.npmjs.org/ +10422 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-constant-elements +10423 silly fetchNamedPackageData babel-plugin-transform-react-jsx +10424 silly mapToRegistry name babel-plugin-transform-react-jsx +10425 silly mapToRegistry using default registry +10426 silly mapToRegistry registry https://registry.npmjs.org/ +10427 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-jsx +10428 silly fetchNamedPackageData babel-plugin-transform-react-jsx-self +10429 silly mapToRegistry name babel-plugin-transform-react-jsx-self +10430 silly mapToRegistry using default registry +10431 silly mapToRegistry registry https://registry.npmjs.org/ +10432 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-jsx-self +10433 silly fetchNamedPackageData babel-plugin-transform-react-jsx-source +10434 silly mapToRegistry name babel-plugin-transform-react-jsx-source +10435 silly mapToRegistry using default registry +10436 silly mapToRegistry registry https://registry.npmjs.org/ +10437 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-jsx-source +10438 silly fetchNamedPackageData babel-plugin-transform-regenerator +10439 silly mapToRegistry name babel-plugin-transform-regenerator +10440 silly mapToRegistry using default registry +10441 silly mapToRegistry registry https://registry.npmjs.org/ +10442 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-regenerator +10443 silly fetchNamedPackageData babel-plugin-transform-runtime +10444 silly mapToRegistry name babel-plugin-transform-runtime +10445 silly mapToRegistry using default registry +10446 silly mapToRegistry registry https://registry.npmjs.org/ +10447 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-runtime +10448 silly fetchNamedPackageData babel-preset-env +10449 silly mapToRegistry name babel-preset-env +10450 silly mapToRegistry using default registry +10451 silly mapToRegistry registry https://registry.npmjs.org/ +10452 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-env +10453 silly fetchNamedPackageData babel-preset-react +10454 silly mapToRegistry name babel-preset-react +10455 silly mapToRegistry using default registry +10456 silly mapToRegistry registry https://registry.npmjs.org/ +10457 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-react +10458 verbose request uri https://registry.npmjs.org/babel-plugin-dynamic-import-node +10459 verbose request no auth needed +10460 info attempt registry request try #1 at 3:04:30 PM +10461 verbose etag W/"59940e43-28d2" +10462 verbose lastModified Wed, 16 Aug 2017 09:20:03 GMT +10463 http request GET https://registry.npmjs.org/babel-plugin-dynamic-import-node +10464 verbose request uri https://registry.npmjs.org/babel-plugin-syntax-dynamic-import +10465 verbose request no auth needed +10466 info attempt registry request try #1 at 3:04:30 PM +10467 verbose etag W/"59a7093e-42e5" +10468 verbose lastModified Wed, 30 Aug 2017 18:51:42 GMT +10469 http request GET https://registry.npmjs.org/babel-plugin-syntax-dynamic-import +10470 verbose request uri https://registry.npmjs.org/babel-plugin-transform-class-properties +10471 verbose request no auth needed +10472 info attempt registry request try #1 at 3:04:30 PM +10473 verbose etag W/"59a70c4e-fae8" +10474 verbose lastModified Wed, 30 Aug 2017 19:04:46 GMT +10475 http request GET https://registry.npmjs.org/babel-plugin-transform-class-properties +10476 verbose request uri https://registry.npmjs.org/babel-plugin-transform-object-rest-spread +10477 verbose request no auth needed +10478 info attempt registry request try #1 at 3:04:30 PM +10479 verbose etag W/"59ae61b8-c5f7" +10480 verbose lastModified Tue, 05 Sep 2017 08:35:04 GMT +10481 http request GET https://registry.npmjs.org/babel-plugin-transform-object-rest-spread +10482 verbose request uri https://registry.npmjs.org/babel-plugin-transform-react-jsx +10483 verbose request no auth needed +10484 info attempt registry request try #1 at 3:04:30 PM +10485 verbose etag W/"59a70c25-cb44" +10486 verbose lastModified Wed, 30 Aug 2017 19:04:05 GMT +10487 http request GET https://registry.npmjs.org/babel-plugin-transform-react-jsx +10488 verbose request uri https://registry.npmjs.org/babel-plugin-transform-react-constant-elements +10489 verbose request no auth needed +10490 info attempt registry request try #1 at 3:04:30 PM +10491 verbose etag W/"59a70957-a44e" +10492 verbose lastModified Wed, 30 Aug 2017 18:52:07 GMT +10493 http request GET https://registry.npmjs.org/babel-plugin-transform-react-constant-elements +10494 verbose request uri https://registry.npmjs.org/babel-plugin-transform-react-jsx-self +10495 verbose request no auth needed +10496 info attempt registry request try #1 at 3:04:30 PM +10497 verbose etag W/"59a70c1e-6385" +10498 verbose lastModified Wed, 30 Aug 2017 19:03:58 GMT +10499 http request GET https://registry.npmjs.org/babel-plugin-transform-react-jsx-self +10500 verbose request uri https://registry.npmjs.org/babel-plugin-transform-react-jsx-source +10501 verbose request no auth needed +10502 info attempt registry request try #1 at 3:04:30 PM +10503 verbose etag W/"59a70c1f-8ad9" +10504 verbose lastModified Wed, 30 Aug 2017 19:03:59 GMT +10505 http request GET https://registry.npmjs.org/babel-plugin-transform-react-jsx-source +10506 verbose request uri https://registry.npmjs.org/babel-plugin-transform-regenerator +10507 verbose request no auth needed +10508 info attempt registry request try #1 at 3:04:30 PM +10509 verbose etag W/"59a70959-13033" +10510 verbose lastModified Wed, 30 Aug 2017 18:52:09 GMT +10511 http request GET https://registry.npmjs.org/babel-plugin-transform-regenerator +10512 verbose request uri https://registry.npmjs.org/babel-plugin-transform-runtime +10513 verbose request no auth needed +10514 info attempt registry request try #1 at 3:04:30 PM +10515 verbose etag W/"59a7095a-c263" +10516 verbose lastModified Wed, 30 Aug 2017 18:52:10 GMT +10517 http request GET https://registry.npmjs.org/babel-plugin-transform-runtime +10518 verbose request uri https://registry.npmjs.org/babel-preset-env +10519 verbose request no auth needed +10520 info attempt registry request try #1 at 3:04:31 PM +10521 verbose etag W/"59ae45c2-350f4" +10522 verbose lastModified Tue, 05 Sep 2017 06:35:46 GMT +10523 http request GET https://registry.npmjs.org/babel-preset-env +10524 verbose request uri https://registry.npmjs.org/babel-preset-react +10525 verbose request no auth needed +10526 info attempt registry request try #1 at 3:04:31 PM +10527 verbose etag W/"59aa609b-c3a8" +10528 verbose lastModified Sat, 02 Sep 2017 07:41:15 GMT +10529 http request GET https://registry.npmjs.org/babel-preset-react +10530 http 200 https://registry.npmjs.org/babel-plugin-syntax-dynamic-import +10531 verbose headers { server: 'nginx/1.10.3', +10531 verbose headers 'content-type': 'application/json', +10531 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:48 GMT', +10531 verbose headers etag: 'W/"59ca6ee8-51f1"', +10531 verbose headers 'content-encoding': 'gzip', +10531 verbose headers 'cache-control': 'max-age=300', +10531 verbose headers 'content-length': '3104', +10531 verbose headers 'accept-ranges': 'bytes', +10531 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10531 verbose headers via: '1.1 varnish', +10531 verbose headers age: '297', +10531 verbose headers connection: 'keep-alive', +10531 verbose headers 'x-served-by': 'cache-sin18031-SIN', +10531 verbose headers 'x-cache': 'HIT', +10531 verbose headers 'x-cache-hits': '2', +10531 verbose headers 'x-timer': 'S1506936871.145675,VS0,VE0', +10531 verbose headers vary: 'Accept-Encoding, Accept' } +10532 silly get cb [ 200, +10532 silly get { server: 'nginx/1.10.3', +10532 silly get 'content-type': 'application/json', +10532 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:48 GMT', +10532 silly get etag: 'W/"59ca6ee8-51f1"', +10532 silly get 'content-encoding': 'gzip', +10532 silly get 'cache-control': 'max-age=300', +10532 silly get 'content-length': '3104', +10532 silly get 'accept-ranges': 'bytes', +10532 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10532 silly get via: '1.1 varnish', +10532 silly get age: '297', +10532 silly get connection: 'keep-alive', +10532 silly get 'x-served-by': 'cache-sin18031-SIN', +10532 silly get 'x-cache': 'HIT', +10532 silly get 'x-cache-hits': '2', +10532 silly get 'x-timer': 'S1506936871.145675,VS0,VE0', +10532 silly get vary: 'Accept-Encoding, Accept' } ] +10533 verbose get saving babel-plugin-syntax-dynamic-import to /home/wso2/.npm/registry.npmjs.org/babel-plugin-syntax-dynamic-import/.cache.json +10534 silly resolveWithNewModule babel-plugin-syntax-dynamic-import@6.18.0 checking installable status +10535 silly cache add args [ 'babel-plugin-syntax-dynamic-import@6.18.0', null ] +10536 verbose cache add spec babel-plugin-syntax-dynamic-import@6.18.0 +10537 silly cache add parsed spec Result { +10537 silly cache add raw: 'babel-plugin-syntax-dynamic-import@6.18.0', +10537 silly cache add scope: null, +10537 silly cache add name: 'babel-plugin-syntax-dynamic-import', +10537 silly cache add rawSpec: '6.18.0', +10537 silly cache add spec: '6.18.0', +10537 silly cache add type: 'version' } +10538 silly addNamed babel-plugin-syntax-dynamic-import@6.18.0 +10539 verbose addNamed "6.18.0" is a plain semver version for babel-plugin-syntax-dynamic-import +10540 silly mapToRegistry name babel-plugin-syntax-dynamic-import +10541 silly mapToRegistry using default registry +10542 silly mapToRegistry registry https://registry.npmjs.org/ +10543 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-dynamic-import +10544 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-syntax-dynamic-import not in flight; fetching +10545 verbose get https://registry.npmjs.org/babel-plugin-syntax-dynamic-import not expired, no request +10546 silly cache afterAdd babel-plugin-syntax-dynamic-import@6.18.0 +10547 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-dynamic-import/6.18.0/package/package.json not in flight; writing +10548 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-dynamic-import/6.18.0/package/package.json written +10549 http 200 https://registry.npmjs.org/babel-plugin-transform-react-jsx-source +10550 verbose headers { server: 'nginx/1.10.3', +10550 verbose headers 'content-type': 'application/json', +10550 verbose headers 'last-modified': 'Sun, 01 Oct 2017 19:46:50 GMT', +10550 verbose headers etag: 'W/"59d1462a-9c0c"', +10550 verbose headers 'content-encoding': 'gzip', +10550 verbose headers 'cache-control': 'max-age=300', +10550 verbose headers 'content-length': '4694', +10550 verbose headers 'accept-ranges': 'bytes', +10550 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10550 verbose headers via: '1.1 varnish', +10550 verbose headers age: '177', +10550 verbose headers connection: 'keep-alive', +10550 verbose headers 'x-served-by': 'cache-sin18025-SIN', +10550 verbose headers 'x-cache': 'HIT', +10550 verbose headers 'x-cache-hits': '3', +10550 verbose headers 'x-timer': 'S1506936871.209136,VS0,VE0', +10550 verbose headers vary: 'Accept-Encoding, Accept' } +10551 silly get cb [ 200, +10551 silly get { server: 'nginx/1.10.3', +10551 silly get 'content-type': 'application/json', +10551 silly get 'last-modified': 'Sun, 01 Oct 2017 19:46:50 GMT', +10551 silly get etag: 'W/"59d1462a-9c0c"', +10551 silly get 'content-encoding': 'gzip', +10551 silly get 'cache-control': 'max-age=300', +10551 silly get 'content-length': '4694', +10551 silly get 'accept-ranges': 'bytes', +10551 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10551 silly get via: '1.1 varnish', +10551 silly get age: '177', +10551 silly get connection: 'keep-alive', +10551 silly get 'x-served-by': 'cache-sin18025-SIN', +10551 silly get 'x-cache': 'HIT', +10551 silly get 'x-cache-hits': '3', +10551 silly get 'x-timer': 'S1506936871.209136,VS0,VE0', +10551 silly get vary: 'Accept-Encoding, Accept' } ] +10552 verbose get saving babel-plugin-transform-react-jsx-source to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-react-jsx-source/.cache.json +10553 http 200 https://registry.npmjs.org/babel-plugin-transform-react-jsx-self +10554 verbose headers { server: 'nginx/1.10.3', +10554 verbose headers 'content-type': 'application/json', +10554 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:34 GMT', +10554 verbose headers etag: 'W/"59ca6f16-7467"', +10554 verbose headers 'content-encoding': 'gzip', +10554 verbose headers 'cache-control': 'max-age=300', +10554 verbose headers 'content-length': '4001', +10554 verbose headers 'accept-ranges': 'bytes', +10554 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10554 verbose headers via: '1.1 varnish', +10554 verbose headers age: '177', +10554 verbose headers connection: 'keep-alive', +10554 verbose headers 'x-served-by': 'cache-sin18025-SIN', +10554 verbose headers 'x-cache': 'HIT', +10554 verbose headers 'x-cache-hits': '1', +10554 verbose headers 'x-timer': 'S1506936871.209089,VS0,VE0', +10554 verbose headers vary: 'Accept-Encoding, Accept' } +10555 silly get cb [ 200, +10555 silly get { server: 'nginx/1.10.3', +10555 silly get 'content-type': 'application/json', +10555 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:34 GMT', +10555 silly get etag: 'W/"59ca6f16-7467"', +10555 silly get 'content-encoding': 'gzip', +10555 silly get 'cache-control': 'max-age=300', +10555 silly get 'content-length': '4001', +10555 silly get 'accept-ranges': 'bytes', +10555 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10555 silly get via: '1.1 varnish', +10555 silly get age: '177', +10555 silly get connection: 'keep-alive', +10555 silly get 'x-served-by': 'cache-sin18025-SIN', +10555 silly get 'x-cache': 'HIT', +10555 silly get 'x-cache-hits': '1', +10555 silly get 'x-timer': 'S1506936871.209089,VS0,VE0', +10555 silly get vary: 'Accept-Encoding, Accept' } ] +10556 verbose get saving babel-plugin-transform-react-jsx-self to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-react-jsx-self/.cache.json +10557 http 200 https://registry.npmjs.org/babel-plugin-transform-react-jsx +10558 verbose headers { server: 'nginx/1.10.3', +10558 verbose headers 'content-type': 'application/json', +10558 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:41 GMT', +10558 verbose headers etag: 'W/"59ca6f1d-dc62"', +10558 verbose headers 'content-encoding': 'gzip', +10558 verbose headers 'cache-control': 'max-age=300', +10558 verbose headers 'content-length': '6342', +10558 verbose headers 'accept-ranges': 'bytes', +10558 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10558 verbose headers via: '1.1 varnish', +10558 verbose headers age: '119', +10558 verbose headers connection: 'keep-alive', +10558 verbose headers 'x-served-by': 'cache-sin18029-SIN', +10558 verbose headers 'x-cache': 'HIT', +10558 verbose headers 'x-cache-hits': '2', +10558 verbose headers 'x-timer': 'S1506936871.209793,VS0,VE0', +10558 verbose headers vary: 'Accept-Encoding, Accept' } +10559 silly get cb [ 200, +10559 silly get { server: 'nginx/1.10.3', +10559 silly get 'content-type': 'application/json', +10559 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:41 GMT', +10559 silly get etag: 'W/"59ca6f1d-dc62"', +10559 silly get 'content-encoding': 'gzip', +10559 silly get 'cache-control': 'max-age=300', +10559 silly get 'content-length': '6342', +10559 silly get 'accept-ranges': 'bytes', +10559 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10559 silly get via: '1.1 varnish', +10559 silly get age: '119', +10559 silly get connection: 'keep-alive', +10559 silly get 'x-served-by': 'cache-sin18029-SIN', +10559 silly get 'x-cache': 'HIT', +10559 silly get 'x-cache-hits': '2', +10559 silly get 'x-timer': 'S1506936871.209793,VS0,VE0', +10559 silly get vary: 'Accept-Encoding, Accept' } ] +10560 verbose get saving babel-plugin-transform-react-jsx to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-react-jsx/.cache.json +10561 silly resolveWithNewModule babel-plugin-transform-react-jsx-source@6.22.0 checking installable status +10562 silly cache add args [ 'babel-plugin-transform-react-jsx-source@6.22.0', null ] +10563 verbose cache add spec babel-plugin-transform-react-jsx-source@6.22.0 +10564 silly cache add parsed spec Result { +10564 silly cache add raw: 'babel-plugin-transform-react-jsx-source@6.22.0', +10564 silly cache add scope: null, +10564 silly cache add name: 'babel-plugin-transform-react-jsx-source', +10564 silly cache add rawSpec: '6.22.0', +10564 silly cache add spec: '6.22.0', +10564 silly cache add type: 'version' } +10565 silly addNamed babel-plugin-transform-react-jsx-source@6.22.0 +10566 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-transform-react-jsx-source +10567 silly mapToRegistry name babel-plugin-transform-react-jsx-source +10568 silly mapToRegistry using default registry +10569 silly mapToRegistry registry https://registry.npmjs.org/ +10570 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-jsx-source +10571 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-transform-react-jsx-source not in flight; fetching +10572 silly resolveWithNewModule babel-plugin-transform-react-jsx-self@6.22.0 checking installable status +10573 silly cache add args [ 'babel-plugin-transform-react-jsx-self@6.22.0', null ] +10574 verbose cache add spec babel-plugin-transform-react-jsx-self@6.22.0 +10575 silly cache add parsed spec Result { +10575 silly cache add raw: 'babel-plugin-transform-react-jsx-self@6.22.0', +10575 silly cache add scope: null, +10575 silly cache add name: 'babel-plugin-transform-react-jsx-self', +10575 silly cache add rawSpec: '6.22.0', +10575 silly cache add spec: '6.22.0', +10575 silly cache add type: 'version' } +10576 silly addNamed babel-plugin-transform-react-jsx-self@6.22.0 +10577 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-transform-react-jsx-self +10578 silly mapToRegistry name babel-plugin-transform-react-jsx-self +10579 silly mapToRegistry using default registry +10580 silly mapToRegistry registry https://registry.npmjs.org/ +10581 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-jsx-self +10582 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-transform-react-jsx-self not in flight; fetching +10583 verbose get https://registry.npmjs.org/babel-plugin-transform-react-jsx-source not expired, no request +10584 verbose get https://registry.npmjs.org/babel-plugin-transform-react-jsx-self not expired, no request +10585 silly resolveWithNewModule babel-plugin-transform-react-jsx@6.24.1 checking installable status +10586 silly cache add args [ 'babel-plugin-transform-react-jsx@6.24.1', null ] +10587 verbose cache add spec babel-plugin-transform-react-jsx@6.24.1 +10588 silly cache add parsed spec Result { +10588 silly cache add raw: 'babel-plugin-transform-react-jsx@6.24.1', +10588 silly cache add scope: null, +10588 silly cache add name: 'babel-plugin-transform-react-jsx', +10588 silly cache add rawSpec: '6.24.1', +10588 silly cache add spec: '6.24.1', +10588 silly cache add type: 'version' } +10589 silly addNamed babel-plugin-transform-react-jsx@6.24.1 +10590 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-react-jsx +10591 silly mapToRegistry name babel-plugin-transform-react-jsx +10592 silly mapToRegistry using default registry +10593 silly mapToRegistry registry https://registry.npmjs.org/ +10594 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-jsx +10595 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-transform-react-jsx not in flight; fetching +10596 verbose get https://registry.npmjs.org/babel-plugin-transform-react-jsx not expired, no request +10597 silly cache afterAdd babel-plugin-transform-react-jsx-self@6.22.0 +10598 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-jsx-self/6.22.0/package/package.json not in flight; writing +10599 silly cache afterAdd babel-plugin-transform-react-jsx-source@6.22.0 +10600 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-jsx-source/6.22.0/package/package.json not in flight; writing +10601 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-jsx-source/6.22.0/package/package.json written +10602 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-jsx-self/6.22.0/package/package.json written +10603 silly cache afterAdd babel-plugin-transform-react-jsx@6.24.1 +10604 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-jsx/6.24.1/package/package.json not in flight; writing +10605 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-jsx/6.24.1/package/package.json written +10606 http 200 https://registry.npmjs.org/babel-preset-react +10607 verbose headers { server: 'nginx/1.10.3', +10607 verbose headers 'content-type': 'application/json', +10607 verbose headers 'last-modified': 'Sun, 01 Oct 2017 20:02:10 GMT', +10607 verbose headers etag: 'W/"59d149c2-d77d"', +10607 verbose headers 'content-encoding': 'gzip', +10607 verbose headers 'cache-control': 'max-age=300', +10607 verbose headers 'content-length': '6533', +10607 verbose headers 'accept-ranges': 'bytes', +10607 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10607 verbose headers via: '1.1 varnish', +10607 verbose headers age: '6', +10607 verbose headers connection: 'keep-alive', +10607 verbose headers 'x-served-by': 'cache-sin18021-SIN', +10607 verbose headers 'x-cache': 'HIT', +10607 verbose headers 'x-cache-hits': '1', +10607 verbose headers 'x-timer': 'S1506936871.262335,VS0,VE0', +10607 verbose headers vary: 'Accept-Encoding, Accept' } +10608 silly get cb [ 200, +10608 silly get { server: 'nginx/1.10.3', +10608 silly get 'content-type': 'application/json', +10608 silly get 'last-modified': 'Sun, 01 Oct 2017 20:02:10 GMT', +10608 silly get etag: 'W/"59d149c2-d77d"', +10608 silly get 'content-encoding': 'gzip', +10608 silly get 'cache-control': 'max-age=300', +10608 silly get 'content-length': '6533', +10608 silly get 'accept-ranges': 'bytes', +10608 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10608 silly get via: '1.1 varnish', +10608 silly get age: '6', +10608 silly get connection: 'keep-alive', +10608 silly get 'x-served-by': 'cache-sin18021-SIN', +10608 silly get 'x-cache': 'HIT', +10608 silly get 'x-cache-hits': '1', +10608 silly get 'x-timer': 'S1506936871.262335,VS0,VE0', +10608 silly get vary: 'Accept-Encoding, Accept' } ] +10609 verbose get saving babel-preset-react to /home/wso2/.npm/registry.npmjs.org/babel-preset-react/.cache.json +10610 silly resolveWithNewModule babel-preset-react@6.24.1 checking installable status +10611 silly cache add args [ 'babel-preset-react@6.24.1', null ] +10612 verbose cache add spec babel-preset-react@6.24.1 +10613 silly cache add parsed spec Result { +10613 silly cache add raw: 'babel-preset-react@6.24.1', +10613 silly cache add scope: null, +10613 silly cache add name: 'babel-preset-react', +10613 silly cache add rawSpec: '6.24.1', +10613 silly cache add spec: '6.24.1', +10613 silly cache add type: 'version' } +10614 silly addNamed babel-preset-react@6.24.1 +10615 verbose addNamed "6.24.1" is a plain semver version for babel-preset-react +10616 silly mapToRegistry name babel-preset-react +10617 silly mapToRegistry using default registry +10618 silly mapToRegistry registry https://registry.npmjs.org/ +10619 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-react +10620 verbose addNameVersion registry:https://registry.npmjs.org/babel-preset-react not in flight; fetching +10621 verbose get https://registry.npmjs.org/babel-preset-react not expired, no request +10622 http 200 https://registry.npmjs.org/babel-plugin-transform-regenerator +10623 verbose headers { server: 'nginx/1.10.3', +10623 verbose headers 'content-type': 'application/json', +10623 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:12 GMT', +10623 verbose headers etag: 'W/"59ca6f00-14295"', +10623 verbose headers 'content-encoding': 'gzip', +10623 verbose headers 'cache-control': 'max-age=300', +10623 verbose headers 'content-length': '7802', +10623 verbose headers 'accept-ranges': 'bytes', +10623 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10623 verbose headers via: '1.1 varnish', +10623 verbose headers age: '0', +10623 verbose headers connection: 'keep-alive', +10623 verbose headers 'x-served-by': 'cache-sin18028-SIN', +10623 verbose headers 'x-cache': 'HIT', +10623 verbose headers 'x-cache-hits': '1', +10623 verbose headers 'x-timer': 'S1506936871.262846,VS0,VE0', +10623 verbose headers vary: 'Accept-Encoding, Accept' } +10624 silly get cb [ 200, +10624 silly get { server: 'nginx/1.10.3', +10624 silly get 'content-type': 'application/json', +10624 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:12 GMT', +10624 silly get etag: 'W/"59ca6f00-14295"', +10624 silly get 'content-encoding': 'gzip', +10624 silly get 'cache-control': 'max-age=300', +10624 silly get 'content-length': '7802', +10624 silly get 'accept-ranges': 'bytes', +10624 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10624 silly get via: '1.1 varnish', +10624 silly get age: '0', +10624 silly get connection: 'keep-alive', +10624 silly get 'x-served-by': 'cache-sin18028-SIN', +10624 silly get 'x-cache': 'HIT', +10624 silly get 'x-cache-hits': '1', +10624 silly get 'x-timer': 'S1506936871.262846,VS0,VE0', +10624 silly get vary: 'Accept-Encoding, Accept' } ] +10625 verbose get saving babel-plugin-transform-regenerator to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-regenerator/.cache.json +10626 http 200 https://registry.npmjs.org/babel-plugin-transform-runtime +10627 verbose headers { server: 'nginx/1.10.3', +10627 verbose headers 'content-type': 'application/json', +10627 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:12 GMT', +10627 verbose headers etag: 'W/"59ca6f00-d31f"', +10627 verbose headers 'content-encoding': 'gzip', +10627 verbose headers 'cache-control': 'max-age=300', +10627 verbose headers 'content-length': '5799', +10627 verbose headers 'accept-ranges': 'bytes', +10627 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10627 verbose headers via: '1.1 varnish', +10627 verbose headers age: '287', +10627 verbose headers connection: 'keep-alive', +10627 verbose headers 'x-served-by': 'cache-sin18028-SIN', +10627 verbose headers 'x-cache': 'HIT', +10627 verbose headers 'x-cache-hits': '1', +10627 verbose headers 'x-timer': 'S1506936871.263628,VS0,VE0', +10627 verbose headers vary: 'Accept-Encoding, Accept' } +10628 silly get cb [ 200, +10628 silly get { server: 'nginx/1.10.3', +10628 silly get 'content-type': 'application/json', +10628 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:12 GMT', +10628 silly get etag: 'W/"59ca6f00-d31f"', +10628 silly get 'content-encoding': 'gzip', +10628 silly get 'cache-control': 'max-age=300', +10628 silly get 'content-length': '5799', +10628 silly get 'accept-ranges': 'bytes', +10628 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10628 silly get via: '1.1 varnish', +10628 silly get age: '287', +10628 silly get connection: 'keep-alive', +10628 silly get 'x-served-by': 'cache-sin18028-SIN', +10628 silly get 'x-cache': 'HIT', +10628 silly get 'x-cache-hits': '1', +10628 silly get 'x-timer': 'S1506936871.263628,VS0,VE0', +10628 silly get vary: 'Accept-Encoding, Accept' } ] +10629 verbose get saving babel-plugin-transform-runtime to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-runtime/.cache.json +10630 silly cache afterAdd babel-preset-react@6.24.1 +10631 verbose afterAdd /home/wso2/.npm/babel-preset-react/6.24.1/package/package.json not in flight; writing +10632 silly resolveWithNewModule babel-plugin-transform-regenerator@6.24.1 checking installable status +10633 silly cache add args [ 'babel-plugin-transform-regenerator@6.24.1', null ] +10634 verbose cache add spec babel-plugin-transform-regenerator@6.24.1 +10635 silly cache add parsed spec Result { +10635 silly cache add raw: 'babel-plugin-transform-regenerator@6.24.1', +10635 silly cache add scope: null, +10635 silly cache add name: 'babel-plugin-transform-regenerator', +10635 silly cache add rawSpec: '6.24.1', +10635 silly cache add spec: '6.24.1', +10635 silly cache add type: 'version' } +10636 silly addNamed babel-plugin-transform-regenerator@6.24.1 +10637 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-regenerator +10638 silly mapToRegistry name babel-plugin-transform-regenerator +10639 silly mapToRegistry using default registry +10640 silly mapToRegistry registry https://registry.npmjs.org/ +10641 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-regenerator +10642 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-transform-regenerator not in flight; fetching +10643 verbose afterAdd /home/wso2/.npm/babel-preset-react/6.24.1/package/package.json written +10644 silly resolveWithNewModule babel-plugin-transform-runtime@6.23.0 checking installable status +10645 silly cache add args [ 'babel-plugin-transform-runtime@6.23.0', null ] +10646 verbose cache add spec babel-plugin-transform-runtime@6.23.0 +10647 silly cache add parsed spec Result { +10647 silly cache add raw: 'babel-plugin-transform-runtime@6.23.0', +10647 silly cache add scope: null, +10647 silly cache add name: 'babel-plugin-transform-runtime', +10647 silly cache add rawSpec: '6.23.0', +10647 silly cache add spec: '6.23.0', +10647 silly cache add type: 'version' } +10648 silly addNamed babel-plugin-transform-runtime@6.23.0 +10649 verbose addNamed "6.23.0" is a plain semver version for babel-plugin-transform-runtime +10650 silly mapToRegistry name babel-plugin-transform-runtime +10651 silly mapToRegistry using default registry +10652 silly mapToRegistry registry https://registry.npmjs.org/ +10653 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-runtime +10654 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-transform-runtime not in flight; fetching +10655 verbose get https://registry.npmjs.org/babel-plugin-transform-regenerator not expired, no request +10656 verbose get https://registry.npmjs.org/babel-plugin-transform-runtime not expired, no request +10657 http 200 https://registry.npmjs.org/babel-plugin-transform-class-properties +10658 verbose headers { server: 'nginx/1.10.3', +10658 verbose headers 'content-type': 'application/json', +10658 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:11 GMT', +10658 verbose headers etag: 'W/"59ca6f3b-10df5"', +10658 verbose headers 'content-encoding': 'gzip', +10658 verbose headers 'cache-control': 'max-age=300', +10658 verbose headers 'content-length': '7112', +10658 verbose headers 'accept-ranges': 'bytes', +10658 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10658 verbose headers via: '1.1 varnish', +10658 verbose headers age: '0', +10658 verbose headers connection: 'keep-alive', +10658 verbose headers 'x-served-by': 'cache-sin18022-SIN', +10658 verbose headers 'x-cache': 'HIT', +10658 verbose headers 'x-cache-hits': '1', +10658 verbose headers 'x-timer': 'S1506936871.125145,VS0,VE160', +10658 verbose headers vary: 'Accept-Encoding, Accept' } +10659 silly get cb [ 200, +10659 silly get { server: 'nginx/1.10.3', +10659 silly get 'content-type': 'application/json', +10659 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:11 GMT', +10659 silly get etag: 'W/"59ca6f3b-10df5"', +10659 silly get 'content-encoding': 'gzip', +10659 silly get 'cache-control': 'max-age=300', +10659 silly get 'content-length': '7112', +10659 silly get 'accept-ranges': 'bytes', +10659 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10659 silly get via: '1.1 varnish', +10659 silly get age: '0', +10659 silly get connection: 'keep-alive', +10659 silly get 'x-served-by': 'cache-sin18022-SIN', +10659 silly get 'x-cache': 'HIT', +10659 silly get 'x-cache-hits': '1', +10659 silly get 'x-timer': 'S1506936871.125145,VS0,VE160', +10659 silly get vary: 'Accept-Encoding, Accept' } ] +10660 verbose get saving babel-plugin-transform-class-properties to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-class-properties/.cache.json +10661 silly cache afterAdd babel-plugin-transform-regenerator@6.24.1 +10662 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-regenerator/6.24.1/package/package.json not in flight; writing +10663 silly cache afterAdd babel-plugin-transform-runtime@6.23.0 +10664 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-runtime/6.23.0/package/package.json not in flight; writing +10665 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-regenerator/6.24.1/package/package.json written +10666 silly resolveWithNewModule babel-plugin-transform-class-properties@6.24.1 checking installable status +10667 silly cache add args [ 'babel-plugin-transform-class-properties@6.24.1', null ] +10668 verbose cache add spec babel-plugin-transform-class-properties@6.24.1 +10669 silly cache add parsed spec Result { +10669 silly cache add raw: 'babel-plugin-transform-class-properties@6.24.1', +10669 silly cache add scope: null, +10669 silly cache add name: 'babel-plugin-transform-class-properties', +10669 silly cache add rawSpec: '6.24.1', +10669 silly cache add spec: '6.24.1', +10669 silly cache add type: 'version' } +10670 silly addNamed babel-plugin-transform-class-properties@6.24.1 +10671 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-class-properties +10672 silly mapToRegistry name babel-plugin-transform-class-properties +10673 silly mapToRegistry using default registry +10674 silly mapToRegistry registry https://registry.npmjs.org/ +10675 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-class-properties +10676 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-transform-class-properties not in flight; fetching +10677 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-runtime/6.23.0/package/package.json written +10678 http 200 https://registry.npmjs.org/babel-plugin-dynamic-import-node +10679 verbose headers { server: 'nginx/1.10.3', +10679 verbose headers 'content-type': 'application/json', +10679 verbose headers 'last-modified': 'Mon, 11 Sep 2017 04:46:54 GMT', +10679 verbose headers etag: 'W/"59b6153e-34e0"', +10679 verbose headers 'content-encoding': 'gzip', +10679 verbose headers 'cache-control': 'max-age=300', +10679 verbose headers 'content-length': '2505', +10679 verbose headers 'accept-ranges': 'bytes', +10679 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10679 verbose headers via: '1.1 varnish', +10679 verbose headers age: '0', +10679 verbose headers connection: 'keep-alive', +10679 verbose headers 'x-served-by': 'cache-sin18027-SIN', +10679 verbose headers 'x-cache': 'HIT', +10679 verbose headers 'x-cache-hits': '1', +10679 verbose headers 'x-timer': 'S1506936871.125954,VS0,VE167', +10679 verbose headers vary: 'Accept-Encoding, Accept' } +10680 silly get cb [ 200, +10680 silly get { server: 'nginx/1.10.3', +10680 silly get 'content-type': 'application/json', +10680 silly get 'last-modified': 'Mon, 11 Sep 2017 04:46:54 GMT', +10680 silly get etag: 'W/"59b6153e-34e0"', +10680 silly get 'content-encoding': 'gzip', +10680 silly get 'cache-control': 'max-age=300', +10680 silly get 'content-length': '2505', +10680 silly get 'accept-ranges': 'bytes', +10680 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10680 silly get via: '1.1 varnish', +10680 silly get age: '0', +10680 silly get connection: 'keep-alive', +10680 silly get 'x-served-by': 'cache-sin18027-SIN', +10680 silly get 'x-cache': 'HIT', +10680 silly get 'x-cache-hits': '1', +10680 silly get 'x-timer': 'S1506936871.125954,VS0,VE167', +10680 silly get vary: 'Accept-Encoding, Accept' } ] +10681 verbose get saving babel-plugin-dynamic-import-node to /home/wso2/.npm/registry.npmjs.org/babel-plugin-dynamic-import-node/.cache.json +10682 verbose get https://registry.npmjs.org/babel-plugin-transform-class-properties not expired, no request +10683 silly resolveWithNewModule babel-plugin-dynamic-import-node@1.0.2 checking installable status +10684 silly cache add args [ 'babel-plugin-dynamic-import-node@1.0.2', null ] +10685 verbose cache add spec babel-plugin-dynamic-import-node@1.0.2 +10686 silly cache add parsed spec Result { +10686 silly cache add raw: 'babel-plugin-dynamic-import-node@1.0.2', +10686 silly cache add scope: null, +10686 silly cache add name: 'babel-plugin-dynamic-import-node', +10686 silly cache add rawSpec: '1.0.2', +10686 silly cache add spec: '1.0.2', +10686 silly cache add type: 'version' } +10687 silly addNamed babel-plugin-dynamic-import-node@1.0.2 +10688 verbose addNamed "1.0.2" is a plain semver version for babel-plugin-dynamic-import-node +10689 silly mapToRegistry name babel-plugin-dynamic-import-node +10690 silly mapToRegistry using default registry +10691 silly mapToRegistry registry https://registry.npmjs.org/ +10692 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-dynamic-import-node +10693 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-dynamic-import-node not in flight; fetching +10694 silly cache afterAdd babel-plugin-transform-class-properties@6.24.1 +10695 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-class-properties/6.24.1/package/package.json not in flight; writing +10696 verbose get https://registry.npmjs.org/babel-plugin-dynamic-import-node not expired, no request +10697 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-class-properties/6.24.1/package/package.json written +10698 silly cache afterAdd babel-plugin-dynamic-import-node@1.0.2 +10699 verbose afterAdd /home/wso2/.npm/babel-plugin-dynamic-import-node/1.0.2/package/package.json not in flight; writing +10700 verbose afterAdd /home/wso2/.npm/babel-plugin-dynamic-import-node/1.0.2/package/package.json written +10701 http 200 https://registry.npmjs.org/babel-preset-env +10702 verbose headers { server: 'nginx/1.10.3', +10702 verbose headers 'content-type': 'application/json', +10702 verbose headers 'last-modified': 'Wed, 27 Sep 2017 13:18:54 GMT', +10702 verbose headers etag: 'W/"59cba53e-3948e"', +10702 verbose headers 'content-encoding': 'gzip', +10702 verbose headers 'cache-control': 'max-age=300', +10702 verbose headers 'content-length': '18115', +10702 verbose headers 'accept-ranges': 'bytes', +10702 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10702 verbose headers via: '1.1 varnish', +10702 verbose headers age: '52', +10702 verbose headers connection: 'keep-alive', +10702 verbose headers 'x-served-by': 'cache-sin18022-SIN', +10702 verbose headers 'x-cache': 'HIT', +10702 verbose headers 'x-cache-hits': '1', +10702 verbose headers 'x-timer': 'S1506936871.261396,VS0,VE1', +10702 verbose headers vary: 'Accept-Encoding, Accept' } +10703 silly get cb [ 200, +10703 silly get { server: 'nginx/1.10.3', +10703 silly get 'content-type': 'application/json', +10703 silly get 'last-modified': 'Wed, 27 Sep 2017 13:18:54 GMT', +10703 silly get etag: 'W/"59cba53e-3948e"', +10703 silly get 'content-encoding': 'gzip', +10703 silly get 'cache-control': 'max-age=300', +10703 silly get 'content-length': '18115', +10703 silly get 'accept-ranges': 'bytes', +10703 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10703 silly get via: '1.1 varnish', +10703 silly get age: '52', +10703 silly get connection: 'keep-alive', +10703 silly get 'x-served-by': 'cache-sin18022-SIN', +10703 silly get 'x-cache': 'HIT', +10703 silly get 'x-cache-hits': '1', +10703 silly get 'x-timer': 'S1506936871.261396,VS0,VE1', +10703 silly get vary: 'Accept-Encoding, Accept' } ] +10704 verbose get saving babel-preset-env to /home/wso2/.npm/registry.npmjs.org/babel-preset-env/.cache.json +10705 silly resolveWithNewModule babel-preset-env@1.5.2 checking installable status +10706 silly cache add args [ 'babel-preset-env@1.5.2', null ] +10707 verbose cache add spec babel-preset-env@1.5.2 +10708 silly cache add parsed spec Result { +10708 silly cache add raw: 'babel-preset-env@1.5.2', +10708 silly cache add scope: null, +10708 silly cache add name: 'babel-preset-env', +10708 silly cache add rawSpec: '1.5.2', +10708 silly cache add spec: '1.5.2', +10708 silly cache add type: 'version' } +10709 silly addNamed babel-preset-env@1.5.2 +10710 verbose addNamed "1.5.2" is a plain semver version for babel-preset-env +10711 silly mapToRegistry name babel-preset-env +10712 silly mapToRegistry using default registry +10713 silly mapToRegistry registry https://registry.npmjs.org/ +10714 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-env +10715 verbose addNameVersion registry:https://registry.npmjs.org/babel-preset-env not in flight; fetching +10716 verbose get https://registry.npmjs.org/babel-preset-env not expired, no request +10717 silly cache afterAdd babel-preset-env@1.5.2 +10718 verbose afterAdd /home/wso2/.npm/babel-preset-env/1.5.2/package/package.json not in flight; writing +10719 verbose afterAdd /home/wso2/.npm/babel-preset-env/1.5.2/package/package.json written +10720 http 200 https://registry.npmjs.org/babel-plugin-transform-object-rest-spread +10721 verbose headers { server: 'nginx/1.10.3', +10721 verbose headers 'content-type': 'application/json', +10721 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:31 GMT', +10721 verbose headers etag: 'W/"59ca6f13-d74f"', +10721 verbose headers 'content-encoding': 'gzip', +10721 verbose headers 'cache-control': 'max-age=300', +10721 verbose headers 'content-length': '6013', +10721 verbose headers 'accept-ranges': 'bytes', +10721 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10721 verbose headers via: '1.1 varnish', +10721 verbose headers age: '0', +10721 verbose headers connection: 'keep-alive', +10721 verbose headers 'x-served-by': 'cache-sin18031-SIN', +10721 verbose headers 'x-cache': 'HIT', +10721 verbose headers 'x-cache-hits': '1', +10721 verbose headers 'x-timer': 'S1506936871.127906,VS0,VE679', +10721 verbose headers vary: 'Accept-Encoding, Accept' } +10722 silly get cb [ 200, +10722 silly get { server: 'nginx/1.10.3', +10722 silly get 'content-type': 'application/json', +10722 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:31 GMT', +10722 silly get etag: 'W/"59ca6f13-d74f"', +10722 silly get 'content-encoding': 'gzip', +10722 silly get 'cache-control': 'max-age=300', +10722 silly get 'content-length': '6013', +10722 silly get 'accept-ranges': 'bytes', +10722 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10722 silly get via: '1.1 varnish', +10722 silly get age: '0', +10722 silly get connection: 'keep-alive', +10722 silly get 'x-served-by': 'cache-sin18031-SIN', +10722 silly get 'x-cache': 'HIT', +10722 silly get 'x-cache-hits': '1', +10722 silly get 'x-timer': 'S1506936871.127906,VS0,VE679', +10722 silly get vary: 'Accept-Encoding, Accept' } ] +10723 verbose get saving babel-plugin-transform-object-rest-spread to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-object-rest-spread/.cache.json +10724 silly resolveWithNewModule babel-plugin-transform-object-rest-spread@6.23.0 checking installable status +10725 silly cache add args [ 'babel-plugin-transform-object-rest-spread@6.23.0', null ] +10726 verbose cache add spec babel-plugin-transform-object-rest-spread@6.23.0 +10727 silly cache add parsed spec Result { +10727 silly cache add raw: 'babel-plugin-transform-object-rest-spread@6.23.0', +10727 silly cache add scope: null, +10727 silly cache add name: 'babel-plugin-transform-object-rest-spread', +10727 silly cache add rawSpec: '6.23.0', +10727 silly cache add spec: '6.23.0', +10727 silly cache add type: 'version' } +10728 silly addNamed babel-plugin-transform-object-rest-spread@6.23.0 +10729 verbose addNamed "6.23.0" is a plain semver version for babel-plugin-transform-object-rest-spread +10730 silly mapToRegistry name babel-plugin-transform-object-rest-spread +10731 silly mapToRegistry using default registry +10732 silly mapToRegistry registry https://registry.npmjs.org/ +10733 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-object-rest-spread +10734 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-transform-object-rest-spread not in flight; fetching +10735 verbose get https://registry.npmjs.org/babel-plugin-transform-object-rest-spread not expired, no request +10736 silly cache afterAdd babel-plugin-transform-object-rest-spread@6.23.0 +10737 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-object-rest-spread/6.23.0/package/package.json not in flight; writing +10738 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-object-rest-spread/6.23.0/package/package.json written +10739 http 200 https://registry.npmjs.org/babel-plugin-transform-react-constant-elements +10740 verbose headers { server: 'nginx/1.10.3', +10740 verbose headers 'content-type': 'application/json', +10740 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:10 GMT', +10740 verbose headers etag: 'W/"59ca6efe-b597"', +10740 verbose headers 'content-encoding': 'gzip', +10740 verbose headers 'cache-control': 'max-age=300', +10740 verbose headers 'content-length': '4935', +10740 verbose headers 'accept-ranges': 'bytes', +10740 verbose headers date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10740 verbose headers via: '1.1 varnish', +10740 verbose headers age: '0', +10740 verbose headers connection: 'keep-alive', +10740 verbose headers 'x-served-by': 'cache-sin18035-SIN', +10740 verbose headers 'x-cache': 'HIT', +10740 verbose headers 'x-cache-hits': '1', +10740 verbose headers 'x-timer': 'S1506936871.207934,VS0,VE676', +10740 verbose headers vary: 'Accept-Encoding, Accept' } +10741 silly get cb [ 200, +10741 silly get { server: 'nginx/1.10.3', +10741 silly get 'content-type': 'application/json', +10741 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:10 GMT', +10741 silly get etag: 'W/"59ca6efe-b597"', +10741 silly get 'content-encoding': 'gzip', +10741 silly get 'cache-control': 'max-age=300', +10741 silly get 'content-length': '4935', +10741 silly get 'accept-ranges': 'bytes', +10741 silly get date: 'Mon, 02 Oct 2017 09:34:31 GMT', +10741 silly get via: '1.1 varnish', +10741 silly get age: '0', +10741 silly get connection: 'keep-alive', +10741 silly get 'x-served-by': 'cache-sin18035-SIN', +10741 silly get 'x-cache': 'HIT', +10741 silly get 'x-cache-hits': '1', +10741 silly get 'x-timer': 'S1506936871.207934,VS0,VE676', +10741 silly get vary: 'Accept-Encoding, Accept' } ] +10742 verbose get saving babel-plugin-transform-react-constant-elements to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-react-constant-elements/.cache.json +10743 silly resolveWithNewModule babel-plugin-transform-react-constant-elements@6.23.0 checking installable status +10744 silly cache add args [ 'babel-plugin-transform-react-constant-elements@6.23.0', +10744 silly cache add null ] +10745 verbose cache add spec babel-plugin-transform-react-constant-elements@6.23.0 +10746 silly cache add parsed spec Result { +10746 silly cache add raw: 'babel-plugin-transform-react-constant-elements@6.23.0', +10746 silly cache add scope: null, +10746 silly cache add name: 'babel-plugin-transform-react-constant-elements', +10746 silly cache add rawSpec: '6.23.0', +10746 silly cache add spec: '6.23.0', +10746 silly cache add type: 'version' } +10747 silly addNamed babel-plugin-transform-react-constant-elements@6.23.0 +10748 verbose addNamed "6.23.0" is a plain semver version for babel-plugin-transform-react-constant-elements +10749 silly mapToRegistry name babel-plugin-transform-react-constant-elements +10750 silly mapToRegistry using default registry +10751 silly mapToRegistry registry https://registry.npmjs.org/ +10752 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-constant-elements +10753 verbose addNameVersion registry:https://registry.npmjs.org/babel-plugin-transform-react-constant-elements not in flight; fetching +10754 verbose get https://registry.npmjs.org/babel-plugin-transform-react-constant-elements not expired, no request +10755 silly cache afterAdd babel-plugin-transform-react-constant-elements@6.23.0 +10756 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-constant-elements/6.23.0/package/package.json not in flight; writing +10757 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-constant-elements/6.23.0/package/package.json written +10758 silly fetchNamedPackageData babel-helper-function-name +10759 silly mapToRegistry name babel-helper-function-name +10760 silly mapToRegistry using default registry +10761 silly mapToRegistry registry https://registry.npmjs.org/ +10762 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-function-name +10763 silly fetchNamedPackageData babel-plugin-syntax-class-properties +10764 silly mapToRegistry name babel-plugin-syntax-class-properties +10765 silly mapToRegistry using default registry +10766 silly mapToRegistry registry https://registry.npmjs.org/ +10767 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-class-properties +10768 verbose request uri https://registry.npmjs.org/babel-helper-function-name +10769 verbose request no auth needed +10770 info attempt registry request try #1 at 3:04:31 PM +10771 verbose etag W/"59a70c46-cc44" +10772 verbose lastModified Wed, 30 Aug 2017 19:04:38 GMT +10773 http request GET https://registry.npmjs.org/babel-helper-function-name +10774 verbose request uri https://registry.npmjs.org/babel-plugin-syntax-class-properties +10775 verbose request no auth needed +10776 info attempt registry request try #1 at 3:04:31 PM +10777 verbose etag W/"59a7093b-8f0b" +10778 verbose lastModified Wed, 30 Aug 2017 18:51:39 GMT +10779 http request GET https://registry.npmjs.org/babel-plugin-syntax-class-properties +10780 http 200 https://registry.npmjs.org/babel-helper-function-name +10781 verbose headers { server: 'nginx/1.10.3', +10781 verbose headers 'content-type': 'application/json', +10781 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:02 GMT', +10781 verbose headers etag: 'W/"59ca6f32-dcba"', +10781 verbose headers 'content-encoding': 'gzip', +10781 verbose headers 'cache-control': 'max-age=300', +10781 verbose headers 'content-length': '6008', +10781 verbose headers 'accept-ranges': 'bytes', +10781 verbose headers date: 'Mon, 02 Oct 2017 09:34:32 GMT', +10781 verbose headers via: '1.1 varnish', +10781 verbose headers age: '68', +10781 verbose headers connection: 'keep-alive', +10781 verbose headers 'x-served-by': 'cache-sin18028-SIN', +10781 verbose headers 'x-cache': 'HIT', +10781 verbose headers 'x-cache-hits': '1', +10781 verbose headers 'x-timer': 'S1506936872.390718,VS0,VE0', +10781 verbose headers vary: 'Accept-Encoding, Accept' } +10782 silly get cb [ 200, +10782 silly get { server: 'nginx/1.10.3', +10782 silly get 'content-type': 'application/json', +10782 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:02 GMT', +10782 silly get etag: 'W/"59ca6f32-dcba"', +10782 silly get 'content-encoding': 'gzip', +10782 silly get 'cache-control': 'max-age=300', +10782 silly get 'content-length': '6008', +10782 silly get 'accept-ranges': 'bytes', +10782 silly get date: 'Mon, 02 Oct 2017 09:34:32 GMT', +10782 silly get via: '1.1 varnish', +10782 silly get age: '68', +10782 silly get connection: 'keep-alive', +10782 silly get 'x-served-by': 'cache-sin18028-SIN', +10782 silly get 'x-cache': 'HIT', +10782 silly get 'x-cache-hits': '1', +10782 silly get 'x-timer': 'S1506936872.390718,VS0,VE0', +10782 silly get vary: 'Accept-Encoding, Accept' } ] +10783 verbose get saving babel-helper-function-name to /home/wso2/.npm/registry.npmjs.org/babel-helper-function-name/.cache.json +10784 http 200 https://registry.npmjs.org/babel-plugin-syntax-class-properties +10785 verbose headers { server: 'nginx/1.10.3', +10785 verbose headers 'content-type': 'application/json', +10785 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:45 GMT', +10785 verbose headers etag: 'W/"59ca6ee5-9e67"', +10785 verbose headers 'content-encoding': 'gzip', +10785 verbose headers 'cache-control': 'max-age=300', +10785 verbose headers 'content-length': '4542', +10785 verbose headers 'accept-ranges': 'bytes', +10785 verbose headers date: 'Mon, 02 Oct 2017 09:34:32 GMT', +10785 verbose headers via: '1.1 varnish', +10785 verbose headers age: '141', +10785 verbose headers connection: 'keep-alive', +10785 verbose headers 'x-served-by': 'cache-sin18030-SIN', +10785 verbose headers 'x-cache': 'HIT', +10785 verbose headers 'x-cache-hits': '2', +10785 verbose headers 'x-timer': 'S1506936872.410161,VS0,VE0', +10785 verbose headers vary: 'Accept-Encoding, Accept' } +10786 silly get cb [ 200, +10786 silly get { server: 'nginx/1.10.3', +10786 silly get 'content-type': 'application/json', +10786 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:45 GMT', +10786 silly get etag: 'W/"59ca6ee5-9e67"', +10786 silly get 'content-encoding': 'gzip', +10786 silly get 'cache-control': 'max-age=300', +10786 silly get 'content-length': '4542', +10786 silly get 'accept-ranges': 'bytes', +10786 silly get date: 'Mon, 02 Oct 2017 09:34:32 GMT', +10786 silly get via: '1.1 varnish', +10786 silly get age: '141', +10786 silly get connection: 'keep-alive', +10786 silly get 'x-served-by': 'cache-sin18030-SIN', +10786 silly get 'x-cache': 'HIT', +10786 silly get 'x-cache-hits': '2', +10786 silly get 'x-timer': 'S1506936872.410161,VS0,VE0', +10786 silly get vary: 'Accept-Encoding, Accept' } ] +10787 verbose get saving babel-plugin-syntax-class-properties to /home/wso2/.npm/registry.npmjs.org/babel-plugin-syntax-class-properties/.cache.json +10788 silly resolveWithNewModule babel-helper-function-name@6.24.1 checking installable status +10789 silly cache add args [ 'babel-helper-function-name@^6.24.1', null ] +10790 verbose cache add spec babel-helper-function-name@^6.24.1 +10791 silly cache add parsed spec Result { +10791 silly cache add raw: 'babel-helper-function-name@^6.24.1', +10791 silly cache add scope: null, +10791 silly cache add name: 'babel-helper-function-name', +10791 silly cache add rawSpec: '^6.24.1', +10791 silly cache add spec: '>=6.24.1 <7.0.0', +10791 silly cache add type: 'range' } +10792 silly addNamed babel-helper-function-name@>=6.24.1 <7.0.0 +10793 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-function-name +10794 silly addNameRange { name: 'babel-helper-function-name', +10794 silly addNameRange range: '>=6.24.1 <7.0.0', +10794 silly addNameRange hasData: false } +10795 silly mapToRegistry name babel-helper-function-name +10796 silly mapToRegistry using default registry +10797 silly mapToRegistry registry https://registry.npmjs.org/ +10798 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-function-name +10799 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-function-name not in flight; fetching +10800 silly resolveWithNewModule babel-plugin-syntax-class-properties@6.13.0 checking installable status +10801 silly cache add args [ 'babel-plugin-syntax-class-properties@^6.8.0', null ] +10802 verbose cache add spec babel-plugin-syntax-class-properties@^6.8.0 +10803 silly cache add parsed spec Result { +10803 silly cache add raw: 'babel-plugin-syntax-class-properties@^6.8.0', +10803 silly cache add scope: null, +10803 silly cache add name: 'babel-plugin-syntax-class-properties', +10803 silly cache add rawSpec: '^6.8.0', +10803 silly cache add spec: '>=6.8.0 <7.0.0', +10803 silly cache add type: 'range' } +10804 silly addNamed babel-plugin-syntax-class-properties@>=6.8.0 <7.0.0 +10805 verbose addNamed ">=6.8.0 <7.0.0" is a valid semver range for babel-plugin-syntax-class-properties +10806 silly addNameRange { name: 'babel-plugin-syntax-class-properties', +10806 silly addNameRange range: '>=6.8.0 <7.0.0', +10806 silly addNameRange hasData: false } +10807 silly mapToRegistry name babel-plugin-syntax-class-properties +10808 silly mapToRegistry using default registry +10809 silly mapToRegistry registry https://registry.npmjs.org/ +10810 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-class-properties +10811 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-syntax-class-properties not in flight; fetching +10812 verbose get https://registry.npmjs.org/babel-helper-function-name not expired, no request +10813 silly addNameRange number 2 { name: 'babel-helper-function-name', +10813 silly addNameRange range: '>=6.24.1 <7.0.0', +10813 silly addNameRange hasData: true } +10814 silly addNameRange versions [ 'babel-helper-function-name', +10814 silly addNameRange [ '6.0.0', +10814 silly addNameRange '6.0.2', +10814 silly addNameRange '6.0.14', +10814 silly addNameRange '6.0.15', +10814 silly addNameRange '6.1.5', +10814 silly addNameRange '6.1.6', +10814 silly addNameRange '6.1.7', +10814 silly addNameRange '6.1.8', +10814 silly addNameRange '6.1.9', +10814 silly addNameRange '6.1.10', +10814 silly addNameRange '6.1.12', +10814 silly addNameRange '6.1.13', +10814 silly addNameRange '6.1.16', +10814 silly addNameRange '6.1.17', +10814 silly addNameRange '6.1.18', +10814 silly addNameRange '6.2.0', +10814 silly addNameRange '6.2.4', +10814 silly addNameRange '6.3.13', +10814 silly addNameRange '6.3.15', +10814 silly addNameRange '6.4.0', +10814 silly addNameRange '6.5.0', +10814 silly addNameRange '6.5.0-1', +10814 silly addNameRange '6.6.0', +10814 silly addNameRange '6.8.0', +10814 silly addNameRange '6.18.0', +10814 silly addNameRange '6.22.0', +10814 silly addNameRange '6.23.0', +10814 silly addNameRange '7.0.0-alpha.1', +10814 silly addNameRange '7.0.0-alpha.3', +10814 silly addNameRange '7.0.0-alpha.7', +10814 silly addNameRange '6.24.1', +10814 silly addNameRange '7.0.0-alpha.8', +10814 silly addNameRange '7.0.0-alpha.9', +10814 silly addNameRange '7.0.0-alpha.10', +10814 silly addNameRange '7.0.0-alpha.11', +10814 silly addNameRange '7.0.0-alpha.12', +10814 silly addNameRange '7.0.0-alpha.14', +10814 silly addNameRange '7.0.0-alpha.15', +10814 silly addNameRange '7.0.0-alpha.16', +10814 silly addNameRange '7.0.0-alpha.17', +10814 silly addNameRange '7.0.0-alpha.18', +10814 silly addNameRange '7.0.0-alpha.19', +10814 silly addNameRange '7.0.0-alpha.20', +10814 silly addNameRange '7.0.0-beta.0', +10814 silly addNameRange '7.0.0-beta.1', +10814 silly addNameRange '7.0.0-beta.2' ] ] +10815 silly addNamed babel-helper-function-name@6.24.1 +10816 verbose addNamed "6.24.1" is a plain semver version for babel-helper-function-name +10817 verbose get https://registry.npmjs.org/babel-plugin-syntax-class-properties not expired, no request +10818 silly addNameRange number 2 { name: 'babel-plugin-syntax-class-properties', +10818 silly addNameRange range: '>=6.8.0 <7.0.0', +10818 silly addNameRange hasData: true } +10819 silly addNameRange versions [ 'babel-plugin-syntax-class-properties', +10819 silly addNameRange [ '6.0.2', +10819 silly addNameRange '6.0.14', +10819 silly addNameRange '6.1.4', +10819 silly addNameRange '6.1.5', +10819 silly addNameRange '6.1.6', +10819 silly addNameRange '6.1.7', +10819 silly addNameRange '6.1.8', +10819 silly addNameRange '6.1.10', +10819 silly addNameRange '6.1.13', +10819 silly addNameRange '6.1.16', +10819 silly addNameRange '6.1.17', +10819 silly addNameRange '6.1.18', +10819 silly addNameRange '6.2.4', +10819 silly addNameRange '6.3.13', +10819 silly addNameRange '6.5.0', +10819 silly addNameRange '6.5.0-1', +10819 silly addNameRange '6.8.0', +10819 silly addNameRange '6.13.0', +10819 silly addNameRange '7.0.0-alpha.1', +10819 silly addNameRange '7.0.0-alpha.3', +10819 silly addNameRange '7.0.0-alpha.9', +10819 silly addNameRange '7.0.0-alpha.12', +10819 silly addNameRange '7.0.0-alpha.13', +10819 silly addNameRange '7.0.0-alpha.14', +10819 silly addNameRange '7.0.0-alpha.15', +10819 silly addNameRange '7.0.0-alpha.16', +10819 silly addNameRange '7.0.0-alpha.17', +10819 silly addNameRange '7.0.0-alpha.18', +10819 silly addNameRange '7.0.0-alpha.19', +10819 silly addNameRange '7.0.0-alpha.20', +10819 silly addNameRange '7.0.0-beta.0', +10819 silly addNameRange '7.0.0-beta.1', +10819 silly addNameRange '7.0.0-beta.2' ] ] +10820 silly addNamed babel-plugin-syntax-class-properties@6.13.0 +10821 verbose addNamed "6.13.0" is a plain semver version for babel-plugin-syntax-class-properties +10822 silly cache afterAdd babel-helper-function-name@6.24.1 +10823 verbose afterAdd /home/wso2/.npm/babel-helper-function-name/6.24.1/package/package.json not in flight; writing +10824 verbose afterAdd /home/wso2/.npm/babel-helper-function-name/6.24.1/package/package.json written +10825 silly cache afterAdd babel-plugin-syntax-class-properties@6.13.0 +10826 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-class-properties/6.13.0/package/package.json not in flight; writing +10827 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-class-properties/6.13.0/package/package.json written +10828 silly fetchNamedPackageData babel-helper-get-function-arity +10829 silly mapToRegistry name babel-helper-get-function-arity +10830 silly mapToRegistry using default registry +10831 silly mapToRegistry registry https://registry.npmjs.org/ +10832 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-get-function-arity +10833 verbose request uri https://registry.npmjs.org/babel-helper-get-function-arity +10834 verbose request no auth needed +10835 info attempt registry request try #1 at 3:04:32 PM +10836 verbose etag W/"59a70c08-afd1" +10837 verbose lastModified Wed, 30 Aug 2017 19:03:36 GMT +10838 http request GET https://registry.npmjs.org/babel-helper-get-function-arity +10839 http 200 https://registry.npmjs.org/babel-helper-get-function-arity +10840 verbose headers { server: 'nginx/1.10.3', +10840 verbose headers 'content-type': 'application/json', +10840 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:20 GMT', +10840 verbose headers etag: 'W/"59ca6f08-bf01"', +10840 verbose headers 'content-encoding': 'gzip', +10840 verbose headers 'cache-control': 'max-age=300', +10840 verbose headers 'content-length': '5278', +10840 verbose headers 'accept-ranges': 'bytes', +10840 verbose headers date: 'Mon, 02 Oct 2017 09:34:32 GMT', +10840 verbose headers via: '1.1 varnish', +10840 verbose headers age: '66', +10840 verbose headers connection: 'keep-alive', +10840 verbose headers 'x-served-by': 'cache-sin18032-SIN', +10840 verbose headers 'x-cache': 'HIT', +10840 verbose headers 'x-cache-hits': '3', +10840 verbose headers 'x-timer': 'S1506936873.881912,VS0,VE0', +10840 verbose headers vary: 'Accept-Encoding, Accept' } +10841 silly get cb [ 200, +10841 silly get { server: 'nginx/1.10.3', +10841 silly get 'content-type': 'application/json', +10841 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:20 GMT', +10841 silly get etag: 'W/"59ca6f08-bf01"', +10841 silly get 'content-encoding': 'gzip', +10841 silly get 'cache-control': 'max-age=300', +10841 silly get 'content-length': '5278', +10841 silly get 'accept-ranges': 'bytes', +10841 silly get date: 'Mon, 02 Oct 2017 09:34:32 GMT', +10841 silly get via: '1.1 varnish', +10841 silly get age: '66', +10841 silly get connection: 'keep-alive', +10841 silly get 'x-served-by': 'cache-sin18032-SIN', +10841 silly get 'x-cache': 'HIT', +10841 silly get 'x-cache-hits': '3', +10841 silly get 'x-timer': 'S1506936873.881912,VS0,VE0', +10841 silly get vary: 'Accept-Encoding, Accept' } ] +10842 verbose get saving babel-helper-get-function-arity to /home/wso2/.npm/registry.npmjs.org/babel-helper-get-function-arity/.cache.json +10843 silly resolveWithNewModule babel-helper-get-function-arity@6.24.1 checking installable status +10844 silly cache add args [ 'babel-helper-get-function-arity@^6.24.1', null ] +10845 verbose cache add spec babel-helper-get-function-arity@^6.24.1 +10846 silly cache add parsed spec Result { +10846 silly cache add raw: 'babel-helper-get-function-arity@^6.24.1', +10846 silly cache add scope: null, +10846 silly cache add name: 'babel-helper-get-function-arity', +10846 silly cache add rawSpec: '^6.24.1', +10846 silly cache add spec: '>=6.24.1 <7.0.0', +10846 silly cache add type: 'range' } +10847 silly addNamed babel-helper-get-function-arity@>=6.24.1 <7.0.0 +10848 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-get-function-arity +10849 silly addNameRange { name: 'babel-helper-get-function-arity', +10849 silly addNameRange range: '>=6.24.1 <7.0.0', +10849 silly addNameRange hasData: false } +10850 silly mapToRegistry name babel-helper-get-function-arity +10851 silly mapToRegistry using default registry +10852 silly mapToRegistry registry https://registry.npmjs.org/ +10853 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-get-function-arity +10854 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-get-function-arity not in flight; fetching +10855 verbose get https://registry.npmjs.org/babel-helper-get-function-arity not expired, no request +10856 silly addNameRange number 2 { name: 'babel-helper-get-function-arity', +10856 silly addNameRange range: '>=6.24.1 <7.0.0', +10856 silly addNameRange hasData: true } +10857 silly addNameRange versions [ 'babel-helper-get-function-arity', +10857 silly addNameRange [ '6.0.0', +10857 silly addNameRange '6.0.2', +10857 silly addNameRange '6.0.14', +10857 silly addNameRange '6.0.15', +10857 silly addNameRange '6.1.5', +10857 silly addNameRange '6.1.6', +10857 silly addNameRange '6.1.7', +10857 silly addNameRange '6.1.8', +10857 silly addNameRange '6.1.9', +10857 silly addNameRange '6.1.10', +10857 silly addNameRange '6.1.12', +10857 silly addNameRange '6.1.13', +10857 silly addNameRange '6.1.16', +10857 silly addNameRange '6.1.17', +10857 silly addNameRange '6.1.18', +10857 silly addNameRange '6.2.0', +10857 silly addNameRange '6.2.4', +10857 silly addNameRange '6.3.13', +10857 silly addNameRange '6.5.0', +10857 silly addNameRange '6.5.0-1', +10857 silly addNameRange '6.6.4', +10857 silly addNameRange '6.6.5', +10857 silly addNameRange '6.8.0', +10857 silly addNameRange '6.18.0', +10857 silly addNameRange '6.22.0', +10857 silly addNameRange '7.0.0-alpha.1', +10857 silly addNameRange '7.0.0-alpha.3', +10857 silly addNameRange '7.0.0-alpha.7', +10857 silly addNameRange '6.24.1', +10857 silly addNameRange '7.0.0-alpha.9', +10857 silly addNameRange '7.0.0-alpha.10', +10857 silly addNameRange '7.0.0-alpha.11', +10857 silly addNameRange '7.0.0-alpha.12', +10857 silly addNameRange '7.0.0-alpha.14', +10857 silly addNameRange '7.0.0-alpha.15', +10857 silly addNameRange '7.0.0-alpha.16', +10857 silly addNameRange '7.0.0-alpha.17', +10857 silly addNameRange '7.0.0-alpha.18', +10857 silly addNameRange '7.0.0-alpha.19', +10857 silly addNameRange '7.0.0-alpha.20', +10857 silly addNameRange '7.0.0-beta.0', +10857 silly addNameRange '7.0.0-beta.1', +10857 silly addNameRange '7.0.0-beta.2' ] ] +10858 silly addNamed babel-helper-get-function-arity@6.24.1 +10859 verbose addNamed "6.24.1" is a plain semver version for babel-helper-get-function-arity +10860 silly cache afterAdd babel-helper-get-function-arity@6.24.1 +10861 verbose afterAdd /home/wso2/.npm/babel-helper-get-function-arity/6.24.1/package/package.json not in flight; writing +10862 verbose afterAdd /home/wso2/.npm/babel-helper-get-function-arity/6.24.1/package/package.json written +10863 silly fetchNamedPackageData babel-plugin-syntax-object-rest-spread +10864 silly mapToRegistry name babel-plugin-syntax-object-rest-spread +10865 silly mapToRegistry using default registry +10866 silly mapToRegistry registry https://registry.npmjs.org/ +10867 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread +10868 verbose request uri https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread +10869 verbose request no auth needed +10870 info attempt registry request try #1 at 3:04:32 PM +10871 verbose etag W/"59a70944-840f" +10872 verbose lastModified Wed, 30 Aug 2017 18:51:48 GMT +10873 http request GET https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread +10874 http 200 https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread +10875 verbose headers { server: 'nginx/1.10.3', +10875 verbose headers 'content-type': 'application/json', +10875 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:56 GMT', +10875 verbose headers etag: 'W/"59ca6ef0-939c"', +10875 verbose headers 'content-encoding': 'gzip', +10875 verbose headers 'cache-control': 'max-age=300', +10875 verbose headers 'content-length': '4326', +10875 verbose headers 'accept-ranges': 'bytes', +10875 verbose headers date: 'Mon, 02 Oct 2017 09:34:33 GMT', +10875 verbose headers via: '1.1 varnish', +10875 verbose headers age: '270', +10875 verbose headers connection: 'keep-alive', +10875 verbose headers 'x-served-by': 'cache-sin18022-SIN', +10875 verbose headers 'x-cache': 'HIT', +10875 verbose headers 'x-cache-hits': '1', +10875 verbose headers 'x-timer': 'S1506936873.098691,VS0,VE1', +10875 verbose headers vary: 'Accept-Encoding, Accept' } +10876 silly get cb [ 200, +10876 silly get { server: 'nginx/1.10.3', +10876 silly get 'content-type': 'application/json', +10876 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:56 GMT', +10876 silly get etag: 'W/"59ca6ef0-939c"', +10876 silly get 'content-encoding': 'gzip', +10876 silly get 'cache-control': 'max-age=300', +10876 silly get 'content-length': '4326', +10876 silly get 'accept-ranges': 'bytes', +10876 silly get date: 'Mon, 02 Oct 2017 09:34:33 GMT', +10876 silly get via: '1.1 varnish', +10876 silly get age: '270', +10876 silly get connection: 'keep-alive', +10876 silly get 'x-served-by': 'cache-sin18022-SIN', +10876 silly get 'x-cache': 'HIT', +10876 silly get 'x-cache-hits': '1', +10876 silly get 'x-timer': 'S1506936873.098691,VS0,VE1', +10876 silly get vary: 'Accept-Encoding, Accept' } ] +10877 verbose get saving babel-plugin-syntax-object-rest-spread to /home/wso2/.npm/registry.npmjs.org/babel-plugin-syntax-object-rest-spread/.cache.json +10878 silly resolveWithNewModule babel-plugin-syntax-object-rest-spread@6.13.0 checking installable status +10879 silly cache add args [ 'babel-plugin-syntax-object-rest-spread@^6.8.0', null ] +10880 verbose cache add spec babel-plugin-syntax-object-rest-spread@^6.8.0 +10881 silly cache add parsed spec Result { +10881 silly cache add raw: 'babel-plugin-syntax-object-rest-spread@^6.8.0', +10881 silly cache add scope: null, +10881 silly cache add name: 'babel-plugin-syntax-object-rest-spread', +10881 silly cache add rawSpec: '^6.8.0', +10881 silly cache add spec: '>=6.8.0 <7.0.0', +10881 silly cache add type: 'range' } +10882 silly addNamed babel-plugin-syntax-object-rest-spread@>=6.8.0 <7.0.0 +10883 verbose addNamed ">=6.8.0 <7.0.0" is a valid semver range for babel-plugin-syntax-object-rest-spread +10884 silly addNameRange { name: 'babel-plugin-syntax-object-rest-spread', +10884 silly addNameRange range: '>=6.8.0 <7.0.0', +10884 silly addNameRange hasData: false } +10885 silly mapToRegistry name babel-plugin-syntax-object-rest-spread +10886 silly mapToRegistry using default registry +10887 silly mapToRegistry registry https://registry.npmjs.org/ +10888 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread +10889 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread not in flight; fetching +10890 verbose get https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread not expired, no request +10891 silly addNameRange number 2 { name: 'babel-plugin-syntax-object-rest-spread', +10891 silly addNameRange range: '>=6.8.0 <7.0.0', +10891 silly addNameRange hasData: true } +10892 silly addNameRange versions [ 'babel-plugin-syntax-object-rest-spread', +10892 silly addNameRange [ '6.0.2', +10892 silly addNameRange '6.0.14', +10892 silly addNameRange '6.1.4', +10892 silly addNameRange '6.1.5', +10892 silly addNameRange '6.1.10', +10892 silly addNameRange '6.1.13', +10892 silly addNameRange '6.1.16', +10892 silly addNameRange '6.1.17', +10892 silly addNameRange '6.1.18', +10892 silly addNameRange '6.2.4', +10892 silly addNameRange '6.3.13', +10892 silly addNameRange '6.5.0', +10892 silly addNameRange '6.5.0-1', +10892 silly addNameRange '6.8.0', +10892 silly addNameRange '6.13.0', +10892 silly addNameRange '7.0.0-alpha.1', +10892 silly addNameRange '7.0.0-alpha.3', +10892 silly addNameRange '7.0.0-alpha.9', +10892 silly addNameRange '7.0.0-alpha.12', +10892 silly addNameRange '7.0.0-alpha.13', +10892 silly addNameRange '7.0.0-alpha.14', +10892 silly addNameRange '7.0.0-alpha.15', +10892 silly addNameRange '7.0.0-alpha.16', +10892 silly addNameRange '7.0.0-alpha.17', +10892 silly addNameRange '7.0.0-alpha.18', +10892 silly addNameRange '7.0.0-alpha.19', +10892 silly addNameRange '7.0.0-alpha.20', +10892 silly addNameRange '7.0.0-beta.0', +10892 silly addNameRange '7.0.0-beta.1', +10892 silly addNameRange '7.0.0-beta.2' ] ] +10893 silly addNamed babel-plugin-syntax-object-rest-spread@6.13.0 +10894 verbose addNamed "6.13.0" is a plain semver version for babel-plugin-syntax-object-rest-spread +10895 silly cache afterAdd babel-plugin-syntax-object-rest-spread@6.13.0 +10896 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-object-rest-spread/6.13.0/package/package.json not in flight; writing +10897 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-object-rest-spread/6.13.0/package/package.json written +10898 silly fetchNamedPackageData babel-helper-builder-react-jsx +10899 silly mapToRegistry name babel-helper-builder-react-jsx +10900 silly mapToRegistry using default registry +10901 silly mapToRegistry registry https://registry.npmjs.org/ +10902 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-builder-react-jsx +10903 silly fetchNamedPackageData babel-plugin-syntax-jsx +10904 silly mapToRegistry name babel-plugin-syntax-jsx +10905 silly mapToRegistry using default registry +10906 silly mapToRegistry registry https://registry.npmjs.org/ +10907 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-jsx +10908 verbose request uri https://registry.npmjs.org/babel-helper-builder-react-jsx +10909 verbose request no auth needed +10910 info attempt registry request try #1 at 3:04:33 PM +10911 verbose etag W/"59a70c08-d826" +10912 verbose lastModified Wed, 30 Aug 2017 19:03:36 GMT +10913 http request GET https://registry.npmjs.org/babel-helper-builder-react-jsx +10914 verbose request uri https://registry.npmjs.org/babel-plugin-syntax-jsx +10915 verbose request no auth needed +10916 info attempt registry request try #1 at 3:04:33 PM +10917 verbose etag W/"59a70944-8076" +10918 verbose lastModified Wed, 30 Aug 2017 18:51:48 GMT +10919 http request GET https://registry.npmjs.org/babel-plugin-syntax-jsx +10920 http 200 https://registry.npmjs.org/babel-plugin-syntax-jsx +10921 verbose headers { server: 'nginx/1.10.3', +10921 verbose headers 'content-type': 'application/json', +10921 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:51 GMT', +10921 verbose headers etag: 'W/"59ca6eeb-8ebe"', +10921 verbose headers 'content-encoding': 'gzip', +10921 verbose headers 'cache-control': 'max-age=300', +10921 verbose headers 'content-length': '4462', +10921 verbose headers 'accept-ranges': 'bytes', +10921 verbose headers date: 'Mon, 02 Oct 2017 09:34:33 GMT', +10921 verbose headers via: '1.1 varnish', +10921 verbose headers age: '121', +10921 verbose headers connection: 'keep-alive', +10921 verbose headers 'x-served-by': 'cache-sin18026-SIN', +10921 verbose headers 'x-cache': 'HIT', +10921 verbose headers 'x-cache-hits': '3', +10921 verbose headers 'x-timer': 'S1506936873.338592,VS0,VE0', +10921 verbose headers vary: 'Accept-Encoding, Accept' } +10922 silly get cb [ 200, +10922 silly get { server: 'nginx/1.10.3', +10922 silly get 'content-type': 'application/json', +10922 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:51 GMT', +10922 silly get etag: 'W/"59ca6eeb-8ebe"', +10922 silly get 'content-encoding': 'gzip', +10922 silly get 'cache-control': 'max-age=300', +10922 silly get 'content-length': '4462', +10922 silly get 'accept-ranges': 'bytes', +10922 silly get date: 'Mon, 02 Oct 2017 09:34:33 GMT', +10922 silly get via: '1.1 varnish', +10922 silly get age: '121', +10922 silly get connection: 'keep-alive', +10922 silly get 'x-served-by': 'cache-sin18026-SIN', +10922 silly get 'x-cache': 'HIT', +10922 silly get 'x-cache-hits': '3', +10922 silly get 'x-timer': 'S1506936873.338592,VS0,VE0', +10922 silly get vary: 'Accept-Encoding, Accept' } ] +10923 verbose get saving babel-plugin-syntax-jsx to /home/wso2/.npm/registry.npmjs.org/babel-plugin-syntax-jsx/.cache.json +10924 silly resolveWithNewModule babel-plugin-syntax-jsx@6.18.0 checking installable status +10925 silly cache add args [ 'babel-plugin-syntax-jsx@^6.8.0', null ] +10926 verbose cache add spec babel-plugin-syntax-jsx@^6.8.0 +10927 silly cache add parsed spec Result { +10927 silly cache add raw: 'babel-plugin-syntax-jsx@^6.8.0', +10927 silly cache add scope: null, +10927 silly cache add name: 'babel-plugin-syntax-jsx', +10927 silly cache add rawSpec: '^6.8.0', +10927 silly cache add spec: '>=6.8.0 <7.0.0', +10927 silly cache add type: 'range' } +10928 silly addNamed babel-plugin-syntax-jsx@>=6.8.0 <7.0.0 +10929 verbose addNamed ">=6.8.0 <7.0.0" is a valid semver range for babel-plugin-syntax-jsx +10930 silly addNameRange { name: 'babel-plugin-syntax-jsx', +10930 silly addNameRange range: '>=6.8.0 <7.0.0', +10930 silly addNameRange hasData: false } +10931 silly mapToRegistry name babel-plugin-syntax-jsx +10932 silly mapToRegistry using default registry +10933 silly mapToRegistry registry https://registry.npmjs.org/ +10934 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-jsx +10935 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-syntax-jsx not in flight; fetching +10936 verbose get https://registry.npmjs.org/babel-plugin-syntax-jsx not expired, no request +10937 silly addNameRange number 2 { name: 'babel-plugin-syntax-jsx', +10937 silly addNameRange range: '>=6.8.0 <7.0.0', +10937 silly addNameRange hasData: true } +10938 silly addNameRange versions [ 'babel-plugin-syntax-jsx', +10938 silly addNameRange [ '6.0.2', +10938 silly addNameRange '6.0.14', +10938 silly addNameRange '6.1.4', +10938 silly addNameRange '6.1.5', +10938 silly addNameRange '6.1.6', +10938 silly addNameRange '6.1.10', +10938 silly addNameRange '6.1.13', +10938 silly addNameRange '6.1.16', +10938 silly addNameRange '6.1.17', +10938 silly addNameRange '6.1.18', +10938 silly addNameRange '6.2.4', +10938 silly addNameRange '6.3.13', +10938 silly addNameRange '6.5.0', +10938 silly addNameRange '6.5.0-1', +10938 silly addNameRange '6.8.0', +10938 silly addNameRange '6.13.0', +10938 silly addNameRange '6.18.0', +10938 silly addNameRange '7.0.0-alpha.1', +10938 silly addNameRange '7.0.0-alpha.3', +10938 silly addNameRange '7.0.0-alpha.9', +10938 silly addNameRange '7.0.0-alpha.12', +10938 silly addNameRange '7.0.0-alpha.13', +10938 silly addNameRange '7.0.0-alpha.14', +10938 silly addNameRange '7.0.0-alpha.15', +10938 silly addNameRange '7.0.0-alpha.16', +10938 silly addNameRange '7.0.0-alpha.17', +10938 silly addNameRange '7.0.0-alpha.18', +10938 silly addNameRange '7.0.0-alpha.19', +10938 silly addNameRange '7.0.0-alpha.20', +10938 silly addNameRange '7.0.0-beta.0', +10938 silly addNameRange '7.0.0-beta.1', +10938 silly addNameRange '7.0.0-beta.2' ] ] +10939 silly addNamed babel-plugin-syntax-jsx@6.18.0 +10940 verbose addNamed "6.18.0" is a plain semver version for babel-plugin-syntax-jsx +10941 silly cache afterAdd babel-plugin-syntax-jsx@6.18.0 +10942 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-jsx/6.18.0/package/package.json not in flight; writing +10943 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-jsx/6.18.0/package/package.json written +10944 http 200 https://registry.npmjs.org/babel-helper-builder-react-jsx +10945 verbose headers { server: 'nginx/1.10.3', +10945 verbose headers 'content-type': 'application/json', +10945 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:20 GMT', +10945 verbose headers etag: 'W/"59ca6f08-e774"', +10945 verbose headers 'content-encoding': 'gzip', +10945 verbose headers 'cache-control': 'max-age=300', +10945 verbose headers 'content-length': '6262', +10945 verbose headers 'accept-ranges': 'bytes', +10945 verbose headers date: 'Mon, 02 Oct 2017 09:34:33 GMT', +10945 verbose headers via: '1.1 varnish', +10945 verbose headers age: '121', +10945 verbose headers connection: 'keep-alive', +10945 verbose headers 'x-served-by': 'cache-sin18022-SIN', +10945 verbose headers 'x-cache': 'HIT', +10945 verbose headers 'x-cache-hits': '1', +10945 verbose headers 'x-timer': 'S1506936873.346752,VS0,VE0', +10945 verbose headers vary: 'Accept-Encoding, Accept' } +10946 silly get cb [ 200, +10946 silly get { server: 'nginx/1.10.3', +10946 silly get 'content-type': 'application/json', +10946 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:20 GMT', +10946 silly get etag: 'W/"59ca6f08-e774"', +10946 silly get 'content-encoding': 'gzip', +10946 silly get 'cache-control': 'max-age=300', +10946 silly get 'content-length': '6262', +10946 silly get 'accept-ranges': 'bytes', +10946 silly get date: 'Mon, 02 Oct 2017 09:34:33 GMT', +10946 silly get via: '1.1 varnish', +10946 silly get age: '121', +10946 silly get connection: 'keep-alive', +10946 silly get 'x-served-by': 'cache-sin18022-SIN', +10946 silly get 'x-cache': 'HIT', +10946 silly get 'x-cache-hits': '1', +10946 silly get 'x-timer': 'S1506936873.346752,VS0,VE0', +10946 silly get vary: 'Accept-Encoding, Accept' } ] +10947 verbose get saving babel-helper-builder-react-jsx to /home/wso2/.npm/registry.npmjs.org/babel-helper-builder-react-jsx/.cache.json +10948 silly resolveWithNewModule babel-helper-builder-react-jsx@6.26.0 checking installable status +10949 silly cache add args [ 'babel-helper-builder-react-jsx@^6.24.1', null ] +10950 verbose cache add spec babel-helper-builder-react-jsx@^6.24.1 +10951 silly cache add parsed spec Result { +10951 silly cache add raw: 'babel-helper-builder-react-jsx@^6.24.1', +10951 silly cache add scope: null, +10951 silly cache add name: 'babel-helper-builder-react-jsx', +10951 silly cache add rawSpec: '^6.24.1', +10951 silly cache add spec: '>=6.24.1 <7.0.0', +10951 silly cache add type: 'range' } +10952 silly addNamed babel-helper-builder-react-jsx@>=6.24.1 <7.0.0 +10953 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-builder-react-jsx +10954 silly addNameRange { name: 'babel-helper-builder-react-jsx', +10954 silly addNameRange range: '>=6.24.1 <7.0.0', +10954 silly addNameRange hasData: false } +10955 silly mapToRegistry name babel-helper-builder-react-jsx +10956 silly mapToRegistry using default registry +10957 silly mapToRegistry registry https://registry.npmjs.org/ +10958 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-builder-react-jsx +10959 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-builder-react-jsx not in flight; fetching +10960 verbose get https://registry.npmjs.org/babel-helper-builder-react-jsx not expired, no request +10961 silly addNameRange number 2 { name: 'babel-helper-builder-react-jsx', +10961 silly addNameRange range: '>=6.24.1 <7.0.0', +10961 silly addNameRange hasData: true } +10962 silly addNameRange versions [ 'babel-helper-builder-react-jsx', +10962 silly addNameRange [ '6.0.0', +10962 silly addNameRange '6.0.2', +10962 silly addNameRange '6.0.14', +10962 silly addNameRange '6.0.15', +10962 silly addNameRange '6.1.5', +10962 silly addNameRange '6.1.6', +10962 silly addNameRange '6.1.7', +10962 silly addNameRange '6.1.8', +10962 silly addNameRange '6.1.9', +10962 silly addNameRange '6.1.10', +10962 silly addNameRange '6.1.11', +10962 silly addNameRange '6.1.12', +10962 silly addNameRange '6.1.13', +10962 silly addNameRange '6.1.16', +10962 silly addNameRange '6.1.17', +10962 silly addNameRange '6.1.18', +10962 silly addNameRange '6.2.0', +10962 silly addNameRange '6.2.4', +10962 silly addNameRange '6.3.13', +10962 silly addNameRange '6.5.0', +10962 silly addNameRange '6.5.0-1', +10962 silly addNameRange '6.6.4', +10962 silly addNameRange '6.6.5', +10962 silly addNameRange '6.7.5', +10962 silly addNameRange '6.8.0', +10962 silly addNameRange '6.9.0', +10962 silly addNameRange '6.18.0', +10962 silly addNameRange '6.21.0', +10962 silly addNameRange '6.21.1', +10962 silly addNameRange '6.22.0', +10962 silly addNameRange '6.23.0', +10962 silly addNameRange '7.0.0-alpha.1', +10962 silly addNameRange '7.0.0-alpha.3', +10962 silly addNameRange '7.0.0-alpha.7', +10962 silly addNameRange '6.24.1', +10962 silly addNameRange '7.0.0-alpha.9', +10962 silly addNameRange '7.0.0-alpha.10', +10962 silly addNameRange '7.0.0-alpha.11', +10962 silly addNameRange '7.0.0-alpha.12', +10962 silly addNameRange '7.0.0-alpha.14', +10962 silly addNameRange '7.0.0-alpha.15', +10962 silly addNameRange '7.0.0-alpha.16', +10962 silly addNameRange '7.0.0-alpha.17', +10962 silly addNameRange '7.0.0-alpha.18', +10962 silly addNameRange '7.0.0-alpha.19', +10962 silly addNameRange '6.26.0', +10962 silly addNameRange '7.0.0-alpha.20', +10962 silly addNameRange '7.0.0-beta.0', +10962 silly addNameRange '7.0.0-beta.1', +10962 silly addNameRange '7.0.0-beta.2' ] ] +10963 silly addNamed babel-helper-builder-react-jsx@6.26.0 +10964 verbose addNamed "6.26.0" is a plain semver version for babel-helper-builder-react-jsx +10965 silly cache afterAdd babel-helper-builder-react-jsx@6.26.0 +10966 verbose afterAdd /home/wso2/.npm/babel-helper-builder-react-jsx/6.26.0/package/package.json not in flight; writing +10967 verbose afterAdd /home/wso2/.npm/babel-helper-builder-react-jsx/6.26.0/package/package.json written +10968 silly fetchNamedPackageData regenerator-transform +10969 silly mapToRegistry name regenerator-transform +10970 silly mapToRegistry using default registry +10971 silly mapToRegistry registry https://registry.npmjs.org/ +10972 silly mapToRegistry uri https://registry.npmjs.org/regenerator-transform +10973 verbose request uri https://registry.npmjs.org/regenerator-transform +10974 verbose request no auth needed +10975 info attempt registry request try #1 at 3:04:33 PM +10976 verbose etag W/"5995fcab-589a" +10977 verbose lastModified Thu, 17 Aug 2017 20:29:31 GMT +10978 http request GET https://registry.npmjs.org/regenerator-transform +10979 http 200 https://registry.npmjs.org/regenerator-transform +10980 verbose headers { server: 'nginx/1.10.3', +10980 verbose headers 'content-type': 'application/json', +10980 verbose headers 'last-modified': 'Mon, 18 Sep 2017 22:03:55 GMT', +10980 verbose headers etag: 'W/"59c042cb-5dda"', +10980 verbose headers 'content-encoding': 'gzip', +10980 verbose headers 'cache-control': 'max-age=300', +10980 verbose headers 'content-length': '3001', +10980 verbose headers 'accept-ranges': 'bytes', +10980 verbose headers date: 'Mon, 02 Oct 2017 09:34:33 GMT', +10980 verbose headers via: '1.1 varnish', +10980 verbose headers age: '110', +10980 verbose headers connection: 'keep-alive', +10980 verbose headers 'x-served-by': 'cache-sin18032-SIN', +10980 verbose headers 'x-cache': 'HIT', +10980 verbose headers 'x-cache-hits': '1', +10980 verbose headers 'x-timer': 'S1506936874.830139,VS0,VE1', +10980 verbose headers vary: 'Accept-Encoding, Accept' } +10981 silly get cb [ 200, +10981 silly get { server: 'nginx/1.10.3', +10981 silly get 'content-type': 'application/json', +10981 silly get 'last-modified': 'Mon, 18 Sep 2017 22:03:55 GMT', +10981 silly get etag: 'W/"59c042cb-5dda"', +10981 silly get 'content-encoding': 'gzip', +10981 silly get 'cache-control': 'max-age=300', +10981 silly get 'content-length': '3001', +10981 silly get 'accept-ranges': 'bytes', +10981 silly get date: 'Mon, 02 Oct 2017 09:34:33 GMT', +10981 silly get via: '1.1 varnish', +10981 silly get age: '110', +10981 silly get connection: 'keep-alive', +10981 silly get 'x-served-by': 'cache-sin18032-SIN', +10981 silly get 'x-cache': 'HIT', +10981 silly get 'x-cache-hits': '1', +10981 silly get 'x-timer': 'S1506936874.830139,VS0,VE1', +10981 silly get vary: 'Accept-Encoding, Accept' } ] +10982 verbose get saving regenerator-transform to /home/wso2/.npm/registry.npmjs.org/regenerator-transform/.cache.json +10983 silly resolveWithNewModule regenerator-transform@0.9.11 checking installable status +10984 silly cache add args [ 'regenerator-transform@0.9.11', null ] +10985 verbose cache add spec regenerator-transform@0.9.11 +10986 silly cache add parsed spec Result { +10986 silly cache add raw: 'regenerator-transform@0.9.11', +10986 silly cache add scope: null, +10986 silly cache add name: 'regenerator-transform', +10986 silly cache add rawSpec: '0.9.11', +10986 silly cache add spec: '0.9.11', +10986 silly cache add type: 'version' } +10987 silly addNamed regenerator-transform@0.9.11 +10988 verbose addNamed "0.9.11" is a plain semver version for regenerator-transform +10989 silly mapToRegistry name regenerator-transform +10990 silly mapToRegistry using default registry +10991 silly mapToRegistry registry https://registry.npmjs.org/ +10992 silly mapToRegistry uri https://registry.npmjs.org/regenerator-transform +10993 verbose addNameVersion registry:https://registry.npmjs.org/regenerator-transform not in flight; fetching +10994 verbose get https://registry.npmjs.org/regenerator-transform not expired, no request +10995 silly cache afterAdd regenerator-transform@0.9.11 +10996 verbose afterAdd /home/wso2/.npm/regenerator-transform/0.9.11/package/package.json not in flight; writing +10997 verbose afterAdd /home/wso2/.npm/regenerator-transform/0.9.11/package/package.json written +10998 silly fetchNamedPackageData babel-plugin-check-es2015-constants +10999 silly mapToRegistry name babel-plugin-check-es2015-constants +11000 silly mapToRegistry using default registry +11001 silly mapToRegistry registry https://registry.npmjs.org/ +11002 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-check-es2015-constants +11003 silly fetchNamedPackageData babel-plugin-syntax-trailing-function-commas +11004 silly mapToRegistry name babel-plugin-syntax-trailing-function-commas +11005 silly mapToRegistry using default registry +11006 silly mapToRegistry registry https://registry.npmjs.org/ +11007 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas +11008 silly fetchNamedPackageData babel-plugin-transform-async-to-generator +11009 silly mapToRegistry name babel-plugin-transform-async-to-generator +11010 silly mapToRegistry using default registry +11011 silly mapToRegistry registry https://registry.npmjs.org/ +11012 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-async-to-generator +11013 silly fetchNamedPackageData babel-plugin-transform-es2015-arrow-functions +11014 silly mapToRegistry name babel-plugin-transform-es2015-arrow-functions +11015 silly mapToRegistry using default registry +11016 silly mapToRegistry registry https://registry.npmjs.org/ +11017 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions +11018 silly fetchNamedPackageData babel-plugin-transform-es2015-block-scoped-functions +11019 silly mapToRegistry name babel-plugin-transform-es2015-block-scoped-functions +11020 silly mapToRegistry using default registry +11021 silly mapToRegistry registry https://registry.npmjs.org/ +11022 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions +11023 silly fetchNamedPackageData babel-plugin-transform-es2015-block-scoping +11024 silly mapToRegistry name babel-plugin-transform-es2015-block-scoping +11025 silly mapToRegistry using default registry +11026 silly mapToRegistry registry https://registry.npmjs.org/ +11027 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping +11028 silly fetchNamedPackageData babel-plugin-transform-es2015-classes +11029 silly mapToRegistry name babel-plugin-transform-es2015-classes +11030 silly mapToRegistry using default registry +11031 silly mapToRegistry registry https://registry.npmjs.org/ +11032 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-classes +11033 silly fetchNamedPackageData babel-plugin-transform-es2015-computed-properties +11034 silly mapToRegistry name babel-plugin-transform-es2015-computed-properties +11035 silly mapToRegistry using default registry +11036 silly mapToRegistry registry https://registry.npmjs.org/ +11037 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties +11038 silly fetchNamedPackageData babel-plugin-transform-es2015-destructuring +11039 silly mapToRegistry name babel-plugin-transform-es2015-destructuring +11040 silly mapToRegistry using default registry +11041 silly mapToRegistry registry https://registry.npmjs.org/ +11042 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring +11043 silly fetchNamedPackageData babel-plugin-transform-es2015-duplicate-keys +11044 silly mapToRegistry name babel-plugin-transform-es2015-duplicate-keys +11045 silly mapToRegistry using default registry +11046 silly mapToRegistry registry https://registry.npmjs.org/ +11047 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys +11048 silly fetchNamedPackageData babel-plugin-transform-es2015-for-of +11049 silly mapToRegistry name babel-plugin-transform-es2015-for-of +11050 silly mapToRegistry using default registry +11051 silly mapToRegistry registry https://registry.npmjs.org/ +11052 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-for-of +11053 silly fetchNamedPackageData babel-plugin-transform-es2015-function-name +11054 silly mapToRegistry name babel-plugin-transform-es2015-function-name +11055 silly mapToRegistry using default registry +11056 silly mapToRegistry registry https://registry.npmjs.org/ +11057 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-function-name +11058 silly fetchNamedPackageData babel-plugin-transform-es2015-literals +11059 silly mapToRegistry name babel-plugin-transform-es2015-literals +11060 silly mapToRegistry using default registry +11061 silly mapToRegistry registry https://registry.npmjs.org/ +11062 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-literals +11063 silly fetchNamedPackageData babel-plugin-transform-es2015-modules-amd +11064 silly mapToRegistry name babel-plugin-transform-es2015-modules-amd +11065 silly mapToRegistry using default registry +11066 silly mapToRegistry registry https://registry.npmjs.org/ +11067 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd +11068 silly fetchNamedPackageData babel-plugin-transform-es2015-modules-commonjs +11069 silly mapToRegistry name babel-plugin-transform-es2015-modules-commonjs +11070 silly mapToRegistry using default registry +11071 silly mapToRegistry registry https://registry.npmjs.org/ +11072 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs +11073 silly fetchNamedPackageData babel-plugin-transform-es2015-modules-systemjs +11074 silly mapToRegistry name babel-plugin-transform-es2015-modules-systemjs +11075 silly mapToRegistry using default registry +11076 silly mapToRegistry registry https://registry.npmjs.org/ +11077 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs +11078 silly fetchNamedPackageData babel-plugin-transform-es2015-modules-umd +11079 silly mapToRegistry name babel-plugin-transform-es2015-modules-umd +11080 silly mapToRegistry using default registry +11081 silly mapToRegistry registry https://registry.npmjs.org/ +11082 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd +11083 silly fetchNamedPackageData babel-plugin-transform-es2015-object-super +11084 silly mapToRegistry name babel-plugin-transform-es2015-object-super +11085 silly mapToRegistry using default registry +11086 silly mapToRegistry registry https://registry.npmjs.org/ +11087 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-object-super +11088 silly fetchNamedPackageData babel-plugin-transform-es2015-parameters +11089 silly mapToRegistry name babel-plugin-transform-es2015-parameters +11090 silly mapToRegistry using default registry +11091 silly mapToRegistry registry https://registry.npmjs.org/ +11092 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-parameters +11093 silly fetchNamedPackageData babel-plugin-transform-es2015-shorthand-properties +11094 silly mapToRegistry name babel-plugin-transform-es2015-shorthand-properties +11095 silly mapToRegistry using default registry +11096 silly mapToRegistry registry https://registry.npmjs.org/ +11097 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties +11098 silly fetchNamedPackageData babel-plugin-transform-es2015-spread +11099 silly mapToRegistry name babel-plugin-transform-es2015-spread +11100 silly mapToRegistry using default registry +11101 silly mapToRegistry registry https://registry.npmjs.org/ +11102 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-spread +11103 silly fetchNamedPackageData babel-plugin-transform-es2015-sticky-regex +11104 silly mapToRegistry name babel-plugin-transform-es2015-sticky-regex +11105 silly mapToRegistry using default registry +11106 silly mapToRegistry registry https://registry.npmjs.org/ +11107 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex +11108 silly fetchNamedPackageData babel-plugin-transform-es2015-template-literals +11109 silly mapToRegistry name babel-plugin-transform-es2015-template-literals +11110 silly mapToRegistry using default registry +11111 silly mapToRegistry registry https://registry.npmjs.org/ +11112 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals +11113 silly fetchNamedPackageData babel-plugin-transform-es2015-typeof-symbol +11114 silly mapToRegistry name babel-plugin-transform-es2015-typeof-symbol +11115 silly mapToRegistry using default registry +11116 silly mapToRegistry registry https://registry.npmjs.org/ +11117 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol +11118 silly fetchNamedPackageData babel-plugin-transform-es2015-unicode-regex +11119 silly mapToRegistry name babel-plugin-transform-es2015-unicode-regex +11120 silly mapToRegistry using default registry +11121 silly mapToRegistry registry https://registry.npmjs.org/ +11122 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex +11123 silly fetchNamedPackageData babel-plugin-transform-exponentiation-operator +11124 silly mapToRegistry name babel-plugin-transform-exponentiation-operator +11125 silly mapToRegistry using default registry +11126 silly mapToRegistry registry https://registry.npmjs.org/ +11127 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator +11128 verbose request uri https://registry.npmjs.org/babel-plugin-check-es2015-constants +11129 verbose request no auth needed +11130 info attempt registry request try #1 at 3:04:33 PM +11131 verbose etag W/"59a70939-b6ec" +11132 verbose lastModified Wed, 30 Aug 2017 18:51:37 GMT +11133 http request GET https://registry.npmjs.org/babel-plugin-check-es2015-constants +11134 verbose request uri https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas +11135 verbose request no auth needed +11136 info attempt registry request try #1 at 3:04:33 PM +11137 verbose etag W/"59a70947-ab99" +11138 verbose lastModified Wed, 30 Aug 2017 18:51:51 GMT +11139 http request GET https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas +11140 verbose request uri https://registry.npmjs.org/babel-plugin-transform-async-to-generator +11141 verbose request no auth needed +11142 info attempt registry request try #1 at 3:04:33 PM +11143 verbose etag W/"59a70c5f-cfe5" +11144 verbose lastModified Wed, 30 Aug 2017 19:05:03 GMT +11145 http request GET https://registry.npmjs.org/babel-plugin-transform-async-to-generator +11146 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions +11147 verbose request no auth needed +11148 info attempt registry request try #1 at 3:04:33 PM +11149 verbose etag W/"59a70949-aa8f" +11150 verbose lastModified Wed, 30 Aug 2017 18:51:53 GMT +11151 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions +11152 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions +11153 verbose request no auth needed +11154 info attempt registry request try #1 at 3:04:33 PM +11155 verbose etag W/"59a7094a-ad40" +11156 verbose lastModified Wed, 30 Aug 2017 18:51:54 GMT +11157 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions +11158 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping +11159 verbose request no auth needed +11160 info attempt registry request try #1 at 3:04:33 PM +11161 verbose etag W/"59a70c46-10f08" +11162 verbose lastModified Wed, 30 Aug 2017 19:04:38 GMT +11163 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping +11164 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-classes +11165 verbose request no auth needed +11166 info attempt registry request try #1 at 3:04:33 PM +11167 verbose etag W/"59a70c5a-12ca8" +11168 verbose lastModified Wed, 30 Aug 2017 19:04:58 GMT +11169 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-classes +11170 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties +11171 verbose request no auth needed +11172 info attempt registry request try #1 at 3:04:33 PM +11173 verbose etag W/"59a70c31-bdcd" +11174 verbose lastModified Wed, 30 Aug 2017 19:04:17 GMT +11175 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties +11176 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring +11177 verbose request no auth needed +11178 info attempt registry request try #1 at 3:04:33 PM +11179 verbose etag W/"59a7094a-cfb5" +11180 verbose lastModified Wed, 30 Aug 2017 18:51:54 GMT +11181 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring +11182 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys +11183 verbose request no auth needed +11184 info attempt registry request try #1 at 3:04:33 PM +11185 verbose etag W/"59a70c13-7a45" +11186 verbose lastModified Wed, 30 Aug 2017 19:03:47 GMT +11187 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys +11188 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-for-of +11189 verbose request no auth needed +11190 info attempt registry request try #1 at 3:04:33 PM +11191 verbose etag W/"59a7094a-a62c" +11192 verbose lastModified Wed, 30 Aug 2017 18:51:54 GMT +11193 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-for-of +11194 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-function-name +11195 verbose request no auth needed +11196 info attempt registry request try #1 at 3:04:33 PM +11197 verbose etag W/"59a70c4e-b6e7" +11198 verbose lastModified Wed, 30 Aug 2017 19:04:46 GMT +11199 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-function-name +11200 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-literals +11201 verbose request no auth needed +11202 info attempt registry request try #1 at 3:04:33 PM +11203 verbose etag W/"59a7094d-9301" +11204 verbose lastModified Wed, 30 Aug 2017 18:51:57 GMT +11205 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-literals +11206 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd +11207 verbose request no auth needed +11208 info attempt registry request try #1 at 3:04:33 PM +11209 verbose etag W/"59a70c38-c291" +11210 verbose lastModified Wed, 30 Aug 2017 19:04:24 GMT +11211 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd +11212 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs +11213 verbose request no auth needed +11214 info attempt registry request try #1 at 3:04:33 PM +11215 verbose etag W/"59a70c34-f35b" +11216 verbose lastModified Wed, 30 Aug 2017 19:04:20 GMT +11217 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs +11218 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-object-super +11219 verbose request no auth needed +11220 info attempt registry request try #1 at 3:04:33 PM +11221 verbose etag W/"59a70c4e-a77a" +11222 verbose lastModified Wed, 30 Aug 2017 19:04:46 GMT +11223 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-object-super +11224 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs +11225 verbose request no auth needed +11226 info attempt registry request try #1 at 3:04:33 PM +11227 verbose etag W/"59a70c32-13a10" +11228 verbose lastModified Wed, 30 Aug 2017 19:04:18 GMT +11229 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs +11230 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties +11231 verbose request no auth needed +11232 info attempt registry request try #1 at 3:04:33 PM +11233 verbose etag W/"59a70c13-a294" +11234 verbose lastModified Wed, 30 Aug 2017 19:03:47 GMT +11235 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties +11236 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-parameters +11237 verbose request no auth needed +11238 info attempt registry request try #1 at 3:04:33 PM +11239 verbose etag W/"59a70c52-11c55" +11240 verbose lastModified Wed, 30 Aug 2017 19:04:50 GMT +11241 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-parameters +11242 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-spread +11243 verbose request no auth needed +11244 info attempt registry request try #1 at 3:04:33 PM +11245 verbose etag W/"59a7094d-9d1e" +11246 verbose lastModified Wed, 30 Aug 2017 18:51:57 GMT +11247 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-spread +11248 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex +11249 verbose request no auth needed +11250 info attempt registry request try #1 at 3:04:33 PM +11251 verbose etag W/"59a70c24-9b7d" +11252 verbose lastModified Wed, 30 Aug 2017 19:04:04 GMT +11253 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex +11254 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals +11255 verbose request no auth needed +11256 info attempt registry request try #1 at 3:04:33 PM +11257 verbose etag W/"59a7094d-a223" +11258 verbose lastModified Wed, 30 Aug 2017 18:51:57 GMT +11259 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals +11260 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol +11261 verbose request no auth needed +11262 info attempt registry request try #1 at 3:04:34 PM +11263 verbose etag W/"59a7094f-b04e" +11264 verbose lastModified Wed, 30 Aug 2017 18:51:59 GMT +11265 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol +11266 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex +11267 verbose request no auth needed +11268 info attempt registry request try #1 at 3:04:34 PM +11269 verbose etag W/"59a70c24-a579" +11270 verbose lastModified Wed, 30 Aug 2017 19:04:04 GMT +11271 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex +11272 verbose request uri https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator +11273 verbose request no auth needed +11274 info attempt registry request try #1 at 3:04:34 PM +11275 verbose etag W/"59a70c5a-a110" +11276 verbose lastModified Wed, 30 Aug 2017 19:04:58 GMT +11277 http request GET https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator +11278 verbose request uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd +11279 verbose request no auth needed +11280 info attempt registry request try #1 at 3:04:34 PM +11281 verbose etag W/"59a70c3a-dcef" +11282 verbose lastModified Wed, 30 Aug 2017 19:04:26 GMT +11283 http request GET https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd +11284 http 200 https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas +11285 verbose headers { server: 'nginx/1.10.3', +11285 verbose headers 'content-type': 'application/json', +11285 verbose headers 'last-modified': 'Tue, 19 Sep 2017 22:52:59 GMT', +11285 verbose headers etag: 'W/"59c19fcb-b13c"', +11285 verbose headers 'content-encoding': 'gzip', +11285 verbose headers 'cache-control': 'max-age=300', +11285 verbose headers 'content-length': '4701', +11285 verbose headers 'accept-ranges': 'bytes', +11285 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11285 verbose headers via: '1.1 varnish', +11285 verbose headers age: '71', +11285 verbose headers connection: 'keep-alive', +11285 verbose headers 'x-served-by': 'cache-sin18031-SIN', +11285 verbose headers 'x-cache': 'HIT', +11285 verbose headers 'x-cache-hits': '1', +11285 verbose headers 'x-timer': 'S1506936874.378371,VS0,VE0', +11285 verbose headers vary: 'Accept-Encoding, Accept' } +11286 silly get cb [ 200, +11286 silly get { server: 'nginx/1.10.3', +11286 silly get 'content-type': 'application/json', +11286 silly get 'last-modified': 'Tue, 19 Sep 2017 22:52:59 GMT', +11286 silly get etag: 'W/"59c19fcb-b13c"', +11286 silly get 'content-encoding': 'gzip', +11286 silly get 'cache-control': 'max-age=300', +11286 silly get 'content-length': '4701', +11286 silly get 'accept-ranges': 'bytes', +11286 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11286 silly get via: '1.1 varnish', +11286 silly get age: '71', +11286 silly get connection: 'keep-alive', +11286 silly get 'x-served-by': 'cache-sin18031-SIN', +11286 silly get 'x-cache': 'HIT', +11286 silly get 'x-cache-hits': '1', +11286 silly get 'x-timer': 'S1506936874.378371,VS0,VE0', +11286 silly get vary: 'Accept-Encoding, Accept' } ] +11287 verbose get saving babel-plugin-syntax-trailing-function-commas to /home/wso2/.npm/registry.npmjs.org/babel-plugin-syntax-trailing-function-commas/.cache.json +11288 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions +11289 verbose headers { server: 'nginx/1.10.3', +11289 verbose headers 'content-type': 'application/json', +11289 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:58 GMT', +11289 verbose headers etag: 'W/"59ca6ef2-bc0b"', +11289 verbose headers 'content-encoding': 'gzip', +11289 verbose headers 'cache-control': 'max-age=300', +11289 verbose headers 'content-length': '5150', +11289 verbose headers 'accept-ranges': 'bytes', +11289 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11289 verbose headers via: '1.1 varnish', +11289 verbose headers age: '4', +11289 verbose headers connection: 'keep-alive', +11289 verbose headers 'x-served-by': 'cache-sin18026-SIN', +11289 verbose headers 'x-cache': 'HIT', +11289 verbose headers 'x-cache-hits': '1', +11289 verbose headers 'x-timer': 'S1506936874.376317,VS0,VE0', +11289 verbose headers vary: 'Accept-Encoding, Accept' } +11290 silly get cb [ 200, +11290 silly get { server: 'nginx/1.10.3', +11290 silly get 'content-type': 'application/json', +11290 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:58 GMT', +11290 silly get etag: 'W/"59ca6ef2-bc0b"', +11290 silly get 'content-encoding': 'gzip', +11290 silly get 'cache-control': 'max-age=300', +11290 silly get 'content-length': '5150', +11290 silly get 'accept-ranges': 'bytes', +11290 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11290 silly get via: '1.1 varnish', +11290 silly get age: '4', +11290 silly get connection: 'keep-alive', +11290 silly get 'x-served-by': 'cache-sin18026-SIN', +11290 silly get 'x-cache': 'HIT', +11290 silly get 'x-cache-hits': '1', +11290 silly get 'x-timer': 'S1506936874.376317,VS0,VE0', +11290 silly get vary: 'Accept-Encoding, Accept' } ] +11291 verbose get saving babel-plugin-transform-es2015-arrow-functions to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/.cache.json +11292 http 200 https://registry.npmjs.org/babel-plugin-check-es2015-constants +11293 verbose headers { server: 'nginx/1.10.3', +11293 verbose headers 'content-type': 'application/json', +11293 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:45 GMT', +11293 verbose headers etag: 'W/"59ca6ee5-c6ec"', +11293 verbose headers 'content-encoding': 'gzip', +11293 verbose headers 'cache-control': 'max-age=300', +11293 verbose headers 'content-length': '5416', +11293 verbose headers 'accept-ranges': 'bytes', +11293 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11293 verbose headers via: '1.1 varnish', +11293 verbose headers age: '111', +11293 verbose headers connection: 'keep-alive', +11293 verbose headers 'x-served-by': 'cache-sin18035-SIN', +11293 verbose headers 'x-cache': 'HIT', +11293 verbose headers 'x-cache-hits': '1', +11293 verbose headers 'x-timer': 'S1506936874.382546,VS0,VE0', +11293 verbose headers vary: 'Accept-Encoding, Accept' } +11294 silly get cb [ 200, +11294 silly get { server: 'nginx/1.10.3', +11294 silly get 'content-type': 'application/json', +11294 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:45 GMT', +11294 silly get etag: 'W/"59ca6ee5-c6ec"', +11294 silly get 'content-encoding': 'gzip', +11294 silly get 'cache-control': 'max-age=300', +11294 silly get 'content-length': '5416', +11294 silly get 'accept-ranges': 'bytes', +11294 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11294 silly get via: '1.1 varnish', +11294 silly get age: '111', +11294 silly get connection: 'keep-alive', +11294 silly get 'x-served-by': 'cache-sin18035-SIN', +11294 silly get 'x-cache': 'HIT', +11294 silly get 'x-cache-hits': '1', +11294 silly get 'x-timer': 'S1506936874.382546,VS0,VE0', +11294 silly get vary: 'Accept-Encoding, Accept' } ] +11295 verbose get saving babel-plugin-check-es2015-constants to /home/wso2/.npm/registry.npmjs.org/babel-plugin-check-es2015-constants/.cache.json +11296 http 200 https://registry.npmjs.org/babel-plugin-transform-async-to-generator +11297 verbose headers { server: 'nginx/1.10.3', +11297 verbose headers 'content-type': 'application/json', +11297 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:28 GMT', +11297 verbose headers etag: 'W/"59ca6f4c-e1ed"', +11297 verbose headers 'content-encoding': 'gzip', +11297 verbose headers 'cache-control': 'max-age=300', +11297 verbose headers 'content-length': '5939', +11297 verbose headers 'accept-ranges': 'bytes', +11297 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11297 verbose headers via: '1.1 varnish', +11297 verbose headers age: '111', +11297 verbose headers connection: 'keep-alive', +11297 verbose headers 'x-served-by': 'cache-sin18022-SIN', +11297 verbose headers 'x-cache': 'HIT', +11297 verbose headers 'x-cache-hits': '1', +11297 verbose headers 'x-timer': 'S1506936874.375727,VS0,VE0', +11297 verbose headers vary: 'Accept-Encoding, Accept' } +11298 silly get cb [ 200, +11298 silly get { server: 'nginx/1.10.3', +11298 silly get 'content-type': 'application/json', +11298 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:28 GMT', +11298 silly get etag: 'W/"59ca6f4c-e1ed"', +11298 silly get 'content-encoding': 'gzip', +11298 silly get 'cache-control': 'max-age=300', +11298 silly get 'content-length': '5939', +11298 silly get 'accept-ranges': 'bytes', +11298 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11298 silly get via: '1.1 varnish', +11298 silly get age: '111', +11298 silly get connection: 'keep-alive', +11298 silly get 'x-served-by': 'cache-sin18022-SIN', +11298 silly get 'x-cache': 'HIT', +11298 silly get 'x-cache-hits': '1', +11298 silly get 'x-timer': 'S1506936874.375727,VS0,VE0', +11298 silly get vary: 'Accept-Encoding, Accept' } ] +11299 verbose get saving babel-plugin-transform-async-to-generator to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-async-to-generator/.cache.json +11300 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties +11301 verbose headers { server: 'nginx/1.10.3', +11301 verbose headers 'content-type': 'application/json', +11301 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:52 GMT', +11301 verbose headers etag: 'W/"59ca6f28-cf78"', +11301 verbose headers 'content-encoding': 'gzip', +11301 verbose headers 'cache-control': 'max-age=300', +11301 verbose headers 'content-length': '5830', +11301 verbose headers 'accept-ranges': 'bytes', +11301 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11301 verbose headers via: '1.1 varnish', +11301 verbose headers age: '4', +11301 verbose headers connection: 'keep-alive', +11301 verbose headers 'x-served-by': 'cache-sin18027-SIN', +11301 verbose headers 'x-cache': 'HIT', +11301 verbose headers 'x-cache-hits': '2', +11301 verbose headers 'x-timer': 'S1506936874.411405,VS0,VE0', +11301 verbose headers vary: 'Accept-Encoding, Accept' } +11302 silly get cb [ 200, +11302 silly get { server: 'nginx/1.10.3', +11302 silly get 'content-type': 'application/json', +11302 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:52 GMT', +11302 silly get etag: 'W/"59ca6f28-cf78"', +11302 silly get 'content-encoding': 'gzip', +11302 silly get 'cache-control': 'max-age=300', +11302 silly get 'content-length': '5830', +11302 silly get 'accept-ranges': 'bytes', +11302 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11302 silly get via: '1.1 varnish', +11302 silly get age: '4', +11302 silly get connection: 'keep-alive', +11302 silly get 'x-served-by': 'cache-sin18027-SIN', +11302 silly get 'x-cache': 'HIT', +11302 silly get 'x-cache-hits': '2', +11302 silly get 'x-timer': 'S1506936874.411405,VS0,VE0', +11302 silly get vary: 'Accept-Encoding, Accept' } ] +11303 verbose get saving babel-plugin-transform-es2015-computed-properties to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/.cache.json +11304 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions +11305 verbose headers { server: 'nginx/1.10.3', +11305 verbose headers 'content-type': 'application/json', +11305 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:58 GMT', +11305 verbose headers etag: 'W/"59ca6ef2-bf03"', +11305 verbose headers 'content-encoding': 'gzip', +11305 verbose headers 'cache-control': 'max-age=300', +11305 verbose headers 'content-length': '4950', +11305 verbose headers 'accept-ranges': 'bytes', +11305 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11305 verbose headers via: '1.1 varnish', +11305 verbose headers age: '4', +11305 verbose headers connection: 'keep-alive', +11305 verbose headers 'x-served-by': 'cache-sin18024-SIN', +11305 verbose headers 'x-cache': 'HIT', +11305 verbose headers 'x-cache-hits': '1', +11305 verbose headers 'x-timer': 'S1506936874.430847,VS0,VE0', +11305 verbose headers vary: 'Accept-Encoding, Accept' } +11306 silly get cb [ 200, +11306 silly get { server: 'nginx/1.10.3', +11306 silly get 'content-type': 'application/json', +11306 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:58 GMT', +11306 silly get etag: 'W/"59ca6ef2-bf03"', +11306 silly get 'content-encoding': 'gzip', +11306 silly get 'cache-control': 'max-age=300', +11306 silly get 'content-length': '4950', +11306 silly get 'accept-ranges': 'bytes', +11306 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11306 silly get via: '1.1 varnish', +11306 silly get age: '4', +11306 silly get connection: 'keep-alive', +11306 silly get 'x-served-by': 'cache-sin18024-SIN', +11306 silly get 'x-cache': 'HIT', +11306 silly get 'x-cache-hits': '1', +11306 silly get 'x-timer': 'S1506936874.430847,VS0,VE0', +11306 silly get vary: 'Accept-Encoding, Accept' } ] +11307 verbose get saving babel-plugin-transform-es2015-block-scoped-functions to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/.cache.json +11308 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping +11309 verbose headers { server: 'nginx/1.10.3', +11309 verbose headers 'content-type': 'application/json', +11309 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:05 GMT', +11309 verbose headers etag: 'W/"59ca6f35-12154"', +11309 verbose headers 'content-encoding': 'gzip', +11309 verbose headers 'cache-control': 'max-age=300', +11309 verbose headers 'content-length': '7287', +11309 verbose headers 'accept-ranges': 'bytes', +11309 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11309 verbose headers via: '1.1 varnish', +11309 verbose headers age: '4', +11309 verbose headers connection: 'keep-alive', +11309 verbose headers 'x-served-by': 'cache-sin18035-SIN', +11309 verbose headers 'x-cache': 'HIT', +11309 verbose headers 'x-cache-hits': '1', +11309 verbose headers 'x-timer': 'S1506936874.406867,VS0,VE0', +11309 verbose headers vary: 'Accept-Encoding, Accept' } +11310 silly get cb [ 200, +11310 silly get { server: 'nginx/1.10.3', +11310 silly get 'content-type': 'application/json', +11310 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:05 GMT', +11310 silly get etag: 'W/"59ca6f35-12154"', +11310 silly get 'content-encoding': 'gzip', +11310 silly get 'cache-control': 'max-age=300', +11310 silly get 'content-length': '7287', +11310 silly get 'accept-ranges': 'bytes', +11310 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11310 silly get via: '1.1 varnish', +11310 silly get age: '4', +11310 silly get connection: 'keep-alive', +11310 silly get 'x-served-by': 'cache-sin18035-SIN', +11310 silly get 'x-cache': 'HIT', +11310 silly get 'x-cache-hits': '1', +11310 silly get 'x-timer': 'S1506936874.406867,VS0,VE0', +11310 silly get vary: 'Accept-Encoding, Accept' } ] +11311 verbose get saving babel-plugin-transform-es2015-block-scoping to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/.cache.json +11312 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-function-name +11313 verbose headers { server: 'nginx/1.10.3', +11313 verbose headers 'content-type': 'application/json', +11313 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:11 GMT', +11313 verbose headers etag: 'W/"59ca6f3b-c8c5"', +11313 verbose headers 'content-encoding': 'gzip', +11313 verbose headers 'cache-control': 'max-age=300', +11313 verbose headers 'content-length': '5313', +11313 verbose headers 'accept-ranges': 'bytes', +11313 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11313 verbose headers via: '1.1 varnish', +11313 verbose headers age: '111', +11313 verbose headers connection: 'keep-alive', +11313 verbose headers 'x-served-by': 'cache-sin18031-SIN', +11313 verbose headers 'x-cache': 'HIT', +11313 verbose headers 'x-cache-hits': '2', +11313 verbose headers 'x-timer': 'S1506936874.466259,VS0,VE0', +11313 verbose headers vary: 'Accept-Encoding, Accept' } +11314 silly get cb [ 200, +11314 silly get { server: 'nginx/1.10.3', +11314 silly get 'content-type': 'application/json', +11314 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:11 GMT', +11314 silly get etag: 'W/"59ca6f3b-c8c5"', +11314 silly get 'content-encoding': 'gzip', +11314 silly get 'cache-control': 'max-age=300', +11314 silly get 'content-length': '5313', +11314 silly get 'accept-ranges': 'bytes', +11314 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11314 silly get via: '1.1 varnish', +11314 silly get age: '111', +11314 silly get connection: 'keep-alive', +11314 silly get 'x-served-by': 'cache-sin18031-SIN', +11314 silly get 'x-cache': 'HIT', +11314 silly get 'x-cache-hits': '2', +11314 silly get 'x-timer': 'S1506936874.466259,VS0,VE0', +11314 silly get vary: 'Accept-Encoding, Accept' } ] +11315 verbose get saving babel-plugin-transform-es2015-function-name to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-function-name/.cache.json +11316 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring +11317 verbose headers { server: 'nginx/1.10.3', +11317 verbose headers 'content-type': 'application/json', +11317 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:00 GMT', +11317 verbose headers etag: 'W/"59ca6ef4-e04e"', +11317 verbose headers 'content-encoding': 'gzip', +11317 verbose headers 'cache-control': 'max-age=300', +11317 verbose headers 'content-length': '5751', +11317 verbose headers 'accept-ranges': 'bytes', +11317 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11317 verbose headers via: '1.1 varnish', +11317 verbose headers age: '3', +11317 verbose headers connection: 'keep-alive', +11317 verbose headers 'x-served-by': 'cache-sin18029-SIN', +11317 verbose headers 'x-cache': 'HIT', +11317 verbose headers 'x-cache-hits': '1', +11317 verbose headers 'x-timer': 'S1506936874.474194,VS0,VE0', +11317 verbose headers vary: 'Accept-Encoding, Accept' } +11318 silly get cb [ 200, +11318 silly get { server: 'nginx/1.10.3', +11318 silly get 'content-type': 'application/json', +11318 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:00 GMT', +11318 silly get etag: 'W/"59ca6ef4-e04e"', +11318 silly get 'content-encoding': 'gzip', +11318 silly get 'cache-control': 'max-age=300', +11318 silly get 'content-length': '5751', +11318 silly get 'accept-ranges': 'bytes', +11318 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11318 silly get via: '1.1 varnish', +11318 silly get age: '3', +11318 silly get connection: 'keep-alive', +11318 silly get 'x-served-by': 'cache-sin18029-SIN', +11318 silly get 'x-cache': 'HIT', +11318 silly get 'x-cache-hits': '1', +11318 silly get 'x-timer': 'S1506936874.474194,VS0,VE0', +11318 silly get vary: 'Accept-Encoding, Accept' } ] +11319 verbose get saving babel-plugin-transform-es2015-destructuring to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-destructuring/.cache.json +11320 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-classes +11321 verbose headers { server: 'nginx/1.10.3', +11321 verbose headers 'content-type': 'application/json', +11321 verbose headers 'last-modified': 'Fri, 29 Sep 2017 08:28:48 GMT', +11321 verbose headers etag: 'W/"59ce0440-140ee"', +11321 verbose headers 'content-encoding': 'gzip', +11321 verbose headers 'cache-control': 'max-age=300', +11321 verbose headers 'content-length': '8419', +11321 verbose headers 'accept-ranges': 'bytes', +11321 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11321 verbose headers via: '1.1 varnish', +11321 verbose headers age: '4', +11321 verbose headers connection: 'keep-alive', +11321 verbose headers 'x-served-by': 'cache-sin18028-SIN', +11321 verbose headers 'x-cache': 'HIT', +11321 verbose headers 'x-cache-hits': '1', +11321 verbose headers 'x-timer': 'S1506936874.418628,VS0,VE0', +11321 verbose headers vary: 'Accept-Encoding, Accept' } +11322 silly get cb [ 200, +11322 silly get { server: 'nginx/1.10.3', +11322 silly get 'content-type': 'application/json', +11322 silly get 'last-modified': 'Fri, 29 Sep 2017 08:28:48 GMT', +11322 silly get etag: 'W/"59ce0440-140ee"', +11322 silly get 'content-encoding': 'gzip', +11322 silly get 'cache-control': 'max-age=300', +11322 silly get 'content-length': '8419', +11322 silly get 'accept-ranges': 'bytes', +11322 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11322 silly get via: '1.1 varnish', +11322 silly get age: '4', +11322 silly get connection: 'keep-alive', +11322 silly get 'x-served-by': 'cache-sin18028-SIN', +11322 silly get 'x-cache': 'HIT', +11322 silly get 'x-cache-hits': '1', +11322 silly get 'x-timer': 'S1506936874.418628,VS0,VE0', +11322 silly get vary: 'Accept-Encoding, Accept' } ] +11323 verbose get saving babel-plugin-transform-es2015-classes to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-classes/.cache.json +11324 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys +11325 verbose headers { server: 'nginx/1.10.3', +11325 verbose headers 'content-type': 'application/json', +11325 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:23 GMT', +11325 verbose headers etag: 'W/"59ca6f0b-8bb8"', +11325 verbose headers 'content-encoding': 'gzip', +11325 verbose headers 'cache-control': 'max-age=300', +11325 verbose headers 'content-length': '4489', +11325 verbose headers 'accept-ranges': 'bytes', +11325 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11325 verbose headers via: '1.1 varnish', +11325 verbose headers age: '269', +11325 verbose headers connection: 'keep-alive', +11325 verbose headers 'x-served-by': 'cache-sin18026-SIN', +11325 verbose headers 'x-cache': 'HIT', +11325 verbose headers 'x-cache-hits': '3', +11325 verbose headers 'x-timer': 'S1506936874.498113,VS0,VE0', +11325 verbose headers vary: 'Accept-Encoding, Accept' } +11326 silly get cb [ 200, +11326 silly get { server: 'nginx/1.10.3', +11326 silly get 'content-type': 'application/json', +11326 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:23 GMT', +11326 silly get etag: 'W/"59ca6f0b-8bb8"', +11326 silly get 'content-encoding': 'gzip', +11326 silly get 'cache-control': 'max-age=300', +11326 silly get 'content-length': '4489', +11326 silly get 'accept-ranges': 'bytes', +11326 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11326 silly get via: '1.1 varnish', +11326 silly get age: '269', +11326 silly get connection: 'keep-alive', +11326 silly get 'x-served-by': 'cache-sin18026-SIN', +11326 silly get 'x-cache': 'HIT', +11326 silly get 'x-cache-hits': '3', +11326 silly get 'x-timer': 'S1506936874.498113,VS0,VE0', +11326 silly get vary: 'Accept-Encoding, Accept' } ] +11327 verbose get saving babel-plugin-transform-es2015-duplicate-keys to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/.cache.json +11328 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-for-of +11329 verbose headers { server: 'nginx/1.10.3', +11329 verbose headers 'content-type': 'application/json', +11329 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:00 GMT', +11329 verbose headers etag: 'W/"59ca6ef4-b639"', +11329 verbose headers 'content-encoding': 'gzip', +11329 verbose headers 'cache-control': 'max-age=300', +11329 verbose headers 'content-length': '5135', +11329 verbose headers 'accept-ranges': 'bytes', +11329 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11329 verbose headers via: '1.1 varnish', +11329 verbose headers age: '4', +11329 verbose headers connection: 'keep-alive', +11329 verbose headers 'x-served-by': 'cache-sin18027-SIN', +11329 verbose headers 'x-cache': 'HIT', +11329 verbose headers 'x-cache-hits': '1', +11329 verbose headers 'x-timer': 'S1506936874.497647,VS0,VE1', +11329 verbose headers vary: 'Accept-Encoding, Accept' } +11330 silly get cb [ 200, +11330 silly get { server: 'nginx/1.10.3', +11330 silly get 'content-type': 'application/json', +11330 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:00 GMT', +11330 silly get etag: 'W/"59ca6ef4-b639"', +11330 silly get 'content-encoding': 'gzip', +11330 silly get 'cache-control': 'max-age=300', +11330 silly get 'content-length': '5135', +11330 silly get 'accept-ranges': 'bytes', +11330 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11330 silly get via: '1.1 varnish', +11330 silly get age: '4', +11330 silly get connection: 'keep-alive', +11330 silly get 'x-served-by': 'cache-sin18027-SIN', +11330 silly get 'x-cache': 'HIT', +11330 silly get 'x-cache-hits': '1', +11330 silly get 'x-timer': 'S1506936874.497647,VS0,VE1', +11330 silly get vary: 'Accept-Encoding, Accept' } ] +11331 verbose get saving babel-plugin-transform-es2015-for-of to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-for-of/.cache.json +11332 silly resolveWithNewModule babel-plugin-syntax-trailing-function-commas@6.22.0 checking installable status +11333 silly cache add args [ 'babel-plugin-syntax-trailing-function-commas@^6.22.0', null ] +11334 verbose cache add spec babel-plugin-syntax-trailing-function-commas@^6.22.0 +11335 silly cache add parsed spec Result { +11335 silly cache add raw: 'babel-plugin-syntax-trailing-function-commas@^6.22.0', +11335 silly cache add scope: null, +11335 silly cache add name: 'babel-plugin-syntax-trailing-function-commas', +11335 silly cache add rawSpec: '^6.22.0', +11335 silly cache add spec: '>=6.22.0 <7.0.0', +11335 silly cache add type: 'range' } +11336 silly addNamed babel-plugin-syntax-trailing-function-commas@>=6.22.0 <7.0.0 +11337 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-syntax-trailing-function-commas +11338 silly addNameRange { name: 'babel-plugin-syntax-trailing-function-commas', +11338 silly addNameRange range: '>=6.22.0 <7.0.0', +11338 silly addNameRange hasData: false } +11339 silly mapToRegistry name babel-plugin-syntax-trailing-function-commas +11340 silly mapToRegistry using default registry +11341 silly mapToRegistry registry https://registry.npmjs.org/ +11342 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas +11343 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas not in flight; fetching +11344 silly resolveWithNewModule babel-plugin-transform-es2015-arrow-functions@6.22.0 checking installable status +11345 silly cache add args [ 'babel-plugin-transform-es2015-arrow-functions@^6.22.0', +11345 silly cache add null ] +11346 verbose cache add spec babel-plugin-transform-es2015-arrow-functions@^6.22.0 +11347 silly cache add parsed spec Result { +11347 silly cache add raw: 'babel-plugin-transform-es2015-arrow-functions@^6.22.0', +11347 silly cache add scope: null, +11347 silly cache add name: 'babel-plugin-transform-es2015-arrow-functions', +11347 silly cache add rawSpec: '^6.22.0', +11347 silly cache add spec: '>=6.22.0 <7.0.0', +11347 silly cache add type: 'range' } +11348 silly addNamed babel-plugin-transform-es2015-arrow-functions@>=6.22.0 <7.0.0 +11349 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-arrow-functions +11350 silly addNameRange { name: 'babel-plugin-transform-es2015-arrow-functions', +11350 silly addNameRange range: '>=6.22.0 <7.0.0', +11350 silly addNameRange hasData: false } +11351 silly mapToRegistry name babel-plugin-transform-es2015-arrow-functions +11352 silly mapToRegistry using default registry +11353 silly mapToRegistry registry https://registry.npmjs.org/ +11354 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions +11355 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions not in flight; fetching +11356 silly resolveWithNewModule babel-plugin-check-es2015-constants@6.22.0 checking installable status +11357 silly cache add args [ 'babel-plugin-check-es2015-constants@^6.22.0', null ] +11358 verbose cache add spec babel-plugin-check-es2015-constants@^6.22.0 +11359 silly cache add parsed spec Result { +11359 silly cache add raw: 'babel-plugin-check-es2015-constants@^6.22.0', +11359 silly cache add scope: null, +11359 silly cache add name: 'babel-plugin-check-es2015-constants', +11359 silly cache add rawSpec: '^6.22.0', +11359 silly cache add spec: '>=6.22.0 <7.0.0', +11359 silly cache add type: 'range' } +11360 silly addNamed babel-plugin-check-es2015-constants@>=6.22.0 <7.0.0 +11361 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-check-es2015-constants +11362 silly addNameRange { name: 'babel-plugin-check-es2015-constants', +11362 silly addNameRange range: '>=6.22.0 <7.0.0', +11362 silly addNameRange hasData: false } +11363 silly mapToRegistry name babel-plugin-check-es2015-constants +11364 silly mapToRegistry using default registry +11365 silly mapToRegistry registry https://registry.npmjs.org/ +11366 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-check-es2015-constants +11367 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-check-es2015-constants not in flight; fetching +11368 silly resolveWithNewModule babel-plugin-transform-async-to-generator@6.24.1 checking installable status +11369 silly cache add args [ 'babel-plugin-transform-async-to-generator@^6.22.0', null ] +11370 verbose cache add spec babel-plugin-transform-async-to-generator@^6.22.0 +11371 silly cache add parsed spec Result { +11371 silly cache add raw: 'babel-plugin-transform-async-to-generator@^6.22.0', +11371 silly cache add scope: null, +11371 silly cache add name: 'babel-plugin-transform-async-to-generator', +11371 silly cache add rawSpec: '^6.22.0', +11371 silly cache add spec: '>=6.22.0 <7.0.0', +11371 silly cache add type: 'range' } +11372 silly addNamed babel-plugin-transform-async-to-generator@>=6.22.0 <7.0.0 +11373 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-async-to-generator +11374 silly addNameRange { name: 'babel-plugin-transform-async-to-generator', +11374 silly addNameRange range: '>=6.22.0 <7.0.0', +11374 silly addNameRange hasData: false } +11375 silly mapToRegistry name babel-plugin-transform-async-to-generator +11376 silly mapToRegistry using default registry +11377 silly mapToRegistry registry https://registry.npmjs.org/ +11378 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-async-to-generator +11379 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-async-to-generator not in flight; fetching +11380 silly resolveWithNewModule babel-plugin-transform-es2015-block-scoped-functions@6.22.0 checking installable status +11381 silly cache add args [ 'babel-plugin-transform-es2015-block-scoped-functions@^6.22.0', +11381 silly cache add null ] +11382 verbose cache add spec babel-plugin-transform-es2015-block-scoped-functions@^6.22.0 +11383 silly cache add parsed spec Result { +11383 silly cache add raw: 'babel-plugin-transform-es2015-block-scoped-functions@^6.22.0', +11383 silly cache add scope: null, +11383 silly cache add name: 'babel-plugin-transform-es2015-block-scoped-functions', +11383 silly cache add rawSpec: '^6.22.0', +11383 silly cache add spec: '>=6.22.0 <7.0.0', +11383 silly cache add type: 'range' } +11384 silly addNamed babel-plugin-transform-es2015-block-scoped-functions@>=6.22.0 <7.0.0 +11385 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-block-scoped-functions +11386 silly addNameRange { name: 'babel-plugin-transform-es2015-block-scoped-functions', +11386 silly addNameRange range: '>=6.22.0 <7.0.0', +11386 silly addNameRange hasData: false } +11387 silly mapToRegistry name babel-plugin-transform-es2015-block-scoped-functions +11388 silly mapToRegistry using default registry +11389 silly mapToRegistry registry https://registry.npmjs.org/ +11390 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions +11391 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions not in flight; fetching +11392 silly resolveWithNewModule babel-plugin-transform-es2015-computed-properties@6.24.1 checking installable status +11393 silly cache add args [ 'babel-plugin-transform-es2015-computed-properties@^6.22.0', +11393 silly cache add null ] +11394 verbose cache add spec babel-plugin-transform-es2015-computed-properties@^6.22.0 +11395 silly cache add parsed spec Result { +11395 silly cache add raw: 'babel-plugin-transform-es2015-computed-properties@^6.22.0', +11395 silly cache add scope: null, +11395 silly cache add name: 'babel-plugin-transform-es2015-computed-properties', +11395 silly cache add rawSpec: '^6.22.0', +11395 silly cache add spec: '>=6.22.0 <7.0.0', +11395 silly cache add type: 'range' } +11396 silly addNamed babel-plugin-transform-es2015-computed-properties@>=6.22.0 <7.0.0 +11397 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-computed-properties +11398 silly addNameRange { name: 'babel-plugin-transform-es2015-computed-properties', +11398 silly addNameRange range: '>=6.22.0 <7.0.0', +11398 silly addNameRange hasData: false } +11399 silly mapToRegistry name babel-plugin-transform-es2015-computed-properties +11400 silly mapToRegistry using default registry +11401 silly mapToRegistry registry https://registry.npmjs.org/ +11402 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties +11403 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties not in flight; fetching +11404 silly resolveWithNewModule babel-plugin-transform-es2015-function-name@6.24.1 checking installable status +11405 silly cache add args [ 'babel-plugin-transform-es2015-function-name@^6.22.0', null ] +11406 verbose cache add spec babel-plugin-transform-es2015-function-name@^6.22.0 +11407 silly cache add parsed spec Result { +11407 silly cache add raw: 'babel-plugin-transform-es2015-function-name@^6.22.0', +11407 silly cache add scope: null, +11407 silly cache add name: 'babel-plugin-transform-es2015-function-name', +11407 silly cache add rawSpec: '^6.22.0', +11407 silly cache add spec: '>=6.22.0 <7.0.0', +11407 silly cache add type: 'range' } +11408 silly addNamed babel-plugin-transform-es2015-function-name@>=6.22.0 <7.0.0 +11409 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-function-name +11410 silly addNameRange { name: 'babel-plugin-transform-es2015-function-name', +11410 silly addNameRange range: '>=6.22.0 <7.0.0', +11410 silly addNameRange hasData: false } +11411 silly mapToRegistry name babel-plugin-transform-es2015-function-name +11412 silly mapToRegistry using default registry +11413 silly mapToRegistry registry https://registry.npmjs.org/ +11414 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-function-name +11415 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-function-name not in flight; fetching +11416 silly resolveWithNewModule babel-plugin-transform-es2015-block-scoping@6.26.0 checking installable status +11417 silly cache add args [ 'babel-plugin-transform-es2015-block-scoping@^6.23.0', null ] +11418 verbose cache add spec babel-plugin-transform-es2015-block-scoping@^6.23.0 +11419 silly cache add parsed spec Result { +11419 silly cache add raw: 'babel-plugin-transform-es2015-block-scoping@^6.23.0', +11419 silly cache add scope: null, +11419 silly cache add name: 'babel-plugin-transform-es2015-block-scoping', +11419 silly cache add rawSpec: '^6.23.0', +11419 silly cache add spec: '>=6.23.0 <7.0.0', +11419 silly cache add type: 'range' } +11420 silly addNamed babel-plugin-transform-es2015-block-scoping@>=6.23.0 <7.0.0 +11421 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-block-scoping +11422 silly addNameRange { name: 'babel-plugin-transform-es2015-block-scoping', +11422 silly addNameRange range: '>=6.23.0 <7.0.0', +11422 silly addNameRange hasData: false } +11423 silly mapToRegistry name babel-plugin-transform-es2015-block-scoping +11424 silly mapToRegistry using default registry +11425 silly mapToRegistry registry https://registry.npmjs.org/ +11426 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping +11427 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping not in flight; fetching +11428 silly resolveWithNewModule babel-plugin-transform-es2015-destructuring@6.23.0 checking installable status +11429 silly cache add args [ 'babel-plugin-transform-es2015-destructuring@^6.23.0', null ] +11430 verbose cache add spec babel-plugin-transform-es2015-destructuring@^6.23.0 +11431 silly cache add parsed spec Result { +11431 silly cache add raw: 'babel-plugin-transform-es2015-destructuring@^6.23.0', +11431 silly cache add scope: null, +11431 silly cache add name: 'babel-plugin-transform-es2015-destructuring', +11431 silly cache add rawSpec: '^6.23.0', +11431 silly cache add spec: '>=6.23.0 <7.0.0', +11431 silly cache add type: 'range' } +11432 silly addNamed babel-plugin-transform-es2015-destructuring@>=6.23.0 <7.0.0 +11433 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-destructuring +11434 silly addNameRange { name: 'babel-plugin-transform-es2015-destructuring', +11434 silly addNameRange range: '>=6.23.0 <7.0.0', +11434 silly addNameRange hasData: false } +11435 silly mapToRegistry name babel-plugin-transform-es2015-destructuring +11436 silly mapToRegistry using default registry +11437 silly mapToRegistry registry https://registry.npmjs.org/ +11438 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring +11439 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring not in flight; fetching +11440 silly resolveWithNewModule babel-plugin-transform-es2015-classes@6.24.1 checking installable status +11441 silly cache add args [ 'babel-plugin-transform-es2015-classes@^6.23.0', null ] +11442 verbose cache add spec babel-plugin-transform-es2015-classes@^6.23.0 +11443 silly cache add parsed spec Result { +11443 silly cache add raw: 'babel-plugin-transform-es2015-classes@^6.23.0', +11443 silly cache add scope: null, +11443 silly cache add name: 'babel-plugin-transform-es2015-classes', +11443 silly cache add rawSpec: '^6.23.0', +11443 silly cache add spec: '>=6.23.0 <7.0.0', +11443 silly cache add type: 'range' } +11444 silly addNamed babel-plugin-transform-es2015-classes@>=6.23.0 <7.0.0 +11445 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-classes +11446 silly addNameRange { name: 'babel-plugin-transform-es2015-classes', +11446 silly addNameRange range: '>=6.23.0 <7.0.0', +11446 silly addNameRange hasData: false } +11447 silly mapToRegistry name babel-plugin-transform-es2015-classes +11448 silly mapToRegistry using default registry +11449 silly mapToRegistry registry https://registry.npmjs.org/ +11450 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-classes +11451 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-classes not in flight; fetching +11452 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-literals +11453 verbose headers { server: 'nginx/1.10.3', +11453 verbose headers 'content-type': 'application/json', +11453 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:01 GMT', +11453 verbose headers etag: 'W/"59ca6ef5-a381"', +11453 verbose headers 'content-encoding': 'gzip', +11453 verbose headers 'cache-control': 'max-age=300', +11453 verbose headers 'content-length': '4709', +11453 verbose headers 'accept-ranges': 'bytes', +11453 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11453 verbose headers via: '1.1 varnish', +11453 verbose headers age: '4', +11453 verbose headers connection: 'keep-alive', +11453 verbose headers 'x-served-by': 'cache-sin18023-SIN', +11453 verbose headers 'x-cache': 'HIT', +11453 verbose headers 'x-cache-hits': '1', +11453 verbose headers 'x-timer': 'S1506936875.522080,VS0,VE0', +11453 verbose headers vary: 'Accept-Encoding, Accept' } +11454 silly get cb [ 200, +11454 silly get { server: 'nginx/1.10.3', +11454 silly get 'content-type': 'application/json', +11454 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:01 GMT', +11454 silly get etag: 'W/"59ca6ef5-a381"', +11454 silly get 'content-encoding': 'gzip', +11454 silly get 'cache-control': 'max-age=300', +11454 silly get 'content-length': '4709', +11454 silly get 'accept-ranges': 'bytes', +11454 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11454 silly get via: '1.1 varnish', +11454 silly get age: '4', +11454 silly get connection: 'keep-alive', +11454 silly get 'x-served-by': 'cache-sin18023-SIN', +11454 silly get 'x-cache': 'HIT', +11454 silly get 'x-cache-hits': '1', +11454 silly get 'x-timer': 'S1506936875.522080,VS0,VE0', +11454 silly get vary: 'Accept-Encoding, Accept' } ] +11455 verbose get saving babel-plugin-transform-es2015-literals to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-literals/.cache.json +11456 verbose get https://registry.npmjs.org/babel-plugin-syntax-trailing-function-commas not expired, no request +11457 silly addNameRange number 2 { name: 'babel-plugin-syntax-trailing-function-commas', +11457 silly addNameRange range: '>=6.22.0 <7.0.0', +11457 silly addNameRange hasData: true } +11458 silly addNameRange versions [ 'babel-plugin-syntax-trailing-function-commas', +11458 silly addNameRange [ '6.0.2', +11458 silly addNameRange '6.0.14', +11458 silly addNameRange '6.1.4', +11458 silly addNameRange '6.1.5', +11458 silly addNameRange '6.1.10', +11458 silly addNameRange '6.1.13', +11458 silly addNameRange '6.1.16', +11458 silly addNameRange '6.1.17', +11458 silly addNameRange '6.1.18', +11458 silly addNameRange '6.2.4', +11458 silly addNameRange '6.3.13', +11458 silly addNameRange '6.5.0', +11458 silly addNameRange '6.5.0-1', +11458 silly addNameRange '6.8.0', +11458 silly addNameRange '6.13.0', +11458 silly addNameRange '6.20.0', +11458 silly addNameRange '6.22.0', +11458 silly addNameRange '7.0.0-alpha.1', +11458 silly addNameRange '7.0.0-alpha.3', +11458 silly addNameRange '7.0.0-alpha.7', +11458 silly addNameRange '7.0.0-alpha.8', +11458 silly addNameRange '7.0.0-alpha.9', +11458 silly addNameRange '7.0.0-alpha.10', +11458 silly addNameRange '7.0.0-alpha.11', +11458 silly addNameRange '7.0.0-alpha.12', +11458 silly addNameRange '7.0.0-alpha.13', +11458 silly addNameRange '7.0.0-alpha.14', +11458 silly addNameRange '7.0.0-alpha.15', +11458 silly addNameRange '7.0.0-alpha.16', +11458 silly addNameRange '7.0.0-alpha.17', +11458 silly addNameRange '7.0.0-alpha.18', +11458 silly addNameRange '7.0.0-alpha.19', +11458 silly addNameRange '7.0.0-alpha.20', +11458 silly addNameRange '7.0.0-beta.0' ] ] +11459 silly addNamed babel-plugin-syntax-trailing-function-commas@6.22.0 +11460 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-syntax-trailing-function-commas +11461 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions not expired, no request +11462 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-arrow-functions', +11462 silly addNameRange range: '>=6.22.0 <7.0.0', +11462 silly addNameRange hasData: true } +11463 silly addNameRange versions [ 'babel-plugin-transform-es2015-arrow-functions', +11463 silly addNameRange [ '6.0.2', +11463 silly addNameRange '6.0.14', +11463 silly addNameRange '6.1.4', +11463 silly addNameRange '6.1.5', +11463 silly addNameRange '6.1.10', +11463 silly addNameRange '6.1.17', +11463 silly addNameRange '6.1.18', +11463 silly addNameRange '6.2.4', +11463 silly addNameRange '6.3.13', +11463 silly addNameRange '6.4.0', +11463 silly addNameRange '6.5.0', +11463 silly addNameRange '6.5.0-1', +11463 silly addNameRange '6.5.2', +11463 silly addNameRange '6.7.7', +11463 silly addNameRange '6.8.0', +11463 silly addNameRange '6.22.0', +11463 silly addNameRange '7.0.0-alpha.1', +11463 silly addNameRange '7.0.0-alpha.3', +11463 silly addNameRange '7.0.0-alpha.7', +11463 silly addNameRange '7.0.0-alpha.8', +11463 silly addNameRange '7.0.0-alpha.9', +11463 silly addNameRange '7.0.0-alpha.10', +11463 silly addNameRange '7.0.0-alpha.11', +11463 silly addNameRange '7.0.0-alpha.12', +11463 silly addNameRange '7.0.0-alpha.13', +11463 silly addNameRange '7.0.0-alpha.14', +11463 silly addNameRange '7.0.0-alpha.15', +11463 silly addNameRange '7.0.0-alpha.16', +11463 silly addNameRange '7.0.0-alpha.17', +11463 silly addNameRange '7.0.0-alpha.18', +11463 silly addNameRange '7.0.0-alpha.19', +11463 silly addNameRange '7.0.0-alpha.20', +11463 silly addNameRange '7.0.0-beta.0', +11463 silly addNameRange '7.0.0-beta.1', +11463 silly addNameRange '7.0.0-beta.2' ] ] +11464 silly addNamed babel-plugin-transform-es2015-arrow-functions@6.22.0 +11465 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-transform-es2015-arrow-functions +11466 verbose get https://registry.npmjs.org/babel-plugin-check-es2015-constants not expired, no request +11467 silly addNameRange number 2 { name: 'babel-plugin-check-es2015-constants', +11467 silly addNameRange range: '>=6.22.0 <7.0.0', +11467 silly addNameRange hasData: true } +11468 silly addNameRange versions [ 'babel-plugin-check-es2015-constants', +11468 silly addNameRange [ '6.1.5', +11468 silly addNameRange '6.1.6', +11468 silly addNameRange '6.1.7', +11468 silly addNameRange '6.1.8', +11468 silly addNameRange '6.1.9', +11468 silly addNameRange '6.1.10', +11468 silly addNameRange '6.1.12', +11468 silly addNameRange '6.1.13', +11468 silly addNameRange '6.1.16', +11468 silly addNameRange '6.1.17', +11468 silly addNameRange '6.1.18', +11468 silly addNameRange '6.2.0', +11468 silly addNameRange '6.2.4', +11468 silly addNameRange '6.3.13', +11468 silly addNameRange '6.5.0', +11468 silly addNameRange '6.5.0-1', +11468 silly addNameRange '6.6.4', +11468 silly addNameRange '6.6.5', +11468 silly addNameRange '6.7.2', +11468 silly addNameRange '6.8.0', +11468 silly addNameRange '6.22.0', +11468 silly addNameRange '7.0.0-alpha.1', +11468 silly addNameRange '7.0.0-alpha.3', +11468 silly addNameRange '7.0.0-alpha.7', +11468 silly addNameRange '7.0.0-alpha.8', +11468 silly addNameRange '7.0.0-alpha.9', +11468 silly addNameRange '7.0.0-alpha.10', +11468 silly addNameRange '7.0.0-alpha.11', +11468 silly addNameRange '7.0.0-alpha.12', +11468 silly addNameRange '7.0.0-alpha.13', +11468 silly addNameRange '7.0.0-alpha.14', +11468 silly addNameRange '7.0.0-alpha.15', +11468 silly addNameRange '7.0.0-alpha.16', +11468 silly addNameRange '7.0.0-alpha.17', +11468 silly addNameRange '7.0.0-alpha.18', +11468 silly addNameRange '7.0.0-alpha.19', +11468 silly addNameRange '7.0.0-alpha.20', +11468 silly addNameRange '7.0.0-beta.0', +11468 silly addNameRange '7.0.0-beta.1', +11468 silly addNameRange '7.0.0-beta.2' ] ] +11469 silly addNamed babel-plugin-check-es2015-constants@6.22.0 +11470 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-check-es2015-constants +11471 verbose get https://registry.npmjs.org/babel-plugin-transform-async-to-generator not expired, no request +11472 silly addNameRange number 2 { name: 'babel-plugin-transform-async-to-generator', +11472 silly addNameRange range: '>=6.22.0 <7.0.0', +11472 silly addNameRange hasData: true } +11473 silly addNameRange versions [ 'babel-plugin-transform-async-to-generator', +11473 silly addNameRange [ '6.0.2', +11473 silly addNameRange '6.0.14', +11473 silly addNameRange '6.1.4', +11473 silly addNameRange '6.1.5', +11473 silly addNameRange '6.1.10', +11473 silly addNameRange '6.1.13', +11473 silly addNameRange '6.1.17', +11473 silly addNameRange '6.1.18', +11473 silly addNameRange '6.2.4', +11473 silly addNameRange '6.3.0', +11473 silly addNameRange '6.3.13', +11473 silly addNameRange '6.4.0', +11473 silly addNameRange '6.4.5', +11473 silly addNameRange '6.4.6', +11473 silly addNameRange '6.5.0', +11473 silly addNameRange '6.5.0-1', +11473 silly addNameRange '6.7.0', +11473 silly addNameRange '6.7.4', +11473 silly addNameRange '6.8.0', +11473 silly addNameRange '6.16.0', +11473 silly addNameRange '6.22.0', +11473 silly addNameRange '7.0.0-alpha.1', +11473 silly addNameRange '7.0.0-alpha.3', +11473 silly addNameRange '7.0.0-alpha.7', +11473 silly addNameRange '6.24.1', +11473 silly addNameRange '7.0.0-alpha.8', +11473 silly addNameRange '7.0.0-alpha.9', +11473 silly addNameRange '7.0.0-alpha.10', +11473 silly addNameRange '7.0.0-alpha.11', +11473 silly addNameRange '7.0.0-alpha.12', +11473 silly addNameRange '7.0.0-alpha.14', +11473 silly addNameRange '7.0.0-alpha.15', +11473 silly addNameRange '7.0.0-alpha.16', +11473 silly addNameRange '7.0.0-alpha.17', +11473 silly addNameRange '7.0.0-alpha.18', +11473 silly addNameRange '7.0.0-alpha.19', +11473 silly addNameRange '7.0.0-alpha.20', +11473 silly addNameRange '7.0.0-beta.0', +11473 silly addNameRange '7.0.0-beta.1', +11473 silly addNameRange '7.0.0-beta.2' ] ] +11474 silly addNamed babel-plugin-transform-async-to-generator@6.24.1 +11475 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-async-to-generator +11476 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions not expired, no request +11477 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-block-scoped-functions', +11477 silly addNameRange range: '>=6.22.0 <7.0.0', +11477 silly addNameRange hasData: true } +11478 silly addNameRange versions [ 'babel-plugin-transform-es2015-block-scoped-functions', +11478 silly addNameRange [ '6.0.2', +11478 silly addNameRange '6.0.14', +11478 silly addNameRange '6.1.4', +11478 silly addNameRange '6.1.5', +11478 silly addNameRange '6.1.10', +11478 silly addNameRange '6.1.17', +11478 silly addNameRange '6.1.18', +11478 silly addNameRange '6.2.4', +11478 silly addNameRange '6.3.13', +11478 silly addNameRange '6.5.0', +11478 silly addNameRange '6.5.0-1', +11478 silly addNameRange '6.6.4', +11478 silly addNameRange '6.6.5', +11478 silly addNameRange '6.8.0', +11478 silly addNameRange '6.22.0', +11478 silly addNameRange '7.0.0-alpha.1', +11478 silly addNameRange '7.0.0-alpha.3', +11478 silly addNameRange '7.0.0-alpha.7', +11478 silly addNameRange '7.0.0-alpha.8', +11478 silly addNameRange '7.0.0-alpha.9', +11478 silly addNameRange '7.0.0-alpha.10', +11478 silly addNameRange '7.0.0-alpha.11', +11478 silly addNameRange '7.0.0-alpha.12', +11478 silly addNameRange '7.0.0-alpha.13', +11478 silly addNameRange '7.0.0-alpha.14', +11478 silly addNameRange '7.0.0-alpha.15', +11478 silly addNameRange '7.0.0-alpha.16', +11478 silly addNameRange '7.0.0-alpha.17', +11478 silly addNameRange '7.0.0-alpha.18', +11478 silly addNameRange '7.0.0-alpha.19', +11478 silly addNameRange '7.0.0-alpha.20', +11478 silly addNameRange '7.0.0-beta.0', +11478 silly addNameRange '7.0.0-beta.1', +11478 silly addNameRange '7.0.0-beta.2' ] ] +11479 silly addNamed babel-plugin-transform-es2015-block-scoped-functions@6.22.0 +11480 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-transform-es2015-block-scoped-functions +11481 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties not expired, no request +11482 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-computed-properties', +11482 silly addNameRange range: '>=6.22.0 <7.0.0', +11482 silly addNameRange hasData: true } +11483 silly addNameRange versions [ 'babel-plugin-transform-es2015-computed-properties', +11483 silly addNameRange [ '6.0.2', +11483 silly addNameRange '6.0.14', +11483 silly addNameRange '6.1.4', +11483 silly addNameRange '6.1.5', +11483 silly addNameRange '6.1.10', +11483 silly addNameRange '6.1.17', +11483 silly addNameRange '6.1.18', +11483 silly addNameRange '6.2.4', +11483 silly addNameRange '6.3.13', +11483 silly addNameRange '6.4.0', +11483 silly addNameRange '6.5.0', +11483 silly addNameRange '6.5.0-1', +11483 silly addNameRange '6.5.2', +11483 silly addNameRange '6.6.4', +11483 silly addNameRange '6.6.5', +11483 silly addNameRange '6.8.0', +11483 silly addNameRange '6.22.0', +11483 silly addNameRange '7.0.0-alpha.1', +11483 silly addNameRange '7.0.0-alpha.3', +11483 silly addNameRange '7.0.0-alpha.7', +11483 silly addNameRange '6.24.1', +11483 silly addNameRange '7.0.0-alpha.8', +11483 silly addNameRange '7.0.0-alpha.9', +11483 silly addNameRange '7.0.0-alpha.10', +11483 silly addNameRange '7.0.0-alpha.11', +11483 silly addNameRange '7.0.0-alpha.12', +11483 silly addNameRange '7.0.0-alpha.14', +11483 silly addNameRange '7.0.0-alpha.15', +11483 silly addNameRange '7.0.0-alpha.16', +11483 silly addNameRange '7.0.0-alpha.17', +11483 silly addNameRange '7.0.0-alpha.18', +11483 silly addNameRange '7.0.0-alpha.19', +11483 silly addNameRange '7.0.0-alpha.20', +11483 silly addNameRange '7.0.0-beta.0', +11483 silly addNameRange '7.0.0-beta.1', +11483 silly addNameRange '7.0.0-beta.2' ] ] +11484 silly addNamed babel-plugin-transform-es2015-computed-properties@6.24.1 +11485 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-computed-properties +11486 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-function-name not expired, no request +11487 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-function-name', +11487 silly addNameRange range: '>=6.22.0 <7.0.0', +11487 silly addNameRange hasData: true } +11488 silly addNameRange versions [ 'babel-plugin-transform-es2015-function-name', +11488 silly addNameRange [ '6.0.2', +11488 silly addNameRange '6.0.14', +11488 silly addNameRange '6.1.4', +11488 silly addNameRange '6.1.5', +11488 silly addNameRange '6.1.10', +11488 silly addNameRange '6.1.17', +11488 silly addNameRange '6.1.18', +11488 silly addNameRange '6.2.4', +11488 silly addNameRange '6.3.13', +11488 silly addNameRange '6.3.19', +11488 silly addNameRange '6.3.21', +11488 silly addNameRange '6.4.0', +11488 silly addNameRange '6.5.0', +11488 silly addNameRange '6.5.0-1', +11488 silly addNameRange '6.8.0', +11488 silly addNameRange '6.9.0', +11488 silly addNameRange '6.22.0', +11488 silly addNameRange '7.0.0-alpha.1', +11488 silly addNameRange '7.0.0-alpha.3', +11488 silly addNameRange '7.0.0-alpha.7', +11488 silly addNameRange '6.24.1', +11488 silly addNameRange '7.0.0-alpha.8', +11488 silly addNameRange '7.0.0-alpha.9', +11488 silly addNameRange '7.0.0-alpha.10', +11488 silly addNameRange '7.0.0-alpha.11', +11488 silly addNameRange '7.0.0-alpha.12', +11488 silly addNameRange '7.0.0-alpha.14', +11488 silly addNameRange '7.0.0-alpha.15', +11488 silly addNameRange '7.0.0-alpha.16', +11488 silly addNameRange '7.0.0-alpha.17', +11488 silly addNameRange '7.0.0-alpha.18', +11488 silly addNameRange '7.0.0-alpha.19', +11488 silly addNameRange '7.0.0-alpha.20', +11488 silly addNameRange '7.0.0-beta.0', +11488 silly addNameRange '7.0.0-beta.1', +11488 silly addNameRange '7.0.0-beta.2' ] ] +11489 silly addNamed babel-plugin-transform-es2015-function-name@6.24.1 +11490 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-function-name +11491 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping not expired, no request +11492 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-block-scoping', +11492 silly addNameRange range: '>=6.23.0 <7.0.0', +11492 silly addNameRange hasData: true } +11493 silly addNameRange versions [ 'babel-plugin-transform-es2015-block-scoping', +11493 silly addNameRange [ '6.0.2', +11493 silly addNameRange '6.0.9', +11493 silly addNameRange '6.0.14', +11493 silly addNameRange '6.0.18', +11493 silly addNameRange '6.1.4', +11493 silly addNameRange '6.1.5', +11493 silly addNameRange '6.1.10', +11493 silly addNameRange '6.1.17', +11493 silly addNameRange '6.1.18', +11493 silly addNameRange '6.2.4', +11493 silly addNameRange '6.3.13', +11493 silly addNameRange '6.4.0', +11493 silly addNameRange '6.5.0', +11493 silly addNameRange '6.5.0-1', +11493 silly addNameRange '6.6.0', +11493 silly addNameRange '6.6.4', +11493 silly addNameRange '6.6.5', +11493 silly addNameRange '6.7.0', +11493 silly addNameRange '6.7.1', +11493 silly addNameRange '6.8.0', +11493 silly addNameRange '6.9.0', +11493 silly addNameRange '6.10.0', +11493 silly addNameRange '6.10.1', +11493 silly addNameRange '6.14.0', +11493 silly addNameRange '6.15.0', +11493 silly addNameRange '6.18.0', +11493 silly addNameRange '6.20.0', +11493 silly addNameRange '6.21.0', +11493 silly addNameRange '6.22.0', +11493 silly addNameRange '6.23.0', +11493 silly addNameRange '7.0.0-alpha.1', +11493 silly addNameRange '7.0.0-alpha.3', +11493 silly addNameRange '7.0.0-alpha.7', +11493 silly addNameRange '6.24.1', +11493 silly addNameRange '7.0.0-alpha.8', +11493 silly addNameRange '7.0.0-alpha.9', +11493 silly addNameRange '7.0.0-alpha.10', +11493 silly addNameRange '7.0.0-alpha.11', +11493 silly addNameRange '7.0.0-alpha.12', +11493 silly addNameRange '7.0.0-alpha.14', +11493 silly addNameRange '7.0.0-alpha.15', +11493 silly addNameRange '7.0.0-alpha.16', +11493 silly addNameRange '7.0.0-alpha.17', +11493 silly addNameRange '7.0.0-alpha.18', +11493 silly addNameRange '7.0.0-alpha.19', +11493 silly addNameRange '6.26.0', +11493 silly addNameRange '7.0.0-alpha.20', +11493 silly addNameRange '7.0.0-beta.0', +11493 silly addNameRange '7.0.0-beta.1', +11493 silly addNameRange '7.0.0-beta.2' ] ] +11494 silly addNamed babel-plugin-transform-es2015-block-scoping@6.26.0 +11495 verbose addNamed "6.26.0" is a plain semver version for babel-plugin-transform-es2015-block-scoping +11496 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs +11497 verbose headers { server: 'nginx/1.10.3', +11497 verbose headers 'content-type': 'application/json', +11497 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:52 GMT', +11497 verbose headers etag: 'W/"59ca6f28-1060e"', +11497 verbose headers 'content-encoding': 'gzip', +11497 verbose headers 'cache-control': 'max-age=300', +11497 verbose headers 'content-length': '6625', +11497 verbose headers 'accept-ranges': 'bytes', +11497 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11497 verbose headers via: '1.1 varnish', +11497 verbose headers age: '142', +11497 verbose headers connection: 'keep-alive', +11497 verbose headers 'x-served-by': 'cache-sin18032-SIN', +11497 verbose headers 'x-cache': 'HIT', +11497 verbose headers 'x-cache-hits': '3', +11497 verbose headers 'x-timer': 'S1506936875.522261,VS0,VE0', +11497 verbose headers vary: 'Accept-Encoding, Accept' } +11498 silly get cb [ 200, +11498 silly get { server: 'nginx/1.10.3', +11498 silly get 'content-type': 'application/json', +11498 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:52 GMT', +11498 silly get etag: 'W/"59ca6f28-1060e"', +11498 silly get 'content-encoding': 'gzip', +11498 silly get 'cache-control': 'max-age=300', +11498 silly get 'content-length': '6625', +11498 silly get 'accept-ranges': 'bytes', +11498 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11498 silly get via: '1.1 varnish', +11498 silly get age: '142', +11498 silly get connection: 'keep-alive', +11498 silly get 'x-served-by': 'cache-sin18032-SIN', +11498 silly get 'x-cache': 'HIT', +11498 silly get 'x-cache-hits': '3', +11498 silly get 'x-timer': 'S1506936875.522261,VS0,VE0', +11498 silly get vary: 'Accept-Encoding, Accept' } ] +11499 verbose get saving babel-plugin-transform-es2015-modules-systemjs to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/.cache.json +11500 silly resolveWithNewModule babel-plugin-transform-es2015-duplicate-keys@6.24.1 checking installable status +11501 silly cache add args [ 'babel-plugin-transform-es2015-duplicate-keys@^6.22.0', null ] +11502 verbose cache add spec babel-plugin-transform-es2015-duplicate-keys@^6.22.0 +11503 silly cache add parsed spec Result { +11503 silly cache add raw: 'babel-plugin-transform-es2015-duplicate-keys@^6.22.0', +11503 silly cache add scope: null, +11503 silly cache add name: 'babel-plugin-transform-es2015-duplicate-keys', +11503 silly cache add rawSpec: '^6.22.0', +11503 silly cache add spec: '>=6.22.0 <7.0.0', +11503 silly cache add type: 'range' } +11504 silly addNamed babel-plugin-transform-es2015-duplicate-keys@>=6.22.0 <7.0.0 +11505 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-duplicate-keys +11506 silly addNameRange { name: 'babel-plugin-transform-es2015-duplicate-keys', +11506 silly addNameRange range: '>=6.22.0 <7.0.0', +11506 silly addNameRange hasData: false } +11507 silly mapToRegistry name babel-plugin-transform-es2015-duplicate-keys +11508 silly mapToRegistry using default registry +11509 silly mapToRegistry registry https://registry.npmjs.org/ +11510 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys +11511 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys not in flight; fetching +11512 silly resolveWithNewModule babel-plugin-transform-es2015-for-of@6.23.0 checking installable status +11513 silly cache add args [ 'babel-plugin-transform-es2015-for-of@^6.23.0', null ] +11514 verbose cache add spec babel-plugin-transform-es2015-for-of@^6.23.0 +11515 silly cache add parsed spec Result { +11515 silly cache add raw: 'babel-plugin-transform-es2015-for-of@^6.23.0', +11515 silly cache add scope: null, +11515 silly cache add name: 'babel-plugin-transform-es2015-for-of', +11515 silly cache add rawSpec: '^6.23.0', +11515 silly cache add spec: '>=6.23.0 <7.0.0', +11515 silly cache add type: 'range' } +11516 silly addNamed babel-plugin-transform-es2015-for-of@>=6.23.0 <7.0.0 +11517 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-for-of +11518 silly addNameRange { name: 'babel-plugin-transform-es2015-for-of', +11518 silly addNameRange range: '>=6.23.0 <7.0.0', +11518 silly addNameRange hasData: false } +11519 silly mapToRegistry name babel-plugin-transform-es2015-for-of +11520 silly mapToRegistry using default registry +11521 silly mapToRegistry registry https://registry.npmjs.org/ +11522 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-for-of +11523 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-for-of not in flight; fetching +11524 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring not expired, no request +11525 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-destructuring', +11525 silly addNameRange range: '>=6.23.0 <7.0.0', +11525 silly addNameRange hasData: true } +11526 silly addNameRange versions [ 'babel-plugin-transform-es2015-destructuring', +11526 silly addNameRange [ '6.0.2', +11526 silly addNameRange '6.0.14', +11526 silly addNameRange '6.0.18', +11526 silly addNameRange '6.1.4', +11526 silly addNameRange '6.1.5', +11526 silly addNameRange '6.1.10', +11526 silly addNameRange '6.1.17', +11526 silly addNameRange '6.1.18', +11526 silly addNameRange '6.2.4', +11526 silly addNameRange '6.3.13', +11526 silly addNameRange '6.3.15', +11526 silly addNameRange '6.4.0', +11526 silly addNameRange '6.5.0', +11526 silly addNameRange '6.5.0-1', +11526 silly addNameRange '6.6.0', +11526 silly addNameRange '6.6.4', +11526 silly addNameRange '6.6.5', +11526 silly addNameRange '6.8.0', +11526 silly addNameRange '6.9.0', +11526 silly addNameRange '6.16.0', +11526 silly addNameRange '6.18.0', +11526 silly addNameRange '6.19.0', +11526 silly addNameRange '6.22.0', +11526 silly addNameRange '6.23.0', +11526 silly addNameRange '7.0.0-alpha.1', +11526 silly addNameRange '7.0.0-alpha.3', +11526 silly addNameRange '7.0.0-alpha.7', +11526 silly addNameRange '7.0.0-alpha.8', +11526 silly addNameRange '7.0.0-alpha.9', +11526 silly addNameRange '7.0.0-alpha.10', +11526 silly addNameRange '7.0.0-alpha.11', +11526 silly addNameRange '7.0.0-alpha.12', +11526 silly addNameRange '7.0.0-alpha.13', +11526 silly addNameRange '7.0.0-alpha.14', +11526 silly addNameRange '7.0.0-alpha.15', +11526 silly addNameRange '7.0.0-alpha.16', +11526 silly addNameRange '7.0.0-alpha.17', +11526 silly addNameRange '7.0.0-alpha.18', +11526 silly addNameRange '7.0.0-alpha.19', +11526 silly addNameRange '7.0.0-alpha.20', +11526 silly addNameRange '7.0.0-beta.0', +11526 silly addNameRange '7.0.0-beta.1', +11526 silly addNameRange '7.0.0-beta.2' ] ] +11527 silly addNamed babel-plugin-transform-es2015-destructuring@6.23.0 +11528 verbose addNamed "6.23.0" is a plain semver version for babel-plugin-transform-es2015-destructuring +11529 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-classes not expired, no request +11530 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-classes', +11530 silly addNameRange range: '>=6.23.0 <7.0.0', +11530 silly addNameRange hasData: true } +11531 silly addNameRange versions [ 'babel-plugin-transform-es2015-classes', +11531 silly addNameRange [ '6.0.2', +11531 silly addNameRange '6.0.8', +11531 silly addNameRange '6.0.14', +11531 silly addNameRange '6.0.15', +11531 silly addNameRange '6.1.2', +11531 silly addNameRange '6.1.4', +11531 silly addNameRange '6.1.5', +11531 silly addNameRange '6.1.10', +11531 silly addNameRange '6.1.17', +11531 silly addNameRange '6.1.18', +11531 silly addNameRange '6.1.20', +11531 silly addNameRange '6.1.21', +11531 silly addNameRange '6.2.0', +11531 silly addNameRange '6.2.2', +11531 silly addNameRange '6.2.4', +11531 silly addNameRange '6.3.2', +11531 silly addNameRange '6.3.13', +11531 silly addNameRange '6.3.15', +11531 silly addNameRange '6.4.0', +11531 silly addNameRange '6.4.5', +11531 silly addNameRange '6.5.0', +11531 silly addNameRange '6.5.0-1', +11531 silly addNameRange '6.5.2', +11531 silly addNameRange '6.6.0', +11531 silly addNameRange '6.6.4', +11531 silly addNameRange '6.6.5', +11531 silly addNameRange '6.7.7', +11531 silly addNameRange '6.8.0', +11531 silly addNameRange '6.9.0', +11531 silly addNameRange '6.14.0', +11531 silly addNameRange '6.18.0', +11531 silly addNameRange '6.22.0', +11531 silly addNameRange '6.23.0', +11531 silly addNameRange '7.0.0-alpha.1', +11531 silly addNameRange '7.0.0-alpha.3', +11531 silly addNameRange '7.0.0-alpha.7', +11531 silly addNameRange '6.24.1', +11531 silly addNameRange '7.0.0-alpha.8', +11531 silly addNameRange '7.0.0-alpha.9', +11531 silly addNameRange '7.0.0-alpha.10', +11531 silly addNameRange '7.0.0-alpha.11', +11531 silly addNameRange '7.0.0-alpha.12', +11531 silly addNameRange '7.0.0-alpha.14', +11531 silly addNameRange '7.0.0-alpha.15', +11531 silly addNameRange '7.0.0-alpha.16', +11531 silly addNameRange '7.0.0-alpha.17', +11531 silly addNameRange '7.0.0-alpha.18', +11531 silly addNameRange '7.0.0-alpha.19', +11531 silly addNameRange '7.0.0-alpha.20', +11531 silly addNameRange '7.0.0-beta.0', +11531 silly addNameRange '7.0.0-beta.1', +11531 silly addNameRange '7.0.0-beta.2' ] ] +11532 silly addNamed babel-plugin-transform-es2015-classes@6.24.1 +11533 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-classes +11534 silly cache afterAdd babel-plugin-syntax-trailing-function-commas@6.22.0 +11535 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-trailing-function-commas/6.22.0/package/package.json not in flight; writing +11536 silly cache afterAdd babel-plugin-transform-es2015-arrow-functions@6.22.0 +11537 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-arrow-functions/6.22.0/package/package.json not in flight; writing +11538 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-object-super +11539 verbose headers { server: 'nginx/1.10.3', +11539 verbose headers 'content-type': 'application/json', +11539 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:12 GMT', +11539 verbose headers etag: 'W/"59ca6f3c-b8ba"', +11539 verbose headers 'content-encoding': 'gzip', +11539 verbose headers 'cache-control': 'max-age=300', +11539 verbose headers 'content-length': '5125', +11539 verbose headers 'accept-ranges': 'bytes', +11539 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11539 verbose headers via: '1.1 varnish', +11539 verbose headers age: '4', +11539 verbose headers connection: 'keep-alive', +11539 verbose headers 'x-served-by': 'cache-sin18025-SIN', +11539 verbose headers 'x-cache': 'HIT', +11539 verbose headers 'x-cache-hits': '1', +11539 verbose headers 'x-timer': 'S1506936875.542858,VS0,VE0', +11539 verbose headers vary: 'Accept-Encoding, Accept' } +11540 silly get cb [ 200, +11540 silly get { server: 'nginx/1.10.3', +11540 silly get 'content-type': 'application/json', +11540 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:12 GMT', +11540 silly get etag: 'W/"59ca6f3c-b8ba"', +11540 silly get 'content-encoding': 'gzip', +11540 silly get 'cache-control': 'max-age=300', +11540 silly get 'content-length': '5125', +11540 silly get 'accept-ranges': 'bytes', +11540 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11540 silly get via: '1.1 varnish', +11540 silly get age: '4', +11540 silly get connection: 'keep-alive', +11540 silly get 'x-served-by': 'cache-sin18025-SIN', +11540 silly get 'x-cache': 'HIT', +11540 silly get 'x-cache-hits': '1', +11540 silly get 'x-timer': 'S1506936875.542858,VS0,VE0', +11540 silly get vary: 'Accept-Encoding, Accept' } ] +11541 verbose get saving babel-plugin-transform-es2015-object-super to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-object-super/.cache.json +11542 silly cache afterAdd babel-plugin-check-es2015-constants@6.22.0 +11543 verbose afterAdd /home/wso2/.npm/babel-plugin-check-es2015-constants/6.22.0/package/package.json not in flight; writing +11544 silly cache afterAdd babel-plugin-transform-async-to-generator@6.24.1 +11545 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-async-to-generator/6.24.1/package/package.json not in flight; writing +11546 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd +11547 verbose headers { server: 'nginx/1.10.3', +11547 verbose headers 'content-type': 'application/json', +11547 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:57 GMT', +11547 verbose headers etag: 'W/"59ca6f2d-d458"', +11547 verbose headers 'content-encoding': 'gzip', +11547 verbose headers 'cache-control': 'max-age=300', +11547 verbose headers 'content-length': '5808', +11547 verbose headers 'accept-ranges': 'bytes', +11547 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11547 verbose headers via: '1.1 varnish', +11547 verbose headers age: '142', +11547 verbose headers connection: 'keep-alive', +11547 verbose headers 'x-served-by': 'cache-sin18022-SIN', +11547 verbose headers 'x-cache': 'HIT', +11547 verbose headers 'x-cache-hits': '1', +11547 verbose headers 'x-timer': 'S1506936875.538133,VS0,VE0', +11547 verbose headers vary: 'Accept-Encoding, Accept' } +11548 silly get cb [ 200, +11548 silly get { server: 'nginx/1.10.3', +11548 silly get 'content-type': 'application/json', +11548 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:57 GMT', +11548 silly get etag: 'W/"59ca6f2d-d458"', +11548 silly get 'content-encoding': 'gzip', +11548 silly get 'cache-control': 'max-age=300', +11548 silly get 'content-length': '5808', +11548 silly get 'accept-ranges': 'bytes', +11548 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11548 silly get via: '1.1 varnish', +11548 silly get age: '142', +11548 silly get connection: 'keep-alive', +11548 silly get 'x-served-by': 'cache-sin18022-SIN', +11548 silly get 'x-cache': 'HIT', +11548 silly get 'x-cache-hits': '1', +11548 silly get 'x-timer': 'S1506936875.538133,VS0,VE0', +11548 silly get vary: 'Accept-Encoding, Accept' } ] +11549 verbose get saving babel-plugin-transform-es2015-modules-amd to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/.cache.json +11550 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys not expired, no request +11551 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-duplicate-keys', +11551 silly addNameRange range: '>=6.22.0 <7.0.0', +11551 silly addNameRange hasData: true } +11552 silly addNameRange versions [ 'babel-plugin-transform-es2015-duplicate-keys', +11552 silly addNameRange [ '6.6.0', +11552 silly addNameRange '6.6.4', +11552 silly addNameRange '6.8.0', +11552 silly addNameRange '6.22.0', +11552 silly addNameRange '7.0.0-alpha.1', +11552 silly addNameRange '7.0.0-alpha.3', +11552 silly addNameRange '7.0.0-alpha.7', +11552 silly addNameRange '6.24.1', +11552 silly addNameRange '7.0.0-alpha.8', +11552 silly addNameRange '7.0.0-alpha.9', +11552 silly addNameRange '7.0.0-alpha.10', +11552 silly addNameRange '7.0.0-alpha.11', +11552 silly addNameRange '7.0.0-alpha.12', +11552 silly addNameRange '7.0.0-alpha.14', +11552 silly addNameRange '7.0.0-alpha.15', +11552 silly addNameRange '7.0.0-alpha.16', +11552 silly addNameRange '7.0.0-alpha.17', +11552 silly addNameRange '7.0.0-alpha.18', +11552 silly addNameRange '7.0.0-alpha.19', +11552 silly addNameRange '7.0.0-alpha.20', +11552 silly addNameRange '7.0.0-beta.0', +11552 silly addNameRange '7.0.0-beta.1', +11552 silly addNameRange '7.0.0-beta.2' ] ] +11553 silly addNamed babel-plugin-transform-es2015-duplicate-keys@6.24.1 +11554 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-duplicate-keys +11555 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-for-of not expired, no request +11556 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-for-of', +11556 silly addNameRange range: '>=6.23.0 <7.0.0', +11556 silly addNameRange hasData: true } +11557 silly addNameRange versions [ 'babel-plugin-transform-es2015-for-of', +11557 silly addNameRange [ '6.0.2', +11557 silly addNameRange '6.0.14', +11557 silly addNameRange '6.1.4', +11557 silly addNameRange '6.1.5', +11557 silly addNameRange '6.1.10', +11557 silly addNameRange '6.1.17', +11557 silly addNameRange '6.1.18', +11557 silly addNameRange '6.2.4', +11557 silly addNameRange '6.3.13', +11557 silly addNameRange '6.5.0', +11557 silly addNameRange '6.5.0-1', +11557 silly addNameRange '6.5.2', +11557 silly addNameRange '6.6.0', +11557 silly addNameRange '6.8.0', +11557 silly addNameRange '6.18.0', +11557 silly addNameRange '6.22.0', +11557 silly addNameRange '6.23.0', +11557 silly addNameRange '7.0.0-alpha.1', +11557 silly addNameRange '7.0.0-alpha.3', +11557 silly addNameRange '7.0.0-alpha.7', +11557 silly addNameRange '7.0.0-alpha.8', +11557 silly addNameRange '7.0.0-alpha.9', +11557 silly addNameRange '7.0.0-alpha.10', +11557 silly addNameRange '7.0.0-alpha.11', +11557 silly addNameRange '7.0.0-alpha.12', +11557 silly addNameRange '7.0.0-alpha.13', +11557 silly addNameRange '7.0.0-alpha.14', +11557 silly addNameRange '7.0.0-alpha.15', +11557 silly addNameRange '7.0.0-alpha.16', +11557 silly addNameRange '7.0.0-alpha.17', +11557 silly addNameRange '7.0.0-alpha.18', +11557 silly addNameRange '7.0.0-alpha.19', +11557 silly addNameRange '7.0.0-alpha.20', +11557 silly addNameRange '7.0.0-beta.0', +11557 silly addNameRange '7.0.0-beta.1', +11557 silly addNameRange '7.0.0-beta.2' ] ] +11558 silly addNamed babel-plugin-transform-es2015-for-of@6.23.0 +11559 verbose addNamed "6.23.0" is a plain semver version for babel-plugin-transform-es2015-for-of +11560 silly cache afterAdd babel-plugin-transform-es2015-block-scoped-functions@6.22.0 +11561 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-block-scoped-functions/6.22.0/package/package.json not in flight; writing +11562 silly resolveWithNewModule babel-plugin-transform-es2015-literals@6.22.0 checking installable status +11563 silly cache add args [ 'babel-plugin-transform-es2015-literals@^6.22.0', null ] +11564 verbose cache add spec babel-plugin-transform-es2015-literals@^6.22.0 +11565 silly cache add parsed spec Result { +11565 silly cache add raw: 'babel-plugin-transform-es2015-literals@^6.22.0', +11565 silly cache add scope: null, +11565 silly cache add name: 'babel-plugin-transform-es2015-literals', +11565 silly cache add rawSpec: '^6.22.0', +11565 silly cache add spec: '>=6.22.0 <7.0.0', +11565 silly cache add type: 'range' } +11566 silly addNamed babel-plugin-transform-es2015-literals@>=6.22.0 <7.0.0 +11567 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-literals +11568 silly addNameRange { name: 'babel-plugin-transform-es2015-literals', +11568 silly addNameRange range: '>=6.22.0 <7.0.0', +11568 silly addNameRange hasData: false } +11569 silly mapToRegistry name babel-plugin-transform-es2015-literals +11570 silly mapToRegistry using default registry +11571 silly mapToRegistry registry https://registry.npmjs.org/ +11572 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-literals +11573 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-literals not in flight; fetching +11574 silly cache afterAdd babel-plugin-transform-es2015-computed-properties@6.24.1 +11575 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-computed-properties/6.24.1/package/package.json not in flight; writing +11576 silly cache afterAdd babel-plugin-transform-es2015-function-name@6.24.1 +11577 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-function-name/6.24.1/package/package.json not in flight; writing +11578 silly cache afterAdd babel-plugin-transform-es2015-block-scoping@6.26.0 +11579 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-block-scoping/6.26.0/package/package.json not in flight; writing +11580 silly cache afterAdd babel-plugin-transform-es2015-destructuring@6.23.0 +11581 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-destructuring/6.23.0/package/package.json not in flight; writing +11582 silly cache afterAdd babel-plugin-transform-es2015-classes@6.24.1 +11583 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-classes/6.24.1/package/package.json not in flight; writing +11584 silly resolveWithNewModule babel-plugin-transform-es2015-modules-systemjs@6.24.1 checking installable status +11585 silly cache add args [ 'babel-plugin-transform-es2015-modules-systemjs@^6.23.0', +11585 silly cache add null ] +11586 verbose cache add spec babel-plugin-transform-es2015-modules-systemjs@^6.23.0 +11587 silly cache add parsed spec Result { +11587 silly cache add raw: 'babel-plugin-transform-es2015-modules-systemjs@^6.23.0', +11587 silly cache add scope: null, +11587 silly cache add name: 'babel-plugin-transform-es2015-modules-systemjs', +11587 silly cache add rawSpec: '^6.23.0', +11587 silly cache add spec: '>=6.23.0 <7.0.0', +11587 silly cache add type: 'range' } +11588 silly addNamed babel-plugin-transform-es2015-modules-systemjs@>=6.23.0 <7.0.0 +11589 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-modules-systemjs +11590 silly addNameRange { name: 'babel-plugin-transform-es2015-modules-systemjs', +11590 silly addNameRange range: '>=6.23.0 <7.0.0', +11590 silly addNameRange hasData: false } +11591 silly mapToRegistry name babel-plugin-transform-es2015-modules-systemjs +11592 silly mapToRegistry using default registry +11593 silly mapToRegistry registry https://registry.npmjs.org/ +11594 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs +11595 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs not in flight; fetching +11596 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-trailing-function-commas/6.22.0/package/package.json written +11597 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-arrow-functions/6.22.0/package/package.json written +11598 verbose afterAdd /home/wso2/.npm/babel-plugin-check-es2015-constants/6.22.0/package/package.json written +11599 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-async-to-generator/6.24.1/package/package.json written +11600 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-block-scoped-functions/6.22.0/package/package.json written +11601 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-literals not expired, no request +11602 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-literals', +11602 silly addNameRange range: '>=6.22.0 <7.0.0', +11602 silly addNameRange hasData: true } +11603 silly addNameRange versions [ 'babel-plugin-transform-es2015-literals', +11603 silly addNameRange [ '6.0.2', +11603 silly addNameRange '6.0.14', +11603 silly addNameRange '6.0.15', +11603 silly addNameRange '6.0.18', +11603 silly addNameRange '6.1.4', +11603 silly addNameRange '6.1.5', +11603 silly addNameRange '6.1.17', +11603 silly addNameRange '6.1.18', +11603 silly addNameRange '6.2.4', +11603 silly addNameRange '6.3.13', +11603 silly addNameRange '6.5.0', +11603 silly addNameRange '6.5.0-1', +11603 silly addNameRange '6.8.0', +11603 silly addNameRange '6.22.0', +11603 silly addNameRange '7.0.0-alpha.1', +11603 silly addNameRange '7.0.0-alpha.3', +11603 silly addNameRange '7.0.0-alpha.7', +11603 silly addNameRange '7.0.0-alpha.8', +11603 silly addNameRange '7.0.0-alpha.9', +11603 silly addNameRange '7.0.0-alpha.10', +11603 silly addNameRange '7.0.0-alpha.11', +11603 silly addNameRange '7.0.0-alpha.12', +11603 silly addNameRange '7.0.0-alpha.14', +11603 silly addNameRange '7.0.0-alpha.15', +11603 silly addNameRange '7.0.0-alpha.16', +11603 silly addNameRange '7.0.0-alpha.17', +11603 silly addNameRange '7.0.0-alpha.18', +11603 silly addNameRange '7.0.0-alpha.19', +11603 silly addNameRange '7.0.0-alpha.20', +11603 silly addNameRange '7.0.0-beta.0', +11603 silly addNameRange '7.0.0-beta.1', +11603 silly addNameRange '7.0.0-beta.2' ] ] +11604 silly addNamed babel-plugin-transform-es2015-literals@6.22.0 +11605 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-transform-es2015-literals +11606 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-computed-properties/6.24.1/package/package.json written +11607 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-function-name/6.24.1/package/package.json written +11608 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-block-scoping/6.26.0/package/package.json written +11609 silly cache afterAdd babel-plugin-transform-es2015-for-of@6.23.0 +11610 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-for-of/6.23.0/package/package.json not in flight; writing +11611 silly cache afterAdd babel-plugin-transform-es2015-duplicate-keys@6.24.1 +11612 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-duplicate-keys/6.24.1/package/package.json not in flight; writing +11613 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-destructuring/6.23.0/package/package.json written +11614 silly resolveWithNewModule babel-plugin-transform-es2015-object-super@6.24.1 checking installable status +11615 silly cache add args [ 'babel-plugin-transform-es2015-object-super@^6.22.0', null ] +11616 verbose cache add spec babel-plugin-transform-es2015-object-super@^6.22.0 +11617 silly cache add parsed spec Result { +11617 silly cache add raw: 'babel-plugin-transform-es2015-object-super@^6.22.0', +11617 silly cache add scope: null, +11617 silly cache add name: 'babel-plugin-transform-es2015-object-super', +11617 silly cache add rawSpec: '^6.22.0', +11617 silly cache add spec: '>=6.22.0 <7.0.0', +11617 silly cache add type: 'range' } +11618 silly addNamed babel-plugin-transform-es2015-object-super@>=6.22.0 <7.0.0 +11619 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-object-super +11620 silly addNameRange { name: 'babel-plugin-transform-es2015-object-super', +11620 silly addNameRange range: '>=6.22.0 <7.0.0', +11620 silly addNameRange hasData: false } +11621 silly mapToRegistry name babel-plugin-transform-es2015-object-super +11622 silly mapToRegistry using default registry +11623 silly mapToRegistry registry https://registry.npmjs.org/ +11624 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-object-super +11625 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-object-super not in flight; fetching +11626 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-classes/6.24.1/package/package.json written +11627 silly resolveWithNewModule babel-plugin-transform-es2015-modules-amd@6.24.1 checking installable status +11628 silly cache add args [ 'babel-plugin-transform-es2015-modules-amd@^6.22.0', null ] +11629 verbose cache add spec babel-plugin-transform-es2015-modules-amd@^6.22.0 +11630 silly cache add parsed spec Result { +11630 silly cache add raw: 'babel-plugin-transform-es2015-modules-amd@^6.22.0', +11630 silly cache add scope: null, +11630 silly cache add name: 'babel-plugin-transform-es2015-modules-amd', +11630 silly cache add rawSpec: '^6.22.0', +11630 silly cache add spec: '>=6.22.0 <7.0.0', +11630 silly cache add type: 'range' } +11631 silly addNamed babel-plugin-transform-es2015-modules-amd@>=6.22.0 <7.0.0 +11632 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-modules-amd +11633 silly addNameRange { name: 'babel-plugin-transform-es2015-modules-amd', +11633 silly addNameRange range: '>=6.22.0 <7.0.0', +11633 silly addNameRange hasData: false } +11634 silly mapToRegistry name babel-plugin-transform-es2015-modules-amd +11635 silly mapToRegistry using default registry +11636 silly mapToRegistry registry https://registry.npmjs.org/ +11637 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd +11638 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd not in flight; fetching +11639 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs not expired, no request +11640 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-modules-systemjs', +11640 silly addNameRange range: '>=6.23.0 <7.0.0', +11640 silly addNameRange hasData: true } +11641 silly addNameRange versions [ 'babel-plugin-transform-es2015-modules-systemjs', +11641 silly addNameRange [ '6.0.2', +11641 silly addNameRange '6.0.12', +11641 silly addNameRange '6.0.14', +11641 silly addNameRange '6.0.15', +11641 silly addNameRange '6.1.4', +11641 silly addNameRange '6.1.5', +11641 silly addNameRange '6.1.17', +11641 silly addNameRange '6.1.18', +11641 silly addNameRange '6.2.4', +11641 silly addNameRange '6.3.13', +11641 silly addNameRange '6.4.0', +11641 silly addNameRange '6.5.0', +11641 silly addNameRange '6.5.0-1', +11641 silly addNameRange '6.6.0', +11641 silly addNameRange '6.6.4', +11641 silly addNameRange '6.6.5', +11641 silly addNameRange '6.8.0', +11641 silly addNameRange '6.9.0', +11641 silly addNameRange '6.11.5', +11641 silly addNameRange '6.11.6', +11641 silly addNameRange '6.12.0', +11641 silly addNameRange '6.14.0', +11641 silly addNameRange '6.18.0', +11641 silly addNameRange '6.19.0', +11641 silly addNameRange '6.22.0', +11641 silly addNameRange '6.23.0', +11641 silly addNameRange '7.0.0-alpha.1', +11641 silly addNameRange '7.0.0-alpha.3', +11641 silly addNameRange '7.0.0-alpha.7', +11641 silly addNameRange '6.24.1', +11641 silly addNameRange '7.0.0-alpha.8', +11641 silly addNameRange '7.0.0-alpha.9', +11641 silly addNameRange '7.0.0-alpha.10', +11641 silly addNameRange '7.0.0-alpha.11', +11641 silly addNameRange '7.0.0-alpha.12', +11641 silly addNameRange '7.0.0-alpha.14', +11641 silly addNameRange '7.0.0-alpha.15', +11641 silly addNameRange '7.0.0-alpha.16', +11641 silly addNameRange '7.0.0-alpha.17', +11641 silly addNameRange '7.0.0-alpha.18', +11641 silly addNameRange '7.0.0-alpha.19', +11641 silly addNameRange '7.0.0-alpha.20', +11641 silly addNameRange '7.0.0-beta.0', +11641 silly addNameRange '7.0.0-beta.1', +11641 silly addNameRange '7.0.0-beta.2' ] ] +11642 silly addNamed babel-plugin-transform-es2015-modules-systemjs@6.24.1 +11643 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-modules-systemjs +11644 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-for-of/6.23.0/package/package.json written +11645 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-duplicate-keys/6.24.1/package/package.json written +11646 silly cache afterAdd babel-plugin-transform-es2015-literals@6.22.0 +11647 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-literals/6.22.0/package/package.json not in flight; writing +11648 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-object-super not expired, no request +11649 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-object-super', +11649 silly addNameRange range: '>=6.22.0 <7.0.0', +11649 silly addNameRange hasData: true } +11650 silly addNameRange versions [ 'babel-plugin-transform-es2015-object-super', +11650 silly addNameRange [ '6.0.2', +11650 silly addNameRange '6.0.14', +11650 silly addNameRange '6.1.4', +11650 silly addNameRange '6.1.5', +11650 silly addNameRange '6.1.17', +11650 silly addNameRange '6.1.18', +11650 silly addNameRange '6.2.4', +11650 silly addNameRange '6.3.13', +11650 silly addNameRange '6.4.0', +11650 silly addNameRange '6.5.0', +11650 silly addNameRange '6.5.0-1', +11650 silly addNameRange '6.6.4', +11650 silly addNameRange '6.6.5', +11650 silly addNameRange '6.8.0', +11650 silly addNameRange '6.22.0', +11650 silly addNameRange '7.0.0-alpha.1', +11650 silly addNameRange '7.0.0-alpha.3', +11650 silly addNameRange '7.0.0-alpha.7', +11650 silly addNameRange '6.24.1', +11650 silly addNameRange '7.0.0-alpha.8', +11650 silly addNameRange '7.0.0-alpha.9', +11650 silly addNameRange '7.0.0-alpha.10', +11650 silly addNameRange '7.0.0-alpha.11', +11650 silly addNameRange '7.0.0-alpha.12', +11650 silly addNameRange '7.0.0-alpha.14', +11650 silly addNameRange '7.0.0-alpha.15', +11650 silly addNameRange '7.0.0-alpha.16', +11650 silly addNameRange '7.0.0-alpha.17', +11650 silly addNameRange '7.0.0-alpha.18', +11650 silly addNameRange '7.0.0-alpha.19', +11650 silly addNameRange '7.0.0-alpha.20', +11650 silly addNameRange '7.0.0-beta.0', +11650 silly addNameRange '7.0.0-beta.1', +11650 silly addNameRange '7.0.0-beta.2' ] ] +11651 silly addNamed babel-plugin-transform-es2015-object-super@6.24.1 +11652 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-object-super +11653 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd not expired, no request +11654 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-modules-amd', +11654 silly addNameRange range: '>=6.22.0 <7.0.0', +11654 silly addNameRange hasData: true } +11655 silly addNameRange versions [ 'babel-plugin-transform-es2015-modules-amd', +11655 silly addNameRange [ '6.0.2', +11655 silly addNameRange '6.0.14', +11655 silly addNameRange '6.0.15', +11655 silly addNameRange '6.1.4', +11655 silly addNameRange '6.1.5', +11655 silly addNameRange '6.1.17', +11655 silly addNameRange '6.1.18', +11655 silly addNameRange '6.2.4', +11655 silly addNameRange '6.3.13', +11655 silly addNameRange '6.4.0', +11655 silly addNameRange '6.4.3', +11655 silly addNameRange '6.5.0', +11655 silly addNameRange '6.5.0-1', +11655 silly addNameRange '6.6.0', +11655 silly addNameRange '6.6.5', +11655 silly addNameRange '6.8.0', +11655 silly addNameRange '6.18.0', +11655 silly addNameRange '6.22.0', +11655 silly addNameRange '7.0.0-alpha.1', +11655 silly addNameRange '6.24.0', +11655 silly addNameRange '7.0.0-alpha.3', +11655 silly addNameRange '7.0.0-alpha.7', +11655 silly addNameRange '6.24.1', +11655 silly addNameRange '7.0.0-alpha.8', +11655 silly addNameRange '7.0.0-alpha.9', +11655 silly addNameRange '7.0.0-alpha.10', +11655 silly addNameRange '7.0.0-alpha.11', +11655 silly addNameRange '7.0.0-alpha.12', +11655 silly addNameRange '7.0.0-alpha.14', +11655 silly addNameRange '7.0.0-alpha.15', +11655 silly addNameRange '7.0.0-alpha.16', +11655 silly addNameRange '7.0.0-alpha.17', +11655 silly addNameRange '7.0.0-alpha.18', +11655 silly addNameRange '7.0.0-alpha.19', +11655 silly addNameRange '7.0.0-alpha.20', +11655 silly addNameRange '7.0.0-beta.0', +11655 silly addNameRange '7.0.0-beta.1', +11655 silly addNameRange '7.0.0-beta.2' ] ] +11656 silly addNamed babel-plugin-transform-es2015-modules-amd@6.24.1 +11657 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-modules-amd +11658 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-spread +11659 verbose headers { server: 'nginx/1.10.3', +11659 verbose headers 'content-type': 'application/json', +11659 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:03 GMT', +11659 verbose headers etag: 'W/"59ca6ef7-ad26"', +11659 verbose headers 'content-encoding': 'gzip', +11659 verbose headers 'cache-control': 'max-age=300', +11659 verbose headers 'content-length': '4928', +11659 verbose headers 'accept-ranges': 'bytes', +11659 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11659 verbose headers via: '1.1 varnish', +11659 verbose headers age: '4', +11659 verbose headers connection: 'keep-alive', +11659 verbose headers 'x-served-by': 'cache-sin18030-SIN', +11659 verbose headers 'x-cache': 'HIT', +11659 verbose headers 'x-cache-hits': '1', +11659 verbose headers 'x-timer': 'S1506936875.586035,VS0,VE0', +11659 verbose headers vary: 'Accept-Encoding, Accept' } +11660 silly get cb [ 200, +11660 silly get { server: 'nginx/1.10.3', +11660 silly get 'content-type': 'application/json', +11660 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:03 GMT', +11660 silly get etag: 'W/"59ca6ef7-ad26"', +11660 silly get 'content-encoding': 'gzip', +11660 silly get 'cache-control': 'max-age=300', +11660 silly get 'content-length': '4928', +11660 silly get 'accept-ranges': 'bytes', +11660 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11660 silly get via: '1.1 varnish', +11660 silly get age: '4', +11660 silly get connection: 'keep-alive', +11660 silly get 'x-served-by': 'cache-sin18030-SIN', +11660 silly get 'x-cache': 'HIT', +11660 silly get 'x-cache-hits': '1', +11660 silly get 'x-timer': 'S1506936875.586035,VS0,VE0', +11660 silly get vary: 'Accept-Encoding, Accept' } ] +11661 verbose get saving babel-plugin-transform-es2015-spread to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-spread/.cache.json +11662 silly cache afterAdd babel-plugin-transform-es2015-modules-systemjs@6.24.1 +11663 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-modules-systemjs/6.24.1/package/package.json not in flight; writing +11664 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties +11665 verbose headers { server: 'nginx/1.10.3', +11665 verbose headers 'content-type': 'application/json', +11665 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:25 GMT', +11665 verbose headers etag: 'W/"59ca6f0d-b44c"', +11665 verbose headers 'content-encoding': 'gzip', +11665 verbose headers 'cache-control': 'max-age=300', +11665 verbose headers 'content-length': '5023', +11665 verbose headers 'accept-ranges': 'bytes', +11665 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11665 verbose headers via: '1.1 varnish', +11665 verbose headers age: '3', +11665 verbose headers connection: 'keep-alive', +11665 verbose headers 'x-served-by': 'cache-sin18030-SIN', +11665 verbose headers 'x-cache': 'HIT', +11665 verbose headers 'x-cache-hits': '1', +11665 verbose headers 'x-timer': 'S1506936875.584293,VS0,VE0', +11665 verbose headers vary: 'Accept-Encoding, Accept' } +11666 silly get cb [ 200, +11666 silly get { server: 'nginx/1.10.3', +11666 silly get 'content-type': 'application/json', +11666 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:25 GMT', +11666 silly get etag: 'W/"59ca6f0d-b44c"', +11666 silly get 'content-encoding': 'gzip', +11666 silly get 'cache-control': 'max-age=300', +11666 silly get 'content-length': '5023', +11666 silly get 'accept-ranges': 'bytes', +11666 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11666 silly get via: '1.1 varnish', +11666 silly get age: '3', +11666 silly get connection: 'keep-alive', +11666 silly get 'x-served-by': 'cache-sin18030-SIN', +11666 silly get 'x-cache': 'HIT', +11666 silly get 'x-cache-hits': '1', +11666 silly get 'x-timer': 'S1506936875.584293,VS0,VE0', +11666 silly get vary: 'Accept-Encoding, Accept' } ] +11667 verbose get saving babel-plugin-transform-es2015-shorthand-properties to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/.cache.json +11668 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs +11669 verbose headers { server: 'nginx/1.10.3', +11669 verbose headers 'content-type': 'application/json', +11669 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:55 GMT', +11669 verbose headers etag: 'W/"59ca6f2b-14cf2"', +11669 verbose headers 'content-encoding': 'gzip', +11669 verbose headers 'cache-control': 'max-age=300', +11669 verbose headers 'content-length': '8463', +11669 verbose headers 'accept-ranges': 'bytes', +11669 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11669 verbose headers via: '1.1 varnish', +11669 verbose headers age: '3', +11669 verbose headers connection: 'keep-alive', +11669 verbose headers 'x-served-by': 'cache-sin18021-SIN', +11669 verbose headers 'x-cache': 'HIT', +11669 verbose headers 'x-cache-hits': '1', +11669 verbose headers 'x-timer': 'S1506936875.584540,VS0,VE1', +11669 verbose headers vary: 'Accept-Encoding, Accept' } +11670 silly get cb [ 200, +11670 silly get { server: 'nginx/1.10.3', +11670 silly get 'content-type': 'application/json', +11670 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:55 GMT', +11670 silly get etag: 'W/"59ca6f2b-14cf2"', +11670 silly get 'content-encoding': 'gzip', +11670 silly get 'cache-control': 'max-age=300', +11670 silly get 'content-length': '8463', +11670 silly get 'accept-ranges': 'bytes', +11670 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11670 silly get via: '1.1 varnish', +11670 silly get age: '3', +11670 silly get connection: 'keep-alive', +11670 silly get 'x-served-by': 'cache-sin18021-SIN', +11670 silly get 'x-cache': 'HIT', +11670 silly get 'x-cache-hits': '1', +11670 silly get 'x-timer': 'S1506936875.584540,VS0,VE1', +11670 silly get vary: 'Accept-Encoding, Accept' } ] +11671 verbose get saving babel-plugin-transform-es2015-modules-commonjs to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/.cache.json +11672 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-literals/6.22.0/package/package.json written +11673 silly cache afterAdd babel-plugin-transform-es2015-modules-amd@6.24.1 +11674 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-modules-amd/6.24.1/package/package.json not in flight; writing +11675 silly cache afterAdd babel-plugin-transform-es2015-object-super@6.24.1 +11676 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-object-super/6.24.1/package/package.json not in flight; writing +11677 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-modules-systemjs/6.24.1/package/package.json written +11678 silly resolveWithNewModule babel-plugin-transform-es2015-spread@6.22.0 checking installable status +11679 silly cache add args [ 'babel-plugin-transform-es2015-spread@^6.22.0', null ] +11680 verbose cache add spec babel-plugin-transform-es2015-spread@^6.22.0 +11681 silly cache add parsed spec Result { +11681 silly cache add raw: 'babel-plugin-transform-es2015-spread@^6.22.0', +11681 silly cache add scope: null, +11681 silly cache add name: 'babel-plugin-transform-es2015-spread', +11681 silly cache add rawSpec: '^6.22.0', +11681 silly cache add spec: '>=6.22.0 <7.0.0', +11681 silly cache add type: 'range' } +11682 silly addNamed babel-plugin-transform-es2015-spread@>=6.22.0 <7.0.0 +11683 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-spread +11684 silly addNameRange { name: 'babel-plugin-transform-es2015-spread', +11684 silly addNameRange range: '>=6.22.0 <7.0.0', +11684 silly addNameRange hasData: false } +11685 silly mapToRegistry name babel-plugin-transform-es2015-spread +11686 silly mapToRegistry using default registry +11687 silly mapToRegistry registry https://registry.npmjs.org/ +11688 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-spread +11689 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-spread not in flight; fetching +11690 silly resolveWithNewModule babel-plugin-transform-es2015-shorthand-properties@6.24.1 checking installable status +11691 silly cache add args [ 'babel-plugin-transform-es2015-shorthand-properties@^6.22.0', +11691 silly cache add null ] +11692 verbose cache add spec babel-plugin-transform-es2015-shorthand-properties@^6.22.0 +11693 silly cache add parsed spec Result { +11693 silly cache add raw: 'babel-plugin-transform-es2015-shorthand-properties@^6.22.0', +11693 silly cache add scope: null, +11693 silly cache add name: 'babel-plugin-transform-es2015-shorthand-properties', +11693 silly cache add rawSpec: '^6.22.0', +11693 silly cache add spec: '>=6.22.0 <7.0.0', +11693 silly cache add type: 'range' } +11694 silly addNamed babel-plugin-transform-es2015-shorthand-properties@>=6.22.0 <7.0.0 +11695 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-shorthand-properties +11696 silly addNameRange { name: 'babel-plugin-transform-es2015-shorthand-properties', +11696 silly addNameRange range: '>=6.22.0 <7.0.0', +11696 silly addNameRange hasData: false } +11697 silly mapToRegistry name babel-plugin-transform-es2015-shorthand-properties +11698 silly mapToRegistry using default registry +11699 silly mapToRegistry registry https://registry.npmjs.org/ +11700 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties +11701 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties not in flight; fetching +11702 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-modules-amd/6.24.1/package/package.json written +11703 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-object-super/6.24.1/package/package.json written +11704 silly resolveWithNewModule babel-plugin-transform-es2015-modules-commonjs@6.26.0 checking installable status +11705 silly cache add args [ 'babel-plugin-transform-es2015-modules-commonjs@^6.23.0', +11705 silly cache add null ] +11706 verbose cache add spec babel-plugin-transform-es2015-modules-commonjs@^6.23.0 +11707 silly cache add parsed spec Result { +11707 silly cache add raw: 'babel-plugin-transform-es2015-modules-commonjs@^6.23.0', +11707 silly cache add scope: null, +11707 silly cache add name: 'babel-plugin-transform-es2015-modules-commonjs', +11707 silly cache add rawSpec: '^6.23.0', +11707 silly cache add spec: '>=6.23.0 <7.0.0', +11707 silly cache add type: 'range' } +11708 silly addNamed babel-plugin-transform-es2015-modules-commonjs@>=6.23.0 <7.0.0 +11709 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-modules-commonjs +11710 silly addNameRange { name: 'babel-plugin-transform-es2015-modules-commonjs', +11710 silly addNameRange range: '>=6.23.0 <7.0.0', +11710 silly addNameRange hasData: false } +11711 silly mapToRegistry name babel-plugin-transform-es2015-modules-commonjs +11712 silly mapToRegistry using default registry +11713 silly mapToRegistry registry https://registry.npmjs.org/ +11714 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs +11715 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs not in flight; fetching +11716 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-spread not expired, no request +11717 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-spread', +11717 silly addNameRange range: '>=6.22.0 <7.0.0', +11717 silly addNameRange hasData: true } +11718 silly addNameRange versions [ 'babel-plugin-transform-es2015-spread', +11718 silly addNameRange [ '6.0.2', +11718 silly addNameRange '6.0.14', +11718 silly addNameRange '6.1.4', +11718 silly addNameRange '6.1.17', +11718 silly addNameRange '6.1.18', +11718 silly addNameRange '6.2.4', +11718 silly addNameRange '6.3.13', +11718 silly addNameRange '6.3.14', +11718 silly addNameRange '6.4.0', +11718 silly addNameRange '6.5.0', +11718 silly addNameRange '6.5.0-1', +11718 silly addNameRange '6.5.2', +11718 silly addNameRange '6.6.4', +11718 silly addNameRange '6.6.5', +11718 silly addNameRange '6.8.0', +11718 silly addNameRange '6.22.0', +11718 silly addNameRange '7.0.0-alpha.1', +11718 silly addNameRange '7.0.0-alpha.3', +11718 silly addNameRange '7.0.0-alpha.7', +11718 silly addNameRange '7.0.0-alpha.8', +11718 silly addNameRange '7.0.0-alpha.9', +11718 silly addNameRange '7.0.0-alpha.10', +11718 silly addNameRange '7.0.0-alpha.11', +11718 silly addNameRange '7.0.0-alpha.12', +11718 silly addNameRange '7.0.0-alpha.14', +11718 silly addNameRange '7.0.0-alpha.15', +11718 silly addNameRange '7.0.0-alpha.16', +11718 silly addNameRange '7.0.0-alpha.17', +11718 silly addNameRange '7.0.0-alpha.18', +11718 silly addNameRange '7.0.0-alpha.19', +11718 silly addNameRange '7.0.0-alpha.20', +11718 silly addNameRange '7.0.0-beta.0', +11718 silly addNameRange '7.0.0-beta.1', +11718 silly addNameRange '7.0.0-beta.2' ] ] +11719 silly addNamed babel-plugin-transform-es2015-spread@6.22.0 +11720 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-transform-es2015-spread +11721 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties not expired, no request +11722 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-shorthand-properties', +11722 silly addNameRange range: '>=6.22.0 <7.0.0', +11722 silly addNameRange hasData: true } +11723 silly addNameRange versions [ 'babel-plugin-transform-es2015-shorthand-properties', +11723 silly addNameRange [ '6.0.2', +11723 silly addNameRange '6.0.14', +11723 silly addNameRange '6.1.4', +11723 silly addNameRange '6.1.5', +11723 silly addNameRange '6.1.17', +11723 silly addNameRange '6.1.18', +11723 silly addNameRange '6.2.4', +11723 silly addNameRange '6.3.13', +11723 silly addNameRange '6.5.0', +11723 silly addNameRange '6.5.0-1', +11723 silly addNameRange '6.8.0', +11723 silly addNameRange '6.18.0', +11723 silly addNameRange '6.22.0', +11723 silly addNameRange '7.0.0-alpha.1', +11723 silly addNameRange '7.0.0-alpha.3', +11723 silly addNameRange '7.0.0-alpha.7', +11723 silly addNameRange '6.24.1', +11723 silly addNameRange '7.0.0-alpha.8', +11723 silly addNameRange '7.0.0-alpha.9', +11723 silly addNameRange '7.0.0-alpha.10', +11723 silly addNameRange '7.0.0-alpha.11', +11723 silly addNameRange '7.0.0-alpha.12', +11723 silly addNameRange '7.0.0-alpha.14', +11723 silly addNameRange '7.0.0-alpha.15', +11723 silly addNameRange '7.0.0-alpha.16', +11723 silly addNameRange '7.0.0-alpha.17', +11723 silly addNameRange '7.0.0-alpha.18', +11723 silly addNameRange '7.0.0-alpha.19', +11723 silly addNameRange '7.0.0-alpha.20', +11723 silly addNameRange '7.0.0-beta.0', +11723 silly addNameRange '7.0.0-beta.1', +11723 silly addNameRange '7.0.0-beta.2' ] ] +11724 silly addNamed babel-plugin-transform-es2015-shorthand-properties@6.24.1 +11725 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-shorthand-properties +11726 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs not expired, no request +11727 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-modules-commonjs', +11727 silly addNameRange range: '>=6.23.0 <7.0.0', +11727 silly addNameRange hasData: true } +11728 silly addNameRange versions [ 'babel-plugin-transform-es2015-modules-commonjs', +11728 silly addNameRange [ '6.0.2', +11728 silly addNameRange '6.0.12', +11728 silly addNameRange '6.0.14', +11728 silly addNameRange '6.0.15', +11728 silly addNameRange '6.0.18', +11728 silly addNameRange '6.1.3', +11728 silly addNameRange '6.1.4', +11728 silly addNameRange '6.1.5', +11728 silly addNameRange '6.1.17', +11728 silly addNameRange '6.1.18', +11728 silly addNameRange '6.1.20', +11728 silly addNameRange '6.2.0', +11728 silly addNameRange '6.2.4', +11728 silly addNameRange '6.3.13', +11728 silly addNameRange '6.3.16', +11728 silly addNameRange '6.4.0', +11728 silly addNameRange '6.4.5', +11728 silly addNameRange '6.5.0', +11728 silly addNameRange '6.5.0-1', +11728 silly addNameRange '6.5.2', +11728 silly addNameRange '6.6.0', +11728 silly addNameRange '6.6.2', +11728 silly addNameRange '6.6.3', +11728 silly addNameRange '6.6.4', +11728 silly addNameRange '6.6.5', +11728 silly addNameRange '6.7.0', +11728 silly addNameRange '6.7.4', +11728 silly addNameRange '6.7.7', +11728 silly addNameRange '6.8.0', +11728 silly addNameRange '6.10.3', +11728 silly addNameRange '6.11.5', +11728 silly addNameRange '6.14.0', +11728 silly addNameRange '6.16.0', +11728 silly addNameRange '6.18.0', +11728 silly addNameRange '6.22.0', +11728 silly addNameRange '6.23.0', +11728 silly addNameRange '7.0.0-alpha.1', +11728 silly addNameRange '6.24.0', +11728 silly addNameRange '7.0.0-alpha.3', +11728 silly addNameRange '7.0.0-alpha.7', +11728 silly addNameRange '6.24.1', +11728 silly addNameRange '7.0.0-alpha.8', +11728 silly addNameRange '7.0.0-alpha.9', +11728 silly addNameRange '7.0.0-alpha.10', +11728 silly addNameRange '7.0.0-alpha.11', +11728 silly addNameRange '7.0.0-alpha.12', +11728 silly addNameRange '7.0.0-alpha.14', +11728 silly addNameRange '7.0.0-alpha.15', +11728 silly addNameRange '7.0.0-alpha.16', +11728 silly addNameRange '7.0.0-alpha.17', +11728 silly addNameRange '7.0.0-alpha.18', +11728 silly addNameRange '7.0.0-alpha.19', +11728 silly addNameRange '6.26.0', +11728 silly addNameRange '7.0.0-alpha.20', +11728 silly addNameRange '7.0.0-beta.0', +11728 silly addNameRange '7.0.0-beta.1', +11728 silly addNameRange '7.0.0-beta.2' ] ] +11729 silly addNamed babel-plugin-transform-es2015-modules-commonjs@6.26.0 +11730 verbose addNamed "6.26.0" is a plain semver version for babel-plugin-transform-es2015-modules-commonjs +11731 silly cache afterAdd babel-plugin-transform-es2015-spread@6.22.0 +11732 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-spread/6.22.0/package/package.json not in flight; writing +11733 silly cache afterAdd babel-plugin-transform-es2015-shorthand-properties@6.24.1 +11734 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-shorthand-properties/6.24.1/package/package.json not in flight; writing +11735 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-spread/6.22.0/package/package.json written +11736 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-shorthand-properties/6.24.1/package/package.json written +11737 silly cache afterAdd babel-plugin-transform-es2015-modules-commonjs@6.26.0 +11738 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-modules-commonjs/6.26.0/package/package.json not in flight; writing +11739 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-modules-commonjs/6.26.0/package/package.json written +11740 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-parameters +11741 verbose headers { server: 'nginx/1.10.3', +11741 verbose headers 'content-type': 'application/json', +11741 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:16 GMT', +11741 verbose headers etag: 'W/"59ca6f40-12f46"', +11741 verbose headers 'content-encoding': 'gzip', +11741 verbose headers 'cache-control': 'max-age=300', +11741 verbose headers 'content-length': '7475', +11741 verbose headers 'accept-ranges': 'bytes', +11741 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11741 verbose headers via: '1.1 varnish', +11741 verbose headers age: '110', +11741 verbose headers connection: 'keep-alive', +11741 verbose headers 'x-served-by': 'cache-sin18030-SIN', +11741 verbose headers 'x-cache': 'HIT', +11741 verbose headers 'x-cache-hits': '2', +11741 verbose headers 'x-timer': 'S1506936875.610477,VS0,VE0', +11741 verbose headers vary: 'Accept-Encoding, Accept' } +11742 silly get cb [ 200, +11742 silly get { server: 'nginx/1.10.3', +11742 silly get 'content-type': 'application/json', +11742 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:16 GMT', +11742 silly get etag: 'W/"59ca6f40-12f46"', +11742 silly get 'content-encoding': 'gzip', +11742 silly get 'cache-control': 'max-age=300', +11742 silly get 'content-length': '7475', +11742 silly get 'accept-ranges': 'bytes', +11742 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11742 silly get via: '1.1 varnish', +11742 silly get age: '110', +11742 silly get connection: 'keep-alive', +11742 silly get 'x-served-by': 'cache-sin18030-SIN', +11742 silly get 'x-cache': 'HIT', +11742 silly get 'x-cache-hits': '2', +11742 silly get 'x-timer': 'S1506936875.610477,VS0,VE0', +11742 silly get vary: 'Accept-Encoding, Accept' } ] +11743 verbose get saving babel-plugin-transform-es2015-parameters to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-parameters/.cache.json +11744 silly resolveWithNewModule babel-plugin-transform-es2015-parameters@6.24.1 checking installable status +11745 silly cache add args [ 'babel-plugin-transform-es2015-parameters@^6.23.0', null ] +11746 verbose cache add spec babel-plugin-transform-es2015-parameters@^6.23.0 +11747 silly cache add parsed spec Result { +11747 silly cache add raw: 'babel-plugin-transform-es2015-parameters@^6.23.0', +11747 silly cache add scope: null, +11747 silly cache add name: 'babel-plugin-transform-es2015-parameters', +11747 silly cache add rawSpec: '^6.23.0', +11747 silly cache add spec: '>=6.23.0 <7.0.0', +11747 silly cache add type: 'range' } +11748 silly addNamed babel-plugin-transform-es2015-parameters@>=6.23.0 <7.0.0 +11749 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-parameters +11750 silly addNameRange { name: 'babel-plugin-transform-es2015-parameters', +11750 silly addNameRange range: '>=6.23.0 <7.0.0', +11750 silly addNameRange hasData: false } +11751 silly mapToRegistry name babel-plugin-transform-es2015-parameters +11752 silly mapToRegistry using default registry +11753 silly mapToRegistry registry https://registry.npmjs.org/ +11754 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-parameters +11755 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-parameters not in flight; fetching +11756 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals +11757 verbose headers { server: 'nginx/1.10.3', +11757 verbose headers 'content-type': 'application/json', +11757 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:03 GMT', +11757 verbose headers etag: 'W/"59ca6ef7-b320"', +11757 verbose headers 'content-encoding': 'gzip', +11757 verbose headers 'cache-control': 'max-age=300', +11757 verbose headers 'content-length': '4907', +11757 verbose headers 'accept-ranges': 'bytes', +11757 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11757 verbose headers via: '1.1 varnish', +11757 verbose headers age: '90', +11757 verbose headers connection: 'keep-alive', +11757 verbose headers 'x-served-by': 'cache-sin18023-SIN', +11757 verbose headers 'x-cache': 'HIT', +11757 verbose headers 'x-cache-hits': '1', +11757 verbose headers 'x-timer': 'S1506936875.641221,VS0,VE0', +11757 verbose headers vary: 'Accept-Encoding, Accept' } +11758 silly get cb [ 200, +11758 silly get { server: 'nginx/1.10.3', +11758 silly get 'content-type': 'application/json', +11758 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:03 GMT', +11758 silly get etag: 'W/"59ca6ef7-b320"', +11758 silly get 'content-encoding': 'gzip', +11758 silly get 'cache-control': 'max-age=300', +11758 silly get 'content-length': '4907', +11758 silly get 'accept-ranges': 'bytes', +11758 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11758 silly get via: '1.1 varnish', +11758 silly get age: '90', +11758 silly get connection: 'keep-alive', +11758 silly get 'x-served-by': 'cache-sin18023-SIN', +11758 silly get 'x-cache': 'HIT', +11758 silly get 'x-cache-hits': '1', +11758 silly get 'x-timer': 'S1506936875.641221,VS0,VE0', +11758 silly get vary: 'Accept-Encoding, Accept' } ] +11759 verbose get saving babel-plugin-transform-es2015-template-literals to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-template-literals/.cache.json +11760 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-parameters not expired, no request +11761 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-parameters', +11761 silly addNameRange range: '>=6.23.0 <7.0.0', +11761 silly addNameRange hasData: true } +11762 silly addNameRange versions [ 'babel-plugin-transform-es2015-parameters', +11762 silly addNameRange [ '6.0.2', +11762 silly addNameRange '6.0.14', +11762 silly addNameRange '6.0.18', +11762 silly addNameRange '6.1.4', +11762 silly addNameRange '6.1.5', +11762 silly addNameRange '6.1.17', +11762 silly addNameRange '6.1.18', +11762 silly addNameRange '6.2.4', +11762 silly addNameRange '6.3.13', +11762 silly addNameRange '6.3.18', +11762 silly addNameRange '6.3.21', +11762 silly addNameRange '6.3.25', +11762 silly addNameRange '6.3.26', +11762 silly addNameRange '6.4.0', +11762 silly addNameRange '6.4.2', +11762 silly addNameRange '6.4.5', +11762 silly addNameRange '6.5.0', +11762 silly addNameRange '6.5.0-1', +11762 silly addNameRange '6.6.0', +11762 silly addNameRange '6.6.4', +11762 silly addNameRange '6.6.5', +11762 silly addNameRange '6.7.0', +11762 silly addNameRange '6.8.0', +11762 silly addNameRange '6.9.0', +11762 silly addNameRange '6.11.3', +11762 silly addNameRange '6.11.4', +11762 silly addNameRange '6.16.0', +11762 silly addNameRange '6.17.0', +11762 silly addNameRange '6.18.0', +11762 silly addNameRange '6.21.0', +11762 silly addNameRange '6.22.0', +11762 silly addNameRange '6.23.0', +11762 silly addNameRange '7.0.0-alpha.1', +11762 silly addNameRange '7.0.0-alpha.3', +11762 silly addNameRange '7.0.0-alpha.7', +11762 silly addNameRange '6.24.1', +11762 silly addNameRange '7.0.0-alpha.8', +11762 silly addNameRange '7.0.0-alpha.9', +11762 silly addNameRange '7.0.0-alpha.10', +11762 silly addNameRange '7.0.0-alpha.11', +11762 silly addNameRange '7.0.0-alpha.12', +11762 silly addNameRange '7.0.0-alpha.14', +11762 silly addNameRange '7.0.0-alpha.15', +11762 silly addNameRange '7.0.0-alpha.16', +11762 silly addNameRange '7.0.0-alpha.17', +11762 silly addNameRange '7.0.0-alpha.18', +11762 silly addNameRange '7.0.0-alpha.19', +11762 silly addNameRange '7.0.0-alpha.20', +11762 silly addNameRange '7.0.0-beta.0', +11762 silly addNameRange '7.0.0-beta.1', +11762 silly addNameRange '7.0.0-beta.2' ] ] +11763 silly addNamed babel-plugin-transform-es2015-parameters@6.24.1 +11764 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-parameters +11765 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol +11766 verbose headers { server: 'nginx/1.10.3', +11766 verbose headers 'content-type': 'application/json', +11766 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:03 GMT', +11766 verbose headers etag: 'W/"59ca6ef7-c213"', +11766 verbose headers 'content-encoding': 'gzip', +11766 verbose headers 'cache-control': 'max-age=300', +11766 verbose headers 'content-length': '5173', +11766 verbose headers 'accept-ranges': 'bytes', +11766 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11766 verbose headers via: '1.1 varnish', +11766 verbose headers age: '142', +11766 verbose headers connection: 'keep-alive', +11766 verbose headers 'x-served-by': 'cache-sin18024-SIN', +11766 verbose headers 'x-cache': 'HIT', +11766 verbose headers 'x-cache-hits': '227', +11766 verbose headers 'x-timer': 'S1506936875.639065,VS0,VE0', +11766 verbose headers vary: 'Accept-Encoding, Accept' } +11767 silly get cb [ 200, +11767 silly get { server: 'nginx/1.10.3', +11767 silly get 'content-type': 'application/json', +11767 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:03 GMT', +11767 silly get etag: 'W/"59ca6ef7-c213"', +11767 silly get 'content-encoding': 'gzip', +11767 silly get 'cache-control': 'max-age=300', +11767 silly get 'content-length': '5173', +11767 silly get 'accept-ranges': 'bytes', +11767 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11767 silly get via: '1.1 varnish', +11767 silly get age: '142', +11767 silly get connection: 'keep-alive', +11767 silly get 'x-served-by': 'cache-sin18024-SIN', +11767 silly get 'x-cache': 'HIT', +11767 silly get 'x-cache-hits': '227', +11767 silly get 'x-timer': 'S1506936875.639065,VS0,VE0', +11767 silly get vary: 'Accept-Encoding, Accept' } ] +11768 verbose get saving babel-plugin-transform-es2015-typeof-symbol to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/.cache.json +11769 silly resolveWithNewModule babel-plugin-transform-es2015-template-literals@6.22.0 checking installable status +11770 silly cache add args [ 'babel-plugin-transform-es2015-template-literals@^6.22.0', +11770 silly cache add null ] +11771 verbose cache add spec babel-plugin-transform-es2015-template-literals@^6.22.0 +11772 silly cache add parsed spec Result { +11772 silly cache add raw: 'babel-plugin-transform-es2015-template-literals@^6.22.0', +11772 silly cache add scope: null, +11772 silly cache add name: 'babel-plugin-transform-es2015-template-literals', +11772 silly cache add rawSpec: '^6.22.0', +11772 silly cache add spec: '>=6.22.0 <7.0.0', +11772 silly cache add type: 'range' } +11773 silly addNamed babel-plugin-transform-es2015-template-literals@>=6.22.0 <7.0.0 +11774 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-template-literals +11775 silly addNameRange { name: 'babel-plugin-transform-es2015-template-literals', +11775 silly addNameRange range: '>=6.22.0 <7.0.0', +11775 silly addNameRange hasData: false } +11776 silly mapToRegistry name babel-plugin-transform-es2015-template-literals +11777 silly mapToRegistry using default registry +11778 silly mapToRegistry registry https://registry.npmjs.org/ +11779 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals +11780 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals not in flight; fetching +11781 silly cache afterAdd babel-plugin-transform-es2015-parameters@6.24.1 +11782 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-parameters/6.24.1/package/package.json not in flight; writing +11783 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex +11784 verbose headers { server: 'nginx/1.10.3', +11784 verbose headers 'content-type': 'application/json', +11784 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:25 GMT', +11784 verbose headers etag: 'W/"59ca6f0d-b6fc"', +11784 verbose headers 'content-encoding': 'gzip', +11784 verbose headers 'cache-control': 'max-age=300', +11784 verbose headers 'content-length': '5200', +11784 verbose headers 'accept-ranges': 'bytes', +11784 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11784 verbose headers via: '1.1 varnish', +11784 verbose headers age: '3', +11784 verbose headers connection: 'keep-alive', +11784 verbose headers 'x-served-by': 'cache-sin18021-SIN', +11784 verbose headers 'x-cache': 'HIT', +11784 verbose headers 'x-cache-hits': '1', +11784 verbose headers 'x-timer': 'S1506936875.644163,VS0,VE0', +11784 verbose headers vary: 'Accept-Encoding, Accept' } +11785 silly get cb [ 200, +11785 silly get { server: 'nginx/1.10.3', +11785 silly get 'content-type': 'application/json', +11785 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:25 GMT', +11785 silly get etag: 'W/"59ca6f0d-b6fc"', +11785 silly get 'content-encoding': 'gzip', +11785 silly get 'cache-control': 'max-age=300', +11785 silly get 'content-length': '5200', +11785 silly get 'accept-ranges': 'bytes', +11785 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11785 silly get via: '1.1 varnish', +11785 silly get age: '3', +11785 silly get connection: 'keep-alive', +11785 silly get 'x-served-by': 'cache-sin18021-SIN', +11785 silly get 'x-cache': 'HIT', +11785 silly get 'x-cache-hits': '1', +11785 silly get 'x-timer': 'S1506936875.644163,VS0,VE0', +11785 silly get vary: 'Accept-Encoding, Accept' } ] +11786 verbose get saving babel-plugin-transform-es2015-unicode-regex to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/.cache.json +11787 silly resolveWithNewModule babel-plugin-transform-es2015-typeof-symbol@6.23.0 checking installable status +11788 silly cache add args [ 'babel-plugin-transform-es2015-typeof-symbol@^6.23.0', null ] +11789 verbose cache add spec babel-plugin-transform-es2015-typeof-symbol@^6.23.0 +11790 silly cache add parsed spec Result { +11790 silly cache add raw: 'babel-plugin-transform-es2015-typeof-symbol@^6.23.0', +11790 silly cache add scope: null, +11790 silly cache add name: 'babel-plugin-transform-es2015-typeof-symbol', +11790 silly cache add rawSpec: '^6.23.0', +11790 silly cache add spec: '>=6.23.0 <7.0.0', +11790 silly cache add type: 'range' } +11791 silly addNamed babel-plugin-transform-es2015-typeof-symbol@>=6.23.0 <7.0.0 +11792 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-typeof-symbol +11793 silly addNameRange { name: 'babel-plugin-transform-es2015-typeof-symbol', +11793 silly addNameRange range: '>=6.23.0 <7.0.0', +11793 silly addNameRange hasData: false } +11794 silly mapToRegistry name babel-plugin-transform-es2015-typeof-symbol +11795 silly mapToRegistry using default registry +11796 silly mapToRegistry registry https://registry.npmjs.org/ +11797 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol +11798 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol not in flight; fetching +11799 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals not expired, no request +11800 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-template-literals', +11800 silly addNameRange range: '>=6.22.0 <7.0.0', +11800 silly addNameRange hasData: true } +11801 silly addNameRange versions [ 'babel-plugin-transform-es2015-template-literals', +11801 silly addNameRange [ '6.0.2', +11801 silly addNameRange '6.0.14', +11801 silly addNameRange '6.1.4', +11801 silly addNameRange '6.1.17', +11801 silly addNameRange '6.1.18', +11801 silly addNameRange '6.2.4', +11801 silly addNameRange '6.3.13', +11801 silly addNameRange '6.5.0', +11801 silly addNameRange '6.5.0-1', +11801 silly addNameRange '6.5.2', +11801 silly addNameRange '6.6.0', +11801 silly addNameRange '6.6.4', +11801 silly addNameRange '6.6.5', +11801 silly addNameRange '6.8.0', +11801 silly addNameRange '6.22.0', +11801 silly addNameRange '7.0.0-alpha.1', +11801 silly addNameRange '7.0.0-alpha.3', +11801 silly addNameRange '7.0.0-alpha.7', +11801 silly addNameRange '7.0.0-alpha.8', +11801 silly addNameRange '7.0.0-alpha.9', +11801 silly addNameRange '7.0.0-alpha.10', +11801 silly addNameRange '7.0.0-alpha.11', +11801 silly addNameRange '7.0.0-alpha.12', +11801 silly addNameRange '7.0.0-alpha.14', +11801 silly addNameRange '7.0.0-alpha.15', +11801 silly addNameRange '7.0.0-alpha.16', +11801 silly addNameRange '7.0.0-alpha.17', +11801 silly addNameRange '7.0.0-alpha.18', +11801 silly addNameRange '7.0.0-alpha.19', +11801 silly addNameRange '7.0.0-alpha.20', +11801 silly addNameRange '7.0.0-beta.0', +11801 silly addNameRange '7.0.0-beta.1', +11801 silly addNameRange '7.0.0-beta.2' ] ] +11802 silly addNamed babel-plugin-transform-es2015-template-literals@6.22.0 +11803 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-transform-es2015-template-literals +11804 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-parameters/6.24.1/package/package.json written +11805 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol not expired, no request +11806 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-typeof-symbol', +11806 silly addNameRange range: '>=6.23.0 <7.0.0', +11806 silly addNameRange hasData: true } +11807 silly addNameRange versions [ 'babel-plugin-transform-es2015-typeof-symbol', +11807 silly addNameRange [ '6.0.2', +11807 silly addNameRange '6.0.14', +11807 silly addNameRange '6.0.15', +11807 silly addNameRange '6.1.2', +11807 silly addNameRange '6.1.4', +11807 silly addNameRange '6.1.17', +11807 silly addNameRange '6.1.18', +11807 silly addNameRange '6.2.4', +11807 silly addNameRange '6.3.13', +11807 silly addNameRange '6.4.0', +11807 silly addNameRange '6.4.3', +11807 silly addNameRange '6.5.0', +11807 silly addNameRange '6.5.0-1', +11807 silly addNameRange '6.6.0', +11807 silly addNameRange '6.8.0', +11807 silly addNameRange '6.18.0', +11807 silly addNameRange '6.22.0', +11807 silly addNameRange '6.23.0', +11807 silly addNameRange '7.0.0-alpha.1', +11807 silly addNameRange '7.0.0-alpha.3', +11807 silly addNameRange '7.0.0-alpha.7', +11807 silly addNameRange '7.0.0-alpha.8', +11807 silly addNameRange '7.0.0-alpha.9', +11807 silly addNameRange '7.0.0-alpha.10', +11807 silly addNameRange '7.0.0-alpha.11', +11807 silly addNameRange '7.0.0-alpha.12', +11807 silly addNameRange '7.0.0-alpha.14', +11807 silly addNameRange '7.0.0-alpha.15', +11807 silly addNameRange '7.0.0-alpha.16', +11807 silly addNameRange '7.0.0-alpha.17', +11807 silly addNameRange '7.0.0-alpha.18', +11807 silly addNameRange '7.0.0-alpha.19', +11807 silly addNameRange '7.0.0-alpha.20', +11807 silly addNameRange '7.0.0-beta.0', +11807 silly addNameRange '7.0.0-beta.1', +11807 silly addNameRange '7.0.0-beta.2' ] ] +11808 silly addNamed babel-plugin-transform-es2015-typeof-symbol@6.23.0 +11809 verbose addNamed "6.23.0" is a plain semver version for babel-plugin-transform-es2015-typeof-symbol +11810 silly resolveWithNewModule babel-plugin-transform-es2015-unicode-regex@6.24.1 checking installable status +11811 silly cache add args [ 'babel-plugin-transform-es2015-unicode-regex@^6.22.0', null ] +11812 verbose cache add spec babel-plugin-transform-es2015-unicode-regex@^6.22.0 +11813 silly cache add parsed spec Result { +11813 silly cache add raw: 'babel-plugin-transform-es2015-unicode-regex@^6.22.0', +11813 silly cache add scope: null, +11813 silly cache add name: 'babel-plugin-transform-es2015-unicode-regex', +11813 silly cache add rawSpec: '^6.22.0', +11813 silly cache add spec: '>=6.22.0 <7.0.0', +11813 silly cache add type: 'range' } +11814 silly addNamed babel-plugin-transform-es2015-unicode-regex@>=6.22.0 <7.0.0 +11815 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-unicode-regex +11816 silly addNameRange { name: 'babel-plugin-transform-es2015-unicode-regex', +11816 silly addNameRange range: '>=6.22.0 <7.0.0', +11816 silly addNameRange hasData: false } +11817 silly mapToRegistry name babel-plugin-transform-es2015-unicode-regex +11818 silly mapToRegistry using default registry +11819 silly mapToRegistry registry https://registry.npmjs.org/ +11820 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex +11821 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex not in flight; fetching +11822 silly cache afterAdd babel-plugin-transform-es2015-template-literals@6.22.0 +11823 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-template-literals/6.22.0/package/package.json not in flight; writing +11824 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex not expired, no request +11825 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-unicode-regex', +11825 silly addNameRange range: '>=6.22.0 <7.0.0', +11825 silly addNameRange hasData: true } +11826 silly addNameRange versions [ 'babel-plugin-transform-es2015-unicode-regex', +11826 silly addNameRange [ '6.0.2', +11826 silly addNameRange '6.0.14', +11826 silly addNameRange '6.0.18', +11826 silly addNameRange '6.1.4', +11826 silly addNameRange '6.1.17', +11826 silly addNameRange '6.1.18', +11826 silly addNameRange '6.2.4', +11826 silly addNameRange '6.3.13', +11826 silly addNameRange '6.4.3', +11826 silly addNameRange '6.5.0', +11826 silly addNameRange '6.5.0-1', +11826 silly addNameRange '6.8.0', +11826 silly addNameRange '6.11.0', +11826 silly addNameRange '6.22.0', +11826 silly addNameRange '7.0.0-alpha.1', +11826 silly addNameRange '7.0.0-alpha.3', +11826 silly addNameRange '7.0.0-alpha.7', +11826 silly addNameRange '6.24.1', +11826 silly addNameRange '7.0.0-alpha.8', +11826 silly addNameRange '7.0.0-alpha.9', +11826 silly addNameRange '7.0.0-alpha.10', +11826 silly addNameRange '7.0.0-alpha.11', +11826 silly addNameRange '7.0.0-alpha.12', +11826 silly addNameRange '7.0.0-alpha.14', +11826 silly addNameRange '7.0.0-alpha.15', +11826 silly addNameRange '7.0.0-alpha.16', +11826 silly addNameRange '7.0.0-alpha.17', +11826 silly addNameRange '7.0.0-alpha.18', +11826 silly addNameRange '7.0.0-alpha.19', +11826 silly addNameRange '7.0.0-alpha.20', +11826 silly addNameRange '7.0.0-beta.0', +11826 silly addNameRange '7.0.0-beta.1', +11826 silly addNameRange '7.0.0-beta.2' ] ] +11827 silly addNamed babel-plugin-transform-es2015-unicode-regex@6.24.1 +11828 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-unicode-regex +11829 silly cache afterAdd babel-plugin-transform-es2015-typeof-symbol@6.23.0 +11830 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-typeof-symbol/6.23.0/package/package.json not in flight; writing +11831 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-template-literals/6.22.0/package/package.json written +11832 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-typeof-symbol/6.23.0/package/package.json written +11833 silly cache afterAdd babel-plugin-transform-es2015-unicode-regex@6.24.1 +11834 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-unicode-regex/6.24.1/package/package.json not in flight; writing +11835 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-unicode-regex/6.24.1/package/package.json written +11836 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex +11837 verbose headers { server: 'nginx/1.10.3', +11837 verbose headers 'content-type': 'application/json', +11837 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:25 GMT', +11837 verbose headers etag: 'W/"59ca6f0d-ad3a"', +11837 verbose headers 'content-encoding': 'gzip', +11837 verbose headers 'cache-control': 'max-age=300', +11837 verbose headers 'content-length': '4917', +11837 verbose headers 'accept-ranges': 'bytes', +11837 verbose headers date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11837 verbose headers via: '1.1 varnish', +11837 verbose headers age: '4', +11837 verbose headers connection: 'keep-alive', +11837 verbose headers 'x-served-by': 'cache-sin18021-SIN', +11837 verbose headers 'x-cache': 'HIT', +11837 verbose headers 'x-cache-hits': '1', +11837 verbose headers 'x-timer': 'S1506936875.676381,VS0,VE0', +11837 verbose headers vary: 'Accept-Encoding, Accept' } +11838 silly get cb [ 200, +11838 silly get { server: 'nginx/1.10.3', +11838 silly get 'content-type': 'application/json', +11838 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:25 GMT', +11838 silly get etag: 'W/"59ca6f0d-ad3a"', +11838 silly get 'content-encoding': 'gzip', +11838 silly get 'cache-control': 'max-age=300', +11838 silly get 'content-length': '4917', +11838 silly get 'accept-ranges': 'bytes', +11838 silly get date: 'Mon, 02 Oct 2017 09:34:34 GMT', +11838 silly get via: '1.1 varnish', +11838 silly get age: '4', +11838 silly get connection: 'keep-alive', +11838 silly get 'x-served-by': 'cache-sin18021-SIN', +11838 silly get 'x-cache': 'HIT', +11838 silly get 'x-cache-hits': '1', +11838 silly get 'x-timer': 'S1506936875.676381,VS0,VE0', +11838 silly get vary: 'Accept-Encoding, Accept' } ] +11839 verbose get saving babel-plugin-transform-es2015-sticky-regex to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/.cache.json +11840 silly resolveWithNewModule babel-plugin-transform-es2015-sticky-regex@6.24.1 checking installable status +11841 silly cache add args [ 'babel-plugin-transform-es2015-sticky-regex@^6.22.0', null ] +11842 verbose cache add spec babel-plugin-transform-es2015-sticky-regex@^6.22.0 +11843 silly cache add parsed spec Result { +11843 silly cache add raw: 'babel-plugin-transform-es2015-sticky-regex@^6.22.0', +11843 silly cache add scope: null, +11843 silly cache add name: 'babel-plugin-transform-es2015-sticky-regex', +11843 silly cache add rawSpec: '^6.22.0', +11843 silly cache add spec: '>=6.22.0 <7.0.0', +11843 silly cache add type: 'range' } +11844 silly addNamed babel-plugin-transform-es2015-sticky-regex@>=6.22.0 <7.0.0 +11845 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-sticky-regex +11846 silly addNameRange { name: 'babel-plugin-transform-es2015-sticky-regex', +11846 silly addNameRange range: '>=6.22.0 <7.0.0', +11846 silly addNameRange hasData: false } +11847 silly mapToRegistry name babel-plugin-transform-es2015-sticky-regex +11848 silly mapToRegistry using default registry +11849 silly mapToRegistry registry https://registry.npmjs.org/ +11850 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex +11851 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex not in flight; fetching +11852 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex not expired, no request +11853 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-sticky-regex', +11853 silly addNameRange range: '>=6.22.0 <7.0.0', +11853 silly addNameRange hasData: true } +11854 silly addNameRange versions [ 'babel-plugin-transform-es2015-sticky-regex', +11854 silly addNameRange [ '6.0.2', +11854 silly addNameRange '6.0.14', +11854 silly addNameRange '6.0.18', +11854 silly addNameRange '6.1.4', +11854 silly addNameRange '6.1.17', +11854 silly addNameRange '6.1.18', +11854 silly addNameRange '6.2.4', +11854 silly addNameRange '6.3.13', +11854 silly addNameRange '6.5.0', +11854 silly addNameRange '6.5.0-1', +11854 silly addNameRange '6.8.0', +11854 silly addNameRange '6.22.0', +11854 silly addNameRange '7.0.0-alpha.1', +11854 silly addNameRange '7.0.0-alpha.3', +11854 silly addNameRange '7.0.0-alpha.7', +11854 silly addNameRange '6.24.1', +11854 silly addNameRange '7.0.0-alpha.8', +11854 silly addNameRange '7.0.0-alpha.9', +11854 silly addNameRange '7.0.0-alpha.10', +11854 silly addNameRange '7.0.0-alpha.11', +11854 silly addNameRange '7.0.0-alpha.12', +11854 silly addNameRange '7.0.0-alpha.14', +11854 silly addNameRange '7.0.0-alpha.15', +11854 silly addNameRange '7.0.0-alpha.16', +11854 silly addNameRange '7.0.0-alpha.17', +11854 silly addNameRange '7.0.0-alpha.18', +11854 silly addNameRange '7.0.0-alpha.19', +11854 silly addNameRange '7.0.0-alpha.20', +11854 silly addNameRange '7.0.0-beta.0', +11854 silly addNameRange '7.0.0-beta.1', +11854 silly addNameRange '7.0.0-beta.2' ] ] +11855 silly addNamed babel-plugin-transform-es2015-sticky-regex@6.24.1 +11856 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-sticky-regex +11857 silly cache afterAdd babel-plugin-transform-es2015-sticky-regex@6.24.1 +11858 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-sticky-regex/6.24.1/package/package.json not in flight; writing +11859 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-sticky-regex/6.24.1/package/package.json written +11860 http 200 https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd +11861 verbose headers { server: 'nginx/1.10.3', +11861 verbose headers 'content-type': 'application/json', +11861 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:55 GMT', +11861 verbose headers etag: 'W/"59ca6f2b-eeaf"', +11861 verbose headers 'content-encoding': 'gzip', +11861 verbose headers 'cache-control': 'max-age=300', +11861 verbose headers 'content-length': '7427', +11861 verbose headers 'accept-ranges': 'bytes', +11861 verbose headers date: 'Mon, 02 Oct 2017 09:34:36 GMT', +11861 verbose headers via: '1.1 varnish', +11861 verbose headers age: '144', +11861 verbose headers connection: 'keep-alive', +11861 verbose headers 'x-served-by': 'cache-sin18031-SIN', +11861 verbose headers 'x-cache': 'HIT', +11861 verbose headers 'x-cache-hits': '1', +11861 verbose headers 'x-timer': 'S1506936876.126109,VS0,VE0', +11861 verbose headers vary: 'Accept-Encoding, Accept' } +11862 silly get cb [ 200, +11862 silly get { server: 'nginx/1.10.3', +11862 silly get 'content-type': 'application/json', +11862 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:55 GMT', +11862 silly get etag: 'W/"59ca6f2b-eeaf"', +11862 silly get 'content-encoding': 'gzip', +11862 silly get 'cache-control': 'max-age=300', +11862 silly get 'content-length': '7427', +11862 silly get 'accept-ranges': 'bytes', +11862 silly get date: 'Mon, 02 Oct 2017 09:34:36 GMT', +11862 silly get via: '1.1 varnish', +11862 silly get age: '144', +11862 silly get connection: 'keep-alive', +11862 silly get 'x-served-by': 'cache-sin18031-SIN', +11862 silly get 'x-cache': 'HIT', +11862 silly get 'x-cache-hits': '1', +11862 silly get 'x-timer': 'S1506936876.126109,VS0,VE0', +11862 silly get vary: 'Accept-Encoding, Accept' } ] +11863 verbose get saving babel-plugin-transform-es2015-modules-umd to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/.cache.json +11864 silly resolveWithNewModule babel-plugin-transform-es2015-modules-umd@6.24.1 checking installable status +11865 silly cache add args [ 'babel-plugin-transform-es2015-modules-umd@^6.23.0', null ] +11866 verbose cache add spec babel-plugin-transform-es2015-modules-umd@^6.23.0 +11867 silly cache add parsed spec Result { +11867 silly cache add raw: 'babel-plugin-transform-es2015-modules-umd@^6.23.0', +11867 silly cache add scope: null, +11867 silly cache add name: 'babel-plugin-transform-es2015-modules-umd', +11867 silly cache add rawSpec: '^6.23.0', +11867 silly cache add spec: '>=6.23.0 <7.0.0', +11867 silly cache add type: 'range' } +11868 silly addNamed babel-plugin-transform-es2015-modules-umd@>=6.23.0 <7.0.0 +11869 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-es2015-modules-umd +11870 silly addNameRange { name: 'babel-plugin-transform-es2015-modules-umd', +11870 silly addNameRange range: '>=6.23.0 <7.0.0', +11870 silly addNameRange hasData: false } +11871 silly mapToRegistry name babel-plugin-transform-es2015-modules-umd +11872 silly mapToRegistry using default registry +11873 silly mapToRegistry registry https://registry.npmjs.org/ +11874 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd +11875 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd not in flight; fetching +11876 verbose get https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd not expired, no request +11877 silly addNameRange number 2 { name: 'babel-plugin-transform-es2015-modules-umd', +11877 silly addNameRange range: '>=6.23.0 <7.0.0', +11877 silly addNameRange hasData: true } +11878 silly addNameRange versions [ 'babel-plugin-transform-es2015-modules-umd', +11878 silly addNameRange [ '6.0.2', +11878 silly addNameRange '6.0.14', +11878 silly addNameRange '6.0.15', +11878 silly addNameRange '6.1.4', +11878 silly addNameRange '6.1.5', +11878 silly addNameRange '6.1.17', +11878 silly addNameRange '6.1.18', +11878 silly addNameRange '6.2.4', +11878 silly addNameRange '6.3.13', +11878 silly addNameRange '6.4.0', +11878 silly addNameRange '6.4.3', +11878 silly addNameRange '6.5.0', +11878 silly addNameRange '6.5.0-1', +11878 silly addNameRange '6.6.0', +11878 silly addNameRange '6.6.5', +11878 silly addNameRange '6.8.0', +11878 silly addNameRange '6.12.0', +11878 silly addNameRange '6.18.0', +11878 silly addNameRange '6.22.0', +11878 silly addNameRange '6.23.0', +11878 silly addNameRange '7.0.0-alpha.1', +11878 silly addNameRange '6.24.0', +11878 silly addNameRange '7.0.0-alpha.3', +11878 silly addNameRange '7.0.0-alpha.7', +11878 silly addNameRange '6.24.1', +11878 silly addNameRange '7.0.0-alpha.8', +11878 silly addNameRange '7.0.0-alpha.9', +11878 silly addNameRange '7.0.0-alpha.10', +11878 silly addNameRange '7.0.0-alpha.11', +11878 silly addNameRange '7.0.0-alpha.12', +11878 silly addNameRange '7.0.0-alpha.14', +11878 silly addNameRange '7.0.0-alpha.15', +11878 silly addNameRange '7.0.0-alpha.16', +11878 silly addNameRange '7.0.0-alpha.17', +11878 silly addNameRange '7.0.0-alpha.18', +11878 silly addNameRange '7.0.0-alpha.19', +11878 silly addNameRange '7.0.0-alpha.20', +11878 silly addNameRange '7.0.0-beta.0', +11878 silly addNameRange '7.0.0-beta.1', +11878 silly addNameRange '7.0.0-beta.2' ] ] +11879 silly addNamed babel-plugin-transform-es2015-modules-umd@6.24.1 +11880 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-es2015-modules-umd +11881 silly cache afterAdd babel-plugin-transform-es2015-modules-umd@6.24.1 +11882 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-modules-umd/6.24.1/package/package.json not in flight; writing +11883 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-es2015-modules-umd/6.24.1/package/package.json written +11884 http 200 https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator +11885 verbose headers { server: 'nginx/1.10.3', +11885 verbose headers 'content-type': 'application/json', +11885 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:22 GMT', +11885 verbose headers etag: 'W/"59ca6f46-b3ae"', +11885 verbose headers 'content-encoding': 'gzip', +11885 verbose headers 'cache-control': 'max-age=300', +11885 verbose headers 'content-length': '5024', +11885 verbose headers 'accept-ranges': 'bytes', +11885 verbose headers date: 'Mon, 02 Oct 2017 09:34:36 GMT', +11885 verbose headers via: '1.1 varnish', +11885 verbose headers age: '0', +11885 verbose headers connection: 'keep-alive', +11885 verbose headers 'x-served-by': 'cache-sin18024-SIN', +11885 verbose headers 'x-cache': 'HIT', +11885 verbose headers 'x-cache-hits': '1', +11885 verbose headers 'x-timer': 'S1506936876.157576,VS0,VE80', +11885 verbose headers vary: 'Accept-Encoding, Accept' } +11886 silly get cb [ 200, +11886 silly get { server: 'nginx/1.10.3', +11886 silly get 'content-type': 'application/json', +11886 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:22 GMT', +11886 silly get etag: 'W/"59ca6f46-b3ae"', +11886 silly get 'content-encoding': 'gzip', +11886 silly get 'cache-control': 'max-age=300', +11886 silly get 'content-length': '5024', +11886 silly get 'accept-ranges': 'bytes', +11886 silly get date: 'Mon, 02 Oct 2017 09:34:36 GMT', +11886 silly get via: '1.1 varnish', +11886 silly get age: '0', +11886 silly get connection: 'keep-alive', +11886 silly get 'x-served-by': 'cache-sin18024-SIN', +11886 silly get 'x-cache': 'HIT', +11886 silly get 'x-cache-hits': '1', +11886 silly get 'x-timer': 'S1506936876.157576,VS0,VE80', +11886 silly get vary: 'Accept-Encoding, Accept' } ] +11887 verbose get saving babel-plugin-transform-exponentiation-operator to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-exponentiation-operator/.cache.json +11888 silly resolveWithNewModule babel-plugin-transform-exponentiation-operator@6.24.1 checking installable status +11889 silly cache add args [ 'babel-plugin-transform-exponentiation-operator@^6.22.0', +11889 silly cache add null ] +11890 verbose cache add spec babel-plugin-transform-exponentiation-operator@^6.22.0 +11891 silly cache add parsed spec Result { +11891 silly cache add raw: 'babel-plugin-transform-exponentiation-operator@^6.22.0', +11891 silly cache add scope: null, +11891 silly cache add name: 'babel-plugin-transform-exponentiation-operator', +11891 silly cache add rawSpec: '^6.22.0', +11891 silly cache add spec: '>=6.22.0 <7.0.0', +11891 silly cache add type: 'range' } +11892 silly addNamed babel-plugin-transform-exponentiation-operator@>=6.22.0 <7.0.0 +11893 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-exponentiation-operator +11894 silly addNameRange { name: 'babel-plugin-transform-exponentiation-operator', +11894 silly addNameRange range: '>=6.22.0 <7.0.0', +11894 silly addNameRange hasData: false } +11895 silly mapToRegistry name babel-plugin-transform-exponentiation-operator +11896 silly mapToRegistry using default registry +11897 silly mapToRegistry registry https://registry.npmjs.org/ +11898 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator +11899 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator not in flight; fetching +11900 verbose get https://registry.npmjs.org/babel-plugin-transform-exponentiation-operator not expired, no request +11901 silly addNameRange number 2 { name: 'babel-plugin-transform-exponentiation-operator', +11901 silly addNameRange range: '>=6.22.0 <7.0.0', +11901 silly addNameRange hasData: true } +11902 silly addNameRange versions [ 'babel-plugin-transform-exponentiation-operator', +11902 silly addNameRange [ '6.0.2', +11902 silly addNameRange '6.0.14', +11902 silly addNameRange '6.1.4', +11902 silly addNameRange '6.1.17', +11902 silly addNameRange '6.1.18', +11902 silly addNameRange '6.2.4', +11902 silly addNameRange '6.3.13', +11902 silly addNameRange '6.5.0', +11902 silly addNameRange '6.5.0-1', +11902 silly addNameRange '6.8.0', +11902 silly addNameRange '6.22.0', +11902 silly addNameRange '7.0.0-alpha.1', +11902 silly addNameRange '7.0.0-alpha.3', +11902 silly addNameRange '7.0.0-alpha.7', +11902 silly addNameRange '6.24.1', +11902 silly addNameRange '7.0.0-alpha.8', +11902 silly addNameRange '7.0.0-alpha.9', +11902 silly addNameRange '7.0.0-alpha.10', +11902 silly addNameRange '7.0.0-alpha.11', +11902 silly addNameRange '7.0.0-alpha.12', +11902 silly addNameRange '7.0.0-alpha.14', +11902 silly addNameRange '7.0.0-alpha.15', +11902 silly addNameRange '7.0.0-alpha.16', +11902 silly addNameRange '7.0.0-alpha.17', +11902 silly addNameRange '7.0.0-alpha.18', +11902 silly addNameRange '7.0.0-alpha.19', +11902 silly addNameRange '7.0.0-alpha.20', +11902 silly addNameRange '7.0.0-beta.0', +11902 silly addNameRange '7.0.0-beta.1', +11902 silly addNameRange '7.0.0-beta.2' ] ] +11903 silly addNamed babel-plugin-transform-exponentiation-operator@6.24.1 +11904 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-exponentiation-operator +11905 silly cache afterAdd babel-plugin-transform-exponentiation-operator@6.24.1 +11906 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-exponentiation-operator/6.24.1/package/package.json not in flight; writing +11907 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-exponentiation-operator/6.24.1/package/package.json written +11908 silly fetchNamedPackageData babel-helper-remap-async-to-generator +11909 silly mapToRegistry name babel-helper-remap-async-to-generator +11910 silly mapToRegistry using default registry +11911 silly mapToRegistry registry https://registry.npmjs.org/ +11912 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-remap-async-to-generator +11913 silly fetchNamedPackageData babel-plugin-syntax-async-functions +11914 silly mapToRegistry name babel-plugin-syntax-async-functions +11915 silly mapToRegistry using default registry +11916 silly mapToRegistry registry https://registry.npmjs.org/ +11917 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-async-functions +11918 verbose request uri https://registry.npmjs.org/babel-plugin-syntax-async-functions +11919 verbose request no auth needed +11920 info attempt registry request try #1 at 3:04:36 PM +11921 verbose etag W/"59a7093b-96b0" +11922 verbose lastModified Wed, 30 Aug 2017 18:51:39 GMT +11923 http request GET https://registry.npmjs.org/babel-plugin-syntax-async-functions +11924 verbose request uri https://registry.npmjs.org/babel-helper-remap-async-to-generator +11925 verbose request no auth needed +11926 info attempt registry request try #1 at 3:04:36 PM +11927 verbose etag W/"59a70c56-100cf" +11928 verbose lastModified Wed, 30 Aug 2017 19:04:54 GMT +11929 http request GET https://registry.npmjs.org/babel-helper-remap-async-to-generator +11930 http 200 https://registry.npmjs.org/babel-plugin-syntax-async-functions +11931 verbose headers { server: 'nginx/1.10.3', +11931 verbose headers 'content-type': 'application/json', +11931 verbose headers 'last-modified': 'Tue, 19 Sep 2017 22:52:04 GMT', +11931 verbose headers etag: 'W/"59c19f94-9bd1"', +11931 verbose headers 'content-encoding': 'gzip', +11931 verbose headers 'cache-control': 'max-age=300', +11931 verbose headers 'content-length': '4359', +11931 verbose headers 'accept-ranges': 'bytes', +11931 verbose headers date: 'Mon, 02 Oct 2017 09:34:36 GMT', +11931 verbose headers via: '1.1 varnish', +11931 verbose headers age: '126', +11931 verbose headers connection: 'keep-alive', +11931 verbose headers 'x-served-by': 'cache-sin18035-SIN', +11931 verbose headers 'x-cache': 'HIT', +11931 verbose headers 'x-cache-hits': '1', +11931 verbose headers 'x-timer': 'S1506936877.645263,VS0,VE0', +11931 verbose headers vary: 'Accept-Encoding, Accept' } +11932 silly get cb [ 200, +11932 silly get { server: 'nginx/1.10.3', +11932 silly get 'content-type': 'application/json', +11932 silly get 'last-modified': 'Tue, 19 Sep 2017 22:52:04 GMT', +11932 silly get etag: 'W/"59c19f94-9bd1"', +11932 silly get 'content-encoding': 'gzip', +11932 silly get 'cache-control': 'max-age=300', +11932 silly get 'content-length': '4359', +11932 silly get 'accept-ranges': 'bytes', +11932 silly get date: 'Mon, 02 Oct 2017 09:34:36 GMT', +11932 silly get via: '1.1 varnish', +11932 silly get age: '126', +11932 silly get connection: 'keep-alive', +11932 silly get 'x-served-by': 'cache-sin18035-SIN', +11932 silly get 'x-cache': 'HIT', +11932 silly get 'x-cache-hits': '1', +11932 silly get 'x-timer': 'S1506936877.645263,VS0,VE0', +11932 silly get vary: 'Accept-Encoding, Accept' } ] +11933 verbose get saving babel-plugin-syntax-async-functions to /home/wso2/.npm/registry.npmjs.org/babel-plugin-syntax-async-functions/.cache.json +11934 silly resolveWithNewModule babel-plugin-syntax-async-functions@6.13.0 checking installable status +11935 silly cache add args [ 'babel-plugin-syntax-async-functions@^6.8.0', null ] +11936 verbose cache add spec babel-plugin-syntax-async-functions@^6.8.0 +11937 silly cache add parsed spec Result { +11937 silly cache add raw: 'babel-plugin-syntax-async-functions@^6.8.0', +11937 silly cache add scope: null, +11937 silly cache add name: 'babel-plugin-syntax-async-functions', +11937 silly cache add rawSpec: '^6.8.0', +11937 silly cache add spec: '>=6.8.0 <7.0.0', +11937 silly cache add type: 'range' } +11938 silly addNamed babel-plugin-syntax-async-functions@>=6.8.0 <7.0.0 +11939 verbose addNamed ">=6.8.0 <7.0.0" is a valid semver range for babel-plugin-syntax-async-functions +11940 silly addNameRange { name: 'babel-plugin-syntax-async-functions', +11940 silly addNameRange range: '>=6.8.0 <7.0.0', +11940 silly addNameRange hasData: false } +11941 silly mapToRegistry name babel-plugin-syntax-async-functions +11942 silly mapToRegistry using default registry +11943 silly mapToRegistry registry https://registry.npmjs.org/ +11944 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-async-functions +11945 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-syntax-async-functions not in flight; fetching +11946 verbose get https://registry.npmjs.org/babel-plugin-syntax-async-functions not expired, no request +11947 silly addNameRange number 2 { name: 'babel-plugin-syntax-async-functions', +11947 silly addNameRange range: '>=6.8.0 <7.0.0', +11947 silly addNameRange hasData: true } +11948 silly addNameRange versions [ 'babel-plugin-syntax-async-functions', +11948 silly addNameRange [ '6.0.2', +11948 silly addNameRange '6.0.14', +11948 silly addNameRange '6.1.4', +11948 silly addNameRange '6.1.5', +11948 silly addNameRange '6.1.6', +11948 silly addNameRange '6.1.7', +11948 silly addNameRange '6.1.8', +11948 silly addNameRange '6.1.9', +11948 silly addNameRange '6.1.10', +11948 silly addNameRange '6.1.12', +11948 silly addNameRange '6.1.13', +11948 silly addNameRange '6.1.16', +11948 silly addNameRange '6.1.17', +11948 silly addNameRange '6.1.18', +11948 silly addNameRange '6.2.4', +11948 silly addNameRange '6.3.13', +11948 silly addNameRange '6.5.0', +11948 silly addNameRange '6.5.0-1', +11948 silly addNameRange '6.8.0', +11948 silly addNameRange '6.13.0', +11948 silly addNameRange '7.0.0-alpha.1', +11948 silly addNameRange '7.0.0-alpha.3', +11948 silly addNameRange '7.0.0-alpha.9', +11948 silly addNameRange '7.0.0-alpha.12', +11948 silly addNameRange '7.0.0-alpha.13', +11948 silly addNameRange '7.0.0-alpha.14', +11948 silly addNameRange '7.0.0-alpha.15', +11948 silly addNameRange '7.0.0-alpha.16', +11948 silly addNameRange '7.0.0-alpha.17', +11948 silly addNameRange '7.0.0-alpha.18', +11948 silly addNameRange '7.0.0-alpha.19', +11948 silly addNameRange '7.0.0-alpha.20', +11948 silly addNameRange '7.0.0-beta.0' ] ] +11949 silly addNamed babel-plugin-syntax-async-functions@6.13.0 +11950 verbose addNamed "6.13.0" is a plain semver version for babel-plugin-syntax-async-functions +11951 silly cache afterAdd babel-plugin-syntax-async-functions@6.13.0 +11952 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-async-functions/6.13.0/package/package.json not in flight; writing +11953 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-async-functions/6.13.0/package/package.json written +11954 http 200 https://registry.npmjs.org/babel-helper-remap-async-to-generator +11955 verbose headers { server: 'nginx/1.10.3', +11955 verbose headers 'content-type': 'application/json', +11955 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:20 GMT', +11955 verbose headers etag: 'W/"59ca6f44-111e2"', +11955 verbose headers 'content-encoding': 'gzip', +11955 verbose headers 'cache-control': 'max-age=300', +11955 verbose headers 'content-length': '6893', +11955 verbose headers 'accept-ranges': 'bytes', +11955 verbose headers date: 'Mon, 02 Oct 2017 09:34:36 GMT', +11955 verbose headers via: '1.1 varnish', +11955 verbose headers age: '126', +11955 verbose headers connection: 'keep-alive', +11955 verbose headers 'x-served-by': 'cache-sin18028-SIN', +11955 verbose headers 'x-cache': 'HIT', +11955 verbose headers 'x-cache-hits': '2', +11955 verbose headers 'x-timer': 'S1506936877.645315,VS0,VE0', +11955 verbose headers vary: 'Accept-Encoding, Accept' } +11956 silly get cb [ 200, +11956 silly get { server: 'nginx/1.10.3', +11956 silly get 'content-type': 'application/json', +11956 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:20 GMT', +11956 silly get etag: 'W/"59ca6f44-111e2"', +11956 silly get 'content-encoding': 'gzip', +11956 silly get 'cache-control': 'max-age=300', +11956 silly get 'content-length': '6893', +11956 silly get 'accept-ranges': 'bytes', +11956 silly get date: 'Mon, 02 Oct 2017 09:34:36 GMT', +11956 silly get via: '1.1 varnish', +11956 silly get age: '126', +11956 silly get connection: 'keep-alive', +11956 silly get 'x-served-by': 'cache-sin18028-SIN', +11956 silly get 'x-cache': 'HIT', +11956 silly get 'x-cache-hits': '2', +11956 silly get 'x-timer': 'S1506936877.645315,VS0,VE0', +11956 silly get vary: 'Accept-Encoding, Accept' } ] +11957 verbose get saving babel-helper-remap-async-to-generator to /home/wso2/.npm/registry.npmjs.org/babel-helper-remap-async-to-generator/.cache.json +11958 silly resolveWithNewModule babel-helper-remap-async-to-generator@6.24.1 checking installable status +11959 silly cache add args [ 'babel-helper-remap-async-to-generator@^6.24.1', null ] +11960 verbose cache add spec babel-helper-remap-async-to-generator@^6.24.1 +11961 silly cache add parsed spec Result { +11961 silly cache add raw: 'babel-helper-remap-async-to-generator@^6.24.1', +11961 silly cache add scope: null, +11961 silly cache add name: 'babel-helper-remap-async-to-generator', +11961 silly cache add rawSpec: '^6.24.1', +11961 silly cache add spec: '>=6.24.1 <7.0.0', +11961 silly cache add type: 'range' } +11962 silly addNamed babel-helper-remap-async-to-generator@>=6.24.1 <7.0.0 +11963 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-remap-async-to-generator +11964 silly addNameRange { name: 'babel-helper-remap-async-to-generator', +11964 silly addNameRange range: '>=6.24.1 <7.0.0', +11964 silly addNameRange hasData: false } +11965 silly mapToRegistry name babel-helper-remap-async-to-generator +11966 silly mapToRegistry using default registry +11967 silly mapToRegistry registry https://registry.npmjs.org/ +11968 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-remap-async-to-generator +11969 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-remap-async-to-generator not in flight; fetching +11970 verbose get https://registry.npmjs.org/babel-helper-remap-async-to-generator not expired, no request +11971 silly addNameRange number 2 { name: 'babel-helper-remap-async-to-generator', +11971 silly addNameRange range: '>=6.24.1 <7.0.0', +11971 silly addNameRange hasData: true } +11972 silly addNameRange versions [ 'babel-helper-remap-async-to-generator', +11972 silly addNameRange [ '6.0.0', +11972 silly addNameRange '6.0.2', +11972 silly addNameRange '6.0.14', +11972 silly addNameRange '6.0.15', +11972 silly addNameRange '6.0.16', +11972 silly addNameRange '6.1.2', +11972 silly addNameRange '6.1.4', +11972 silly addNameRange '6.1.5', +11972 silly addNameRange '6.1.6', +11972 silly addNameRange '6.1.7', +11972 silly addNameRange '6.1.8', +11972 silly addNameRange '6.1.9', +11972 silly addNameRange '6.1.10', +11972 silly addNameRange '6.1.12', +11972 silly addNameRange '6.1.13', +11972 silly addNameRange '6.1.16', +11972 silly addNameRange '6.1.17', +11972 silly addNameRange '6.1.18', +11972 silly addNameRange '6.2.4', +11972 silly addNameRange '6.3.0', +11972 silly addNameRange '6.3.13', +11972 silly addNameRange '6.4.5', +11972 silly addNameRange '6.4.6', +11972 silly addNameRange '6.5.0', +11972 silly addNameRange '6.5.0-1', +11972 silly addNameRange '6.6.0', +11972 silly addNameRange '6.6.5', +11972 silly addNameRange '6.7.0', +11972 silly addNameRange '6.8.0', +11972 silly addNameRange '6.11.2', +11972 silly addNameRange '6.16.0', +11972 silly addNameRange '6.16.2', +11972 silly addNameRange '6.18.0', +11972 silly addNameRange '6.20.0', +11972 silly addNameRange '6.20.3', +11972 silly addNameRange '6.22.0', +11972 silly addNameRange '7.0.0-alpha.1', +11972 silly addNameRange '7.0.0-alpha.3', +11972 silly addNameRange '7.0.0-alpha.7', +11972 silly addNameRange '6.24.1', +11972 silly addNameRange '7.0.0-alpha.8', +11972 silly addNameRange '7.0.0-alpha.9', +11972 silly addNameRange '7.0.0-alpha.10', +11972 silly addNameRange '7.0.0-alpha.11', +11972 silly addNameRange '7.0.0-alpha.12', +11972 silly addNameRange '7.0.0-alpha.14', +11972 silly addNameRange '7.0.0-alpha.15', +11972 silly addNameRange '7.0.0-alpha.16', +11972 silly addNameRange '7.0.0-alpha.17', +11972 silly addNameRange '7.0.0-alpha.18', +11972 silly addNameRange '7.0.0-alpha.19', +11972 silly addNameRange '7.0.0-alpha.20', +11972 silly addNameRange '7.0.0-beta.0', +11972 silly addNameRange '7.0.0-beta.1', +11972 silly addNameRange '7.0.0-beta.2' ] ] +11973 silly addNamed babel-helper-remap-async-to-generator@6.24.1 +11974 verbose addNamed "6.24.1" is a plain semver version for babel-helper-remap-async-to-generator +11975 silly cache afterAdd babel-helper-remap-async-to-generator@6.24.1 +11976 verbose afterAdd /home/wso2/.npm/babel-helper-remap-async-to-generator/6.24.1/package/package.json not in flight; writing +11977 verbose afterAdd /home/wso2/.npm/babel-helper-remap-async-to-generator/6.24.1/package/package.json written +11978 silly fetchNamedPackageData babel-helper-optimise-call-expression +11979 silly mapToRegistry name babel-helper-optimise-call-expression +11980 silly mapToRegistry using default registry +11981 silly mapToRegistry registry https://registry.npmjs.org/ +11982 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-optimise-call-expression +11983 silly fetchNamedPackageData babel-helper-replace-supers +11984 silly mapToRegistry name babel-helper-replace-supers +11985 silly mapToRegistry using default registry +11986 silly mapToRegistry registry https://registry.npmjs.org/ +11987 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-replace-supers +11988 silly fetchNamedPackageData babel-helper-define-map +11989 silly mapToRegistry name babel-helper-define-map +11990 silly mapToRegistry using default registry +11991 silly mapToRegistry registry https://registry.npmjs.org/ +11992 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-define-map +11993 verbose request uri https://registry.npmjs.org/babel-helper-optimise-call-expression +11994 verbose request no auth needed +11995 info attempt registry request try #1 at 3:04:36 PM +11996 verbose etag W/"59a70c0d-b5ff" +11997 verbose lastModified Wed, 30 Aug 2017 19:03:41 GMT +11998 http request GET https://registry.npmjs.org/babel-helper-optimise-call-expression +11999 verbose request uri https://registry.npmjs.org/babel-helper-define-map +12000 verbose request no auth needed +12001 info attempt registry request try #1 at 3:04:36 PM +12002 verbose etag W/"59a70c4a-d270" +12003 verbose lastModified Wed, 30 Aug 2017 19:04:42 GMT +12004 http request GET https://registry.npmjs.org/babel-helper-define-map +12005 verbose request uri https://registry.npmjs.org/babel-helper-replace-supers +12006 verbose request no auth needed +12007 info attempt registry request try #1 at 3:04:36 PM +12008 verbose etag W/"59a70c46-e586" +12009 verbose lastModified Wed, 30 Aug 2017 19:04:38 GMT +12010 http request GET https://registry.npmjs.org/babel-helper-replace-supers +12011 http 200 https://registry.npmjs.org/babel-helper-optimise-call-expression +12012 verbose headers { server: 'nginx/1.10.3', +12012 verbose headers 'content-type': 'application/json', +12012 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:22 GMT', +12012 verbose headers etag: 'W/"59ca6f0a-c5ef"', +12012 verbose headers 'content-encoding': 'gzip', +12012 verbose headers 'cache-control': 'max-age=300', +12012 verbose headers 'content-length': '5198', +12012 verbose headers 'accept-ranges': 'bytes', +12012 verbose headers date: 'Mon, 02 Oct 2017 09:34:37 GMT', +12012 verbose headers via: '1.1 varnish', +12012 verbose headers age: '72', +12012 verbose headers connection: 'keep-alive', +12012 verbose headers 'x-served-by': 'cache-sin18020-SIN', +12012 verbose headers 'x-cache': 'HIT', +12012 verbose headers 'x-cache-hits': '1', +12012 verbose headers 'x-timer': 'S1506936877.088520,VS0,VE0', +12012 verbose headers vary: 'Accept-Encoding, Accept' } +12013 silly get cb [ 200, +12013 silly get { server: 'nginx/1.10.3', +12013 silly get 'content-type': 'application/json', +12013 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:22 GMT', +12013 silly get etag: 'W/"59ca6f0a-c5ef"', +12013 silly get 'content-encoding': 'gzip', +12013 silly get 'cache-control': 'max-age=300', +12013 silly get 'content-length': '5198', +12013 silly get 'accept-ranges': 'bytes', +12013 silly get date: 'Mon, 02 Oct 2017 09:34:37 GMT', +12013 silly get via: '1.1 varnish', +12013 silly get age: '72', +12013 silly get connection: 'keep-alive', +12013 silly get 'x-served-by': 'cache-sin18020-SIN', +12013 silly get 'x-cache': 'HIT', +12013 silly get 'x-cache-hits': '1', +12013 silly get 'x-timer': 'S1506936877.088520,VS0,VE0', +12013 silly get vary: 'Accept-Encoding, Accept' } ] +12014 verbose get saving babel-helper-optimise-call-expression to /home/wso2/.npm/registry.npmjs.org/babel-helper-optimise-call-expression/.cache.json +12015 http 200 https://registry.npmjs.org/babel-helper-define-map +12016 verbose headers { server: 'nginx/1.10.3', +12016 verbose headers 'content-type': 'application/json', +12016 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:09 GMT', +12016 verbose headers etag: 'W/"59ca6f39-e1b8"', +12016 verbose headers 'content-encoding': 'gzip', +12016 verbose headers 'cache-control': 'max-age=300', +12016 verbose headers 'content-length': '6096', +12016 verbose headers 'accept-ranges': 'bytes', +12016 verbose headers date: 'Mon, 02 Oct 2017 09:34:37 GMT', +12016 verbose headers via: '1.1 varnish', +12016 verbose headers age: '72', +12016 verbose headers connection: 'keep-alive', +12016 verbose headers 'x-served-by': 'cache-sin18031-SIN', +12016 verbose headers 'x-cache': 'HIT', +12016 verbose headers 'x-cache-hits': '2', +12016 verbose headers 'x-timer': 'S1506936877.100369,VS0,VE0', +12016 verbose headers vary: 'Accept-Encoding, Accept' } +12017 silly get cb [ 200, +12017 silly get { server: 'nginx/1.10.3', +12017 silly get 'content-type': 'application/json', +12017 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:09 GMT', +12017 silly get etag: 'W/"59ca6f39-e1b8"', +12017 silly get 'content-encoding': 'gzip', +12017 silly get 'cache-control': 'max-age=300', +12017 silly get 'content-length': '6096', +12017 silly get 'accept-ranges': 'bytes', +12017 silly get date: 'Mon, 02 Oct 2017 09:34:37 GMT', +12017 silly get via: '1.1 varnish', +12017 silly get age: '72', +12017 silly get connection: 'keep-alive', +12017 silly get 'x-served-by': 'cache-sin18031-SIN', +12017 silly get 'x-cache': 'HIT', +12017 silly get 'x-cache-hits': '2', +12017 silly get 'x-timer': 'S1506936877.100369,VS0,VE0', +12017 silly get vary: 'Accept-Encoding, Accept' } ] +12018 verbose get saving babel-helper-define-map to /home/wso2/.npm/registry.npmjs.org/babel-helper-define-map/.cache.json +12019 silly resolveWithNewModule babel-helper-optimise-call-expression@6.24.1 checking installable status +12020 silly cache add args [ 'babel-helper-optimise-call-expression@^6.24.1', null ] +12021 verbose cache add spec babel-helper-optimise-call-expression@^6.24.1 +12022 silly cache add parsed spec Result { +12022 silly cache add raw: 'babel-helper-optimise-call-expression@^6.24.1', +12022 silly cache add scope: null, +12022 silly cache add name: 'babel-helper-optimise-call-expression', +12022 silly cache add rawSpec: '^6.24.1', +12022 silly cache add spec: '>=6.24.1 <7.0.0', +12022 silly cache add type: 'range' } +12023 silly addNamed babel-helper-optimise-call-expression@>=6.24.1 <7.0.0 +12024 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-optimise-call-expression +12025 silly addNameRange { name: 'babel-helper-optimise-call-expression', +12025 silly addNameRange range: '>=6.24.1 <7.0.0', +12025 silly addNameRange hasData: false } +12026 silly mapToRegistry name babel-helper-optimise-call-expression +12027 silly mapToRegistry using default registry +12028 silly mapToRegistry registry https://registry.npmjs.org/ +12029 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-optimise-call-expression +12030 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-optimise-call-expression not in flight; fetching +12031 silly resolveWithNewModule babel-helper-define-map@6.26.0 checking installable status +12032 silly cache add args [ 'babel-helper-define-map@^6.24.1', null ] +12033 verbose cache add spec babel-helper-define-map@^6.24.1 +12034 silly cache add parsed spec Result { +12034 silly cache add raw: 'babel-helper-define-map@^6.24.1', +12034 silly cache add scope: null, +12034 silly cache add name: 'babel-helper-define-map', +12034 silly cache add rawSpec: '^6.24.1', +12034 silly cache add spec: '>=6.24.1 <7.0.0', +12034 silly cache add type: 'range' } +12035 silly addNamed babel-helper-define-map@>=6.24.1 <7.0.0 +12036 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-define-map +12037 silly addNameRange { name: 'babel-helper-define-map', +12037 silly addNameRange range: '>=6.24.1 <7.0.0', +12037 silly addNameRange hasData: false } +12038 silly mapToRegistry name babel-helper-define-map +12039 silly mapToRegistry using default registry +12040 silly mapToRegistry registry https://registry.npmjs.org/ +12041 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-define-map +12042 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-define-map not in flight; fetching +12043 verbose get https://registry.npmjs.org/babel-helper-optimise-call-expression not expired, no request +12044 silly addNameRange number 2 { name: 'babel-helper-optimise-call-expression', +12044 silly addNameRange range: '>=6.24.1 <7.0.0', +12044 silly addNameRange hasData: true } +12045 silly addNameRange versions [ 'babel-helper-optimise-call-expression', +12045 silly addNameRange [ '6.0.0', +12045 silly addNameRange '6.0.2', +12045 silly addNameRange '6.0.14', +12045 silly addNameRange '6.0.15', +12045 silly addNameRange '6.1.5', +12045 silly addNameRange '6.1.6', +12045 silly addNameRange '6.1.7', +12045 silly addNameRange '6.1.8', +12045 silly addNameRange '6.1.9', +12045 silly addNameRange '6.1.10', +12045 silly addNameRange '6.1.12', +12045 silly addNameRange '6.1.13', +12045 silly addNameRange '6.1.16', +12045 silly addNameRange '6.1.17', +12045 silly addNameRange '6.1.18', +12045 silly addNameRange '6.2.4', +12045 silly addNameRange '6.3.13', +12045 silly addNameRange '6.5.0', +12045 silly addNameRange '6.5.0-1', +12045 silly addNameRange '6.6.0', +12045 silly addNameRange '6.8.0', +12045 silly addNameRange '6.18.0', +12045 silly addNameRange '6.22.0', +12045 silly addNameRange '6.23.0', +12045 silly addNameRange '7.0.0-alpha.1', +12045 silly addNameRange '7.0.0-alpha.3', +12045 silly addNameRange '7.0.0-alpha.7', +12045 silly addNameRange '6.24.1', +12045 silly addNameRange '7.0.0-alpha.9', +12045 silly addNameRange '7.0.0-alpha.10', +12045 silly addNameRange '7.0.0-alpha.11', +12045 silly addNameRange '7.0.0-alpha.12', +12045 silly addNameRange '7.0.0-alpha.14', +12045 silly addNameRange '7.0.0-alpha.15', +12045 silly addNameRange '7.0.0-alpha.16', +12045 silly addNameRange '7.0.0-alpha.17', +12045 silly addNameRange '7.0.0-alpha.18', +12045 silly addNameRange '7.0.0-alpha.19', +12045 silly addNameRange '7.0.0-alpha.20', +12045 silly addNameRange '7.0.0-beta.0', +12045 silly addNameRange '7.0.0-beta.1', +12045 silly addNameRange '7.0.0-beta.2' ] ] +12046 silly addNamed babel-helper-optimise-call-expression@6.24.1 +12047 verbose addNamed "6.24.1" is a plain semver version for babel-helper-optimise-call-expression +12048 verbose get https://registry.npmjs.org/babel-helper-define-map not expired, no request +12049 silly addNameRange number 2 { name: 'babel-helper-define-map', +12049 silly addNameRange range: '>=6.24.1 <7.0.0', +12049 silly addNameRange hasData: true } +12050 silly addNameRange versions [ 'babel-helper-define-map', +12050 silly addNameRange [ '6.0.0', +12050 silly addNameRange '6.0.2', +12050 silly addNameRange '6.0.14', +12050 silly addNameRange '6.0.15', +12050 silly addNameRange '6.1.5', +12050 silly addNameRange '6.1.6', +12050 silly addNameRange '6.1.7', +12050 silly addNameRange '6.1.8', +12050 silly addNameRange '6.1.9', +12050 silly addNameRange '6.1.10', +12050 silly addNameRange '6.1.11', +12050 silly addNameRange '6.1.12', +12050 silly addNameRange '6.1.13', +12050 silly addNameRange '6.1.16', +12050 silly addNameRange '6.1.17', +12050 silly addNameRange '6.1.18', +12050 silly addNameRange '6.2.0', +12050 silly addNameRange '6.2.4', +12050 silly addNameRange '6.3.13', +12050 silly addNameRange '6.4.5', +12050 silly addNameRange '6.5.0', +12050 silly addNameRange '6.5.0-1', +12050 silly addNameRange '6.6.0', +12050 silly addNameRange '6.6.4', +12050 silly addNameRange '6.6.5', +12050 silly addNameRange '6.8.0', +12050 silly addNameRange '6.9.0', +12050 silly addNameRange '6.18.0', +12050 silly addNameRange '6.22.0', +12050 silly addNameRange '6.23.0', +12050 silly addNameRange '7.0.0-alpha.1', +12050 silly addNameRange '7.0.0-alpha.3', +12050 silly addNameRange '7.0.0-alpha.7', +12050 silly addNameRange '6.24.1', +12050 silly addNameRange '7.0.0-alpha.8', +12050 silly addNameRange '7.0.0-alpha.9', +12050 silly addNameRange '7.0.0-alpha.10', +12050 silly addNameRange '7.0.0-alpha.11', +12050 silly addNameRange '7.0.0-alpha.12', +12050 silly addNameRange '7.0.0-alpha.14', +12050 silly addNameRange '7.0.0-alpha.15', +12050 silly addNameRange '7.0.0-alpha.16', +12050 silly addNameRange '7.0.0-alpha.17', +12050 silly addNameRange '7.0.0-alpha.18', +12050 silly addNameRange '7.0.0-alpha.19', +12050 silly addNameRange '6.26.0', +12050 silly addNameRange '7.0.0-alpha.20', +12050 silly addNameRange '7.0.0-beta.0', +12050 silly addNameRange '7.0.0-beta.1', +12050 silly addNameRange '7.0.0-beta.2' ] ] +12051 silly addNamed babel-helper-define-map@6.26.0 +12052 verbose addNamed "6.26.0" is a plain semver version for babel-helper-define-map +12053 silly cache afterAdd babel-helper-optimise-call-expression@6.24.1 +12054 verbose afterAdd /home/wso2/.npm/babel-helper-optimise-call-expression/6.24.1/package/package.json not in flight; writing +12055 silly cache afterAdd babel-helper-define-map@6.26.0 +12056 verbose afterAdd /home/wso2/.npm/babel-helper-define-map/6.26.0/package/package.json not in flight; writing +12057 verbose afterAdd /home/wso2/.npm/babel-helper-optimise-call-expression/6.24.1/package/package.json written +12058 verbose afterAdd /home/wso2/.npm/babel-helper-define-map/6.26.0/package/package.json written +12059 http 200 https://registry.npmjs.org/babel-helper-replace-supers +12060 verbose headers { server: 'nginx/1.10.3', +12060 verbose headers 'content-type': 'application/json', +12060 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:05 GMT', +12060 verbose headers etag: 'W/"59ca6f35-f628"', +12060 verbose headers 'content-encoding': 'gzip', +12060 verbose headers 'cache-control': 'max-age=300', +12060 verbose headers 'content-length': '6591', +12060 verbose headers 'accept-ranges': 'bytes', +12060 verbose headers date: 'Mon, 02 Oct 2017 09:34:37 GMT', +12060 verbose headers via: '1.1 varnish', +12060 verbose headers age: '72', +12060 verbose headers connection: 'keep-alive', +12060 verbose headers 'x-served-by': 'cache-sin18020-SIN', +12060 verbose headers 'x-cache': 'HIT', +12060 verbose headers 'x-cache-hits': '17', +12060 verbose headers 'x-timer': 'S1506936877.151305,VS0,VE0', +12060 verbose headers vary: 'Accept-Encoding, Accept' } +12061 silly get cb [ 200, +12061 silly get { server: 'nginx/1.10.3', +12061 silly get 'content-type': 'application/json', +12061 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:05 GMT', +12061 silly get etag: 'W/"59ca6f35-f628"', +12061 silly get 'content-encoding': 'gzip', +12061 silly get 'cache-control': 'max-age=300', +12061 silly get 'content-length': '6591', +12061 silly get 'accept-ranges': 'bytes', +12061 silly get date: 'Mon, 02 Oct 2017 09:34:37 GMT', +12061 silly get via: '1.1 varnish', +12061 silly get age: '72', +12061 silly get connection: 'keep-alive', +12061 silly get 'x-served-by': 'cache-sin18020-SIN', +12061 silly get 'x-cache': 'HIT', +12061 silly get 'x-cache-hits': '17', +12061 silly get 'x-timer': 'S1506936877.151305,VS0,VE0', +12061 silly get vary: 'Accept-Encoding, Accept' } ] +12062 verbose get saving babel-helper-replace-supers to /home/wso2/.npm/registry.npmjs.org/babel-helper-replace-supers/.cache.json +12063 silly resolveWithNewModule babel-helper-replace-supers@6.24.1 checking installable status +12064 silly cache add args [ 'babel-helper-replace-supers@^6.24.1', null ] +12065 verbose cache add spec babel-helper-replace-supers@^6.24.1 +12066 silly cache add parsed spec Result { +12066 silly cache add raw: 'babel-helper-replace-supers@^6.24.1', +12066 silly cache add scope: null, +12066 silly cache add name: 'babel-helper-replace-supers', +12066 silly cache add rawSpec: '^6.24.1', +12066 silly cache add spec: '>=6.24.1 <7.0.0', +12066 silly cache add type: 'range' } +12067 silly addNamed babel-helper-replace-supers@>=6.24.1 <7.0.0 +12068 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-replace-supers +12069 silly addNameRange { name: 'babel-helper-replace-supers', +12069 silly addNameRange range: '>=6.24.1 <7.0.0', +12069 silly addNameRange hasData: false } +12070 silly mapToRegistry name babel-helper-replace-supers +12071 silly mapToRegistry using default registry +12072 silly mapToRegistry registry https://registry.npmjs.org/ +12073 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-replace-supers +12074 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-replace-supers not in flight; fetching +12075 verbose get https://registry.npmjs.org/babel-helper-replace-supers not expired, no request +12076 silly addNameRange number 2 { name: 'babel-helper-replace-supers', +12076 silly addNameRange range: '>=6.24.1 <7.0.0', +12076 silly addNameRange hasData: true } +12077 silly addNameRange versions [ 'babel-helper-replace-supers', +12077 silly addNameRange [ '6.0.0', +12077 silly addNameRange '6.0.2', +12077 silly addNameRange '6.0.14', +12077 silly addNameRange '6.0.15', +12077 silly addNameRange '6.0.18', +12077 silly addNameRange '6.1.5', +12077 silly addNameRange '6.1.6', +12077 silly addNameRange '6.1.7', +12077 silly addNameRange '6.1.8', +12077 silly addNameRange '6.1.9', +12077 silly addNameRange '6.1.10', +12077 silly addNameRange '6.1.12', +12077 silly addNameRange '6.1.13', +12077 silly addNameRange '6.1.16', +12077 silly addNameRange '6.1.17', +12077 silly addNameRange '6.1.18', +12077 silly addNameRange '6.2.0', +12077 silly addNameRange '6.2.4', +12077 silly addNameRange '6.3.13', +12077 silly addNameRange '6.5.0', +12077 silly addNameRange '6.5.0-1', +12077 silly addNameRange '6.6.0', +12077 silly addNameRange '6.6.4', +12077 silly addNameRange '6.6.5', +12077 silly addNameRange '6.7.0', +12077 silly addNameRange '6.8.0', +12077 silly addNameRange '6.14.0', +12077 silly addNameRange '6.16.0', +12077 silly addNameRange '6.18.0', +12077 silly addNameRange '6.22.0', +12077 silly addNameRange '6.23.0', +12077 silly addNameRange '7.0.0-alpha.1', +12077 silly addNameRange '7.0.0-alpha.3', +12077 silly addNameRange '7.0.0-alpha.7', +12077 silly addNameRange '6.24.1', +12077 silly addNameRange '7.0.0-alpha.8', +12077 silly addNameRange '7.0.0-alpha.9', +12077 silly addNameRange '7.0.0-alpha.10', +12077 silly addNameRange '7.0.0-alpha.11', +12077 silly addNameRange '7.0.0-alpha.12', +12077 silly addNameRange '7.0.0-alpha.14', +12077 silly addNameRange '7.0.0-alpha.15', +12077 silly addNameRange '7.0.0-alpha.16', +12077 silly addNameRange '7.0.0-alpha.17', +12077 silly addNameRange '7.0.0-alpha.18', +12077 silly addNameRange '7.0.0-alpha.19', +12077 silly addNameRange '7.0.0-alpha.20', +12077 silly addNameRange '7.0.0-beta.0', +12077 silly addNameRange '7.0.0-beta.1', +12077 silly addNameRange '7.0.0-beta.2' ] ] +12078 silly addNamed babel-helper-replace-supers@6.24.1 +12079 verbose addNamed "6.24.1" is a plain semver version for babel-helper-replace-supers +12080 silly cache afterAdd babel-helper-replace-supers@6.24.1 +12081 verbose afterAdd /home/wso2/.npm/babel-helper-replace-supers/6.24.1/package/package.json not in flight; writing +12082 verbose afterAdd /home/wso2/.npm/babel-helper-replace-supers/6.24.1/package/package.json written +12083 silly fetchNamedPackageData babel-plugin-transform-strict-mode +12084 silly mapToRegistry name babel-plugin-transform-strict-mode +12085 silly mapToRegistry using default registry +12086 silly mapToRegistry registry https://registry.npmjs.org/ +12087 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-strict-mode +12088 verbose request uri https://registry.npmjs.org/babel-plugin-transform-strict-mode +12089 verbose request no auth needed +12090 info attempt registry request try #1 at 3:04:37 PM +12091 verbose etag W/"59a70c20-b75e" +12092 verbose lastModified Wed, 30 Aug 2017 19:04:00 GMT +12093 http request GET https://registry.npmjs.org/babel-plugin-transform-strict-mode +12094 http 200 https://registry.npmjs.org/babel-plugin-transform-strict-mode +12095 verbose headers { server: 'nginx/1.10.3', +12095 verbose headers 'content-type': 'application/json', +12095 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:35 GMT', +12095 verbose headers etag: 'W/"59ca6f17-c885"', +12095 verbose headers 'content-encoding': 'gzip', +12095 verbose headers 'cache-control': 'max-age=300', +12095 verbose headers 'content-length': '5806', +12095 verbose headers 'accept-ranges': 'bytes', +12095 verbose headers date: 'Mon, 02 Oct 2017 09:34:37 GMT', +12095 verbose headers via: '1.1 varnish', +12095 verbose headers age: '70', +12095 verbose headers connection: 'keep-alive', +12095 verbose headers 'x-served-by': 'cache-sin18031-SIN', +12095 verbose headers 'x-cache': 'HIT', +12095 verbose headers 'x-cache-hits': '1', +12095 verbose headers 'x-timer': 'S1506936878.623730,VS0,VE0', +12095 verbose headers vary: 'Accept-Encoding, Accept' } +12096 silly get cb [ 200, +12096 silly get { server: 'nginx/1.10.3', +12096 silly get 'content-type': 'application/json', +12096 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:35 GMT', +12096 silly get etag: 'W/"59ca6f17-c885"', +12096 silly get 'content-encoding': 'gzip', +12096 silly get 'cache-control': 'max-age=300', +12096 silly get 'content-length': '5806', +12096 silly get 'accept-ranges': 'bytes', +12096 silly get date: 'Mon, 02 Oct 2017 09:34:37 GMT', +12096 silly get via: '1.1 varnish', +12096 silly get age: '70', +12096 silly get connection: 'keep-alive', +12096 silly get 'x-served-by': 'cache-sin18031-SIN', +12096 silly get 'x-cache': 'HIT', +12096 silly get 'x-cache-hits': '1', +12096 silly get 'x-timer': 'S1506936878.623730,VS0,VE0', +12096 silly get vary: 'Accept-Encoding, Accept' } ] +12097 verbose get saving babel-plugin-transform-strict-mode to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-strict-mode/.cache.json +12098 silly resolveWithNewModule babel-plugin-transform-strict-mode@6.24.1 checking installable status +12099 silly cache add args [ 'babel-plugin-transform-strict-mode@^6.24.1', null ] +12100 verbose cache add spec babel-plugin-transform-strict-mode@^6.24.1 +12101 silly cache add parsed spec Result { +12101 silly cache add raw: 'babel-plugin-transform-strict-mode@^6.24.1', +12101 silly cache add scope: null, +12101 silly cache add name: 'babel-plugin-transform-strict-mode', +12101 silly cache add rawSpec: '^6.24.1', +12101 silly cache add spec: '>=6.24.1 <7.0.0', +12101 silly cache add type: 'range' } +12102 silly addNamed babel-plugin-transform-strict-mode@>=6.24.1 <7.0.0 +12103 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-plugin-transform-strict-mode +12104 silly addNameRange { name: 'babel-plugin-transform-strict-mode', +12104 silly addNameRange range: '>=6.24.1 <7.0.0', +12104 silly addNameRange hasData: false } +12105 silly mapToRegistry name babel-plugin-transform-strict-mode +12106 silly mapToRegistry using default registry +12107 silly mapToRegistry registry https://registry.npmjs.org/ +12108 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-strict-mode +12109 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-strict-mode not in flight; fetching +12110 verbose get https://registry.npmjs.org/babel-plugin-transform-strict-mode not expired, no request +12111 silly addNameRange number 2 { name: 'babel-plugin-transform-strict-mode', +12111 silly addNameRange range: '>=6.24.1 <7.0.0', +12111 silly addNameRange hasData: true } +12112 silly addNameRange versions [ 'babel-plugin-transform-strict-mode', +12112 silly addNameRange [ '6.0.2', +12112 silly addNameRange '6.0.14', +12112 silly addNameRange '6.0.15', +12112 silly addNameRange '6.1.2', +12112 silly addNameRange '6.1.4', +12112 silly addNameRange '6.1.17', +12112 silly addNameRange '6.1.18', +12112 silly addNameRange '6.2.0', +12112 silly addNameRange '6.2.4', +12112 silly addNameRange '6.3.13', +12112 silly addNameRange '6.5.0', +12112 silly addNameRange '6.5.0-1', +12112 silly addNameRange '6.5.2', +12112 silly addNameRange '6.6.4', +12112 silly addNameRange '6.6.5', +12112 silly addNameRange '6.8.0', +12112 silly addNameRange '6.11.3', +12112 silly addNameRange '6.18.0', +12112 silly addNameRange '6.22.0', +12112 silly addNameRange '7.0.0-alpha.1', +12112 silly addNameRange '7.0.0-alpha.3', +12112 silly addNameRange '7.0.0-alpha.7', +12112 silly addNameRange '6.24.1', +12112 silly addNameRange '7.0.0-alpha.8', +12112 silly addNameRange '7.0.0-alpha.9', +12112 silly addNameRange '7.0.0-alpha.10', +12112 silly addNameRange '7.0.0-alpha.11', +12112 silly addNameRange '7.0.0-alpha.12', +12112 silly addNameRange '7.0.0-alpha.14', +12112 silly addNameRange '7.0.0-alpha.15', +12112 silly addNameRange '7.0.0-alpha.16', +12112 silly addNameRange '7.0.0-alpha.17', +12112 silly addNameRange '7.0.0-alpha.18', +12112 silly addNameRange '7.0.0-alpha.19', +12112 silly addNameRange '7.0.0-alpha.20', +12112 silly addNameRange '7.0.0-beta.0', +12112 silly addNameRange '7.0.0-beta.1', +12112 silly addNameRange '7.0.0-beta.2' ] ] +12113 silly addNamed babel-plugin-transform-strict-mode@6.24.1 +12114 verbose addNamed "6.24.1" is a plain semver version for babel-plugin-transform-strict-mode +12115 silly cache afterAdd babel-plugin-transform-strict-mode@6.24.1 +12116 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-strict-mode/6.24.1/package/package.json not in flight; writing +12117 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-strict-mode/6.24.1/package/package.json written +12118 silly fetchNamedPackageData babel-helper-hoist-variables +12119 silly mapToRegistry name babel-helper-hoist-variables +12120 silly mapToRegistry using default registry +12121 silly mapToRegistry registry https://registry.npmjs.org/ +12122 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-hoist-variables +12123 verbose request uri https://registry.npmjs.org/babel-helper-hoist-variables +12124 verbose request no auth needed +12125 info attempt registry request try #1 at 3:04:37 PM +12126 verbose etag W/"59a70c08-a933" +12127 verbose lastModified Wed, 30 Aug 2017 19:03:36 GMT +12128 http request GET https://registry.npmjs.org/babel-helper-hoist-variables +12129 http 200 https://registry.npmjs.org/babel-helper-hoist-variables +12130 verbose headers { server: 'nginx/1.10.3', +12130 verbose headers 'content-type': 'application/json', +12130 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:22 GMT', +12130 verbose headers etag: 'W/"59ca6f0a-b825"', +12130 verbose headers 'content-encoding': 'gzip', +12130 verbose headers 'cache-control': 'max-age=300', +12130 verbose headers 'content-length': '5176', +12130 verbose headers 'accept-ranges': 'bytes', +12130 verbose headers date: 'Mon, 02 Oct 2017 09:34:38 GMT', +12130 verbose headers via: '1.1 varnish', +12130 verbose headers age: '197', +12130 verbose headers connection: 'keep-alive', +12130 verbose headers 'x-served-by': 'cache-sin18029-SIN', +12130 verbose headers 'x-cache': 'HIT', +12130 verbose headers 'x-cache-hits': '2', +12130 verbose headers 'x-timer': 'S1506936878.359037,VS0,VE0', +12130 verbose headers vary: 'Accept-Encoding, Accept' } +12131 silly get cb [ 200, +12131 silly get { server: 'nginx/1.10.3', +12131 silly get 'content-type': 'application/json', +12131 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:22 GMT', +12131 silly get etag: 'W/"59ca6f0a-b825"', +12131 silly get 'content-encoding': 'gzip', +12131 silly get 'cache-control': 'max-age=300', +12131 silly get 'content-length': '5176', +12131 silly get 'accept-ranges': 'bytes', +12131 silly get date: 'Mon, 02 Oct 2017 09:34:38 GMT', +12131 silly get via: '1.1 varnish', +12131 silly get age: '197', +12131 silly get connection: 'keep-alive', +12131 silly get 'x-served-by': 'cache-sin18029-SIN', +12131 silly get 'x-cache': 'HIT', +12131 silly get 'x-cache-hits': '2', +12131 silly get 'x-timer': 'S1506936878.359037,VS0,VE0', +12131 silly get vary: 'Accept-Encoding, Accept' } ] +12132 verbose get saving babel-helper-hoist-variables to /home/wso2/.npm/registry.npmjs.org/babel-helper-hoist-variables/.cache.json +12133 silly resolveWithNewModule babel-helper-hoist-variables@6.24.1 checking installable status +12134 silly cache add args [ 'babel-helper-hoist-variables@^6.24.1', null ] +12135 verbose cache add spec babel-helper-hoist-variables@^6.24.1 +12136 silly cache add parsed spec Result { +12136 silly cache add raw: 'babel-helper-hoist-variables@^6.24.1', +12136 silly cache add scope: null, +12136 silly cache add name: 'babel-helper-hoist-variables', +12136 silly cache add rawSpec: '^6.24.1', +12136 silly cache add spec: '>=6.24.1 <7.0.0', +12136 silly cache add type: 'range' } +12137 silly addNamed babel-helper-hoist-variables@>=6.24.1 <7.0.0 +12138 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-hoist-variables +12139 silly addNameRange { name: 'babel-helper-hoist-variables', +12139 silly addNameRange range: '>=6.24.1 <7.0.0', +12139 silly addNameRange hasData: false } +12140 silly mapToRegistry name babel-helper-hoist-variables +12141 silly mapToRegistry using default registry +12142 silly mapToRegistry registry https://registry.npmjs.org/ +12143 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-hoist-variables +12144 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-hoist-variables not in flight; fetching +12145 verbose get https://registry.npmjs.org/babel-helper-hoist-variables not expired, no request +12146 silly addNameRange number 2 { name: 'babel-helper-hoist-variables', +12146 silly addNameRange range: '>=6.24.1 <7.0.0', +12146 silly addNameRange hasData: true } +12147 silly addNameRange versions [ 'babel-helper-hoist-variables', +12147 silly addNameRange [ '6.0.0', +12147 silly addNameRange '6.0.2', +12147 silly addNameRange '6.0.14', +12147 silly addNameRange '6.0.15', +12147 silly addNameRange '6.1.5', +12147 silly addNameRange '6.1.6', +12147 silly addNameRange '6.1.7', +12147 silly addNameRange '6.1.8', +12147 silly addNameRange '6.1.9', +12147 silly addNameRange '6.1.10', +12147 silly addNameRange '6.1.12', +12147 silly addNameRange '6.1.13', +12147 silly addNameRange '6.1.16', +12147 silly addNameRange '6.1.17', +12147 silly addNameRange '6.1.18', +12147 silly addNameRange '6.2.4', +12147 silly addNameRange '6.3.13', +12147 silly addNameRange '6.5.0', +12147 silly addNameRange '6.5.0-1', +12147 silly addNameRange '6.6.4', +12147 silly addNameRange '6.6.5', +12147 silly addNameRange '6.8.0', +12147 silly addNameRange '6.18.0', +12147 silly addNameRange '6.22.0', +12147 silly addNameRange '7.0.0-alpha.1', +12147 silly addNameRange '7.0.0-alpha.3', +12147 silly addNameRange '7.0.0-alpha.7', +12147 silly addNameRange '6.24.1', +12147 silly addNameRange '7.0.0-alpha.9', +12147 silly addNameRange '7.0.0-alpha.10', +12147 silly addNameRange '7.0.0-alpha.11', +12147 silly addNameRange '7.0.0-alpha.12', +12147 silly addNameRange '7.0.0-alpha.14', +12147 silly addNameRange '7.0.0-alpha.15', +12147 silly addNameRange '7.0.0-alpha.16', +12147 silly addNameRange '7.0.0-alpha.17', +12147 silly addNameRange '7.0.0-alpha.18', +12147 silly addNameRange '7.0.0-alpha.19', +12147 silly addNameRange '7.0.0-alpha.20', +12147 silly addNameRange '7.0.0-beta.0', +12147 silly addNameRange '7.0.0-beta.1', +12147 silly addNameRange '7.0.0-beta.2' ] ] +12148 silly addNamed babel-helper-hoist-variables@6.24.1 +12149 verbose addNamed "6.24.1" is a plain semver version for babel-helper-hoist-variables +12150 silly cache afterAdd babel-helper-hoist-variables@6.24.1 +12151 verbose afterAdd /home/wso2/.npm/babel-helper-hoist-variables/6.24.1/package/package.json not in flight; writing +12152 verbose afterAdd /home/wso2/.npm/babel-helper-hoist-variables/6.24.1/package/package.json written +12153 silly fetchNamedPackageData babel-helper-call-delegate +12154 silly mapToRegistry name babel-helper-call-delegate +12155 silly mapToRegistry using default registry +12156 silly mapToRegistry registry https://registry.npmjs.org/ +12157 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-call-delegate +12158 verbose request uri https://registry.npmjs.org/babel-helper-call-delegate +12159 verbose request no auth needed +12160 info attempt registry request try #1 at 3:04:38 PM +12161 verbose etag W/"59a70c42-c44b" +12162 verbose lastModified Wed, 30 Aug 2017 19:04:34 GMT +12163 http request GET https://registry.npmjs.org/babel-helper-call-delegate +12164 http 200 https://registry.npmjs.org/babel-helper-call-delegate +12165 verbose headers { server: 'nginx/1.10.3', +12165 verbose headers 'content-type': 'application/json', +12165 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:02 GMT', +12165 verbose headers etag: 'W/"59ca6f32-d3fb"', +12165 verbose headers 'content-encoding': 'gzip', +12165 verbose headers 'cache-control': 'max-age=300', +12165 verbose headers 'content-length': '5832', +12165 verbose headers 'accept-ranges': 'bytes', +12165 verbose headers date: 'Mon, 02 Oct 2017 09:34:38 GMT', +12165 verbose headers via: '1.1 varnish', +12165 verbose headers age: '72', +12165 verbose headers connection: 'keep-alive', +12165 verbose headers 'x-served-by': 'cache-sin18024-SIN', +12165 verbose headers 'x-cache': 'HIT', +12165 verbose headers 'x-cache-hits': '1', +12165 verbose headers 'x-timer': 'S1506936879.565554,VS0,VE0', +12165 verbose headers vary: 'Accept-Encoding, Accept' } +12166 silly get cb [ 200, +12166 silly get { server: 'nginx/1.10.3', +12166 silly get 'content-type': 'application/json', +12166 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:02 GMT', +12166 silly get etag: 'W/"59ca6f32-d3fb"', +12166 silly get 'content-encoding': 'gzip', +12166 silly get 'cache-control': 'max-age=300', +12166 silly get 'content-length': '5832', +12166 silly get 'accept-ranges': 'bytes', +12166 silly get date: 'Mon, 02 Oct 2017 09:34:38 GMT', +12166 silly get via: '1.1 varnish', +12166 silly get age: '72', +12166 silly get connection: 'keep-alive', +12166 silly get 'x-served-by': 'cache-sin18024-SIN', +12166 silly get 'x-cache': 'HIT', +12166 silly get 'x-cache-hits': '1', +12166 silly get 'x-timer': 'S1506936879.565554,VS0,VE0', +12166 silly get vary: 'Accept-Encoding, Accept' } ] +12167 verbose get saving babel-helper-call-delegate to /home/wso2/.npm/registry.npmjs.org/babel-helper-call-delegate/.cache.json +12168 silly resolveWithNewModule babel-helper-call-delegate@6.24.1 checking installable status +12169 silly cache add args [ 'babel-helper-call-delegate@^6.24.1', null ] +12170 verbose cache add spec babel-helper-call-delegate@^6.24.1 +12171 silly cache add parsed spec Result { +12171 silly cache add raw: 'babel-helper-call-delegate@^6.24.1', +12171 silly cache add scope: null, +12171 silly cache add name: 'babel-helper-call-delegate', +12171 silly cache add rawSpec: '^6.24.1', +12171 silly cache add spec: '>=6.24.1 <7.0.0', +12171 silly cache add type: 'range' } +12172 silly addNamed babel-helper-call-delegate@>=6.24.1 <7.0.0 +12173 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-call-delegate +12174 silly addNameRange { name: 'babel-helper-call-delegate', +12174 silly addNameRange range: '>=6.24.1 <7.0.0', +12174 silly addNameRange hasData: false } +12175 silly mapToRegistry name babel-helper-call-delegate +12176 silly mapToRegistry using default registry +12177 silly mapToRegistry registry https://registry.npmjs.org/ +12178 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-call-delegate +12179 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-call-delegate not in flight; fetching +12180 verbose get https://registry.npmjs.org/babel-helper-call-delegate not expired, no request +12181 silly addNameRange number 2 { name: 'babel-helper-call-delegate', +12181 silly addNameRange range: '>=6.24.1 <7.0.0', +12181 silly addNameRange hasData: true } +12182 silly addNameRange versions [ 'babel-helper-call-delegate', +12182 silly addNameRange [ '6.0.0', +12182 silly addNameRange '6.0.2', +12182 silly addNameRange '6.0.14', +12182 silly addNameRange '6.0.15', +12182 silly addNameRange '6.1.5', +12182 silly addNameRange '6.1.6', +12182 silly addNameRange '6.1.7', +12182 silly addNameRange '6.1.8', +12182 silly addNameRange '6.1.9', +12182 silly addNameRange '6.1.10', +12182 silly addNameRange '6.1.11', +12182 silly addNameRange '6.1.12', +12182 silly addNameRange '6.1.13', +12182 silly addNameRange '6.1.16', +12182 silly addNameRange '6.1.17', +12182 silly addNameRange '6.1.18', +12182 silly addNameRange '6.2.0', +12182 silly addNameRange '6.2.4', +12182 silly addNameRange '6.3.13', +12182 silly addNameRange '6.5.0', +12182 silly addNameRange '6.5.0-1', +12182 silly addNameRange '6.6.0', +12182 silly addNameRange '6.6.4', +12182 silly addNameRange '6.6.5', +12182 silly addNameRange '6.8.0', +12182 silly addNameRange '6.18.0', +12182 silly addNameRange '6.22.0', +12182 silly addNameRange '7.0.0-alpha.1', +12182 silly addNameRange '7.0.0-alpha.3', +12182 silly addNameRange '7.0.0-alpha.7', +12182 silly addNameRange '6.24.1', +12182 silly addNameRange '7.0.0-alpha.8', +12182 silly addNameRange '7.0.0-alpha.9', +12182 silly addNameRange '7.0.0-alpha.10', +12182 silly addNameRange '7.0.0-alpha.11', +12182 silly addNameRange '7.0.0-alpha.12', +12182 silly addNameRange '7.0.0-alpha.14', +12182 silly addNameRange '7.0.0-alpha.15', +12182 silly addNameRange '7.0.0-alpha.16', +12182 silly addNameRange '7.0.0-alpha.17', +12182 silly addNameRange '7.0.0-alpha.18', +12182 silly addNameRange '7.0.0-alpha.19', +12182 silly addNameRange '7.0.0-alpha.20', +12182 silly addNameRange '7.0.0-beta.0', +12182 silly addNameRange '7.0.0-beta.1', +12182 silly addNameRange '7.0.0-beta.2' ] ] +12183 silly addNamed babel-helper-call-delegate@6.24.1 +12184 verbose addNamed "6.24.1" is a plain semver version for babel-helper-call-delegate +12185 silly cache afterAdd babel-helper-call-delegate@6.24.1 +12186 verbose afterAdd /home/wso2/.npm/babel-helper-call-delegate/6.24.1/package/package.json not in flight; writing +12187 verbose afterAdd /home/wso2/.npm/babel-helper-call-delegate/6.24.1/package/package.json written +12188 silly fetchNamedPackageData babel-helper-regex +12189 silly mapToRegistry name babel-helper-regex +12190 silly mapToRegistry using default registry +12191 silly mapToRegistry registry https://registry.npmjs.org/ +12192 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-regex +12193 verbose request uri https://registry.npmjs.org/babel-helper-regex +12194 verbose request no auth needed +12195 info attempt registry request try #1 at 3:04:38 PM +12196 verbose etag W/"59a70c0d-b046" +12197 verbose lastModified Wed, 30 Aug 2017 19:03:41 GMT +12198 http request GET https://registry.npmjs.org/babel-helper-regex +12199 http 200 https://registry.npmjs.org/babel-helper-regex +12200 verbose headers { server: 'nginx/1.10.3', +12200 verbose headers 'content-type': 'application/json', +12200 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:42 GMT', +12200 verbose headers etag: 'W/"59ca6ee2-be96"', +12200 verbose headers 'content-encoding': 'gzip', +12200 verbose headers 'cache-control': 'max-age=300', +12200 verbose headers 'content-length': '5465', +12200 verbose headers 'accept-ranges': 'bytes', +12200 verbose headers date: 'Mon, 02 Oct 2017 09:34:38 GMT', +12200 verbose headers via: '1.1 varnish', +12200 verbose headers age: '70', +12200 verbose headers connection: 'keep-alive', +12200 verbose headers 'x-served-by': 'cache-sin18029-SIN', +12200 verbose headers 'x-cache': 'HIT', +12200 verbose headers 'x-cache-hits': '1', +12200 verbose headers 'x-timer': 'S1506936879.792987,VS0,VE0', +12200 verbose headers vary: 'Accept-Encoding, Accept' } +12201 silly get cb [ 200, +12201 silly get { server: 'nginx/1.10.3', +12201 silly get 'content-type': 'application/json', +12201 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:42 GMT', +12201 silly get etag: 'W/"59ca6ee2-be96"', +12201 silly get 'content-encoding': 'gzip', +12201 silly get 'cache-control': 'max-age=300', +12201 silly get 'content-length': '5465', +12201 silly get 'accept-ranges': 'bytes', +12201 silly get date: 'Mon, 02 Oct 2017 09:34:38 GMT', +12201 silly get via: '1.1 varnish', +12201 silly get age: '70', +12201 silly get connection: 'keep-alive', +12201 silly get 'x-served-by': 'cache-sin18029-SIN', +12201 silly get 'x-cache': 'HIT', +12201 silly get 'x-cache-hits': '1', +12201 silly get 'x-timer': 'S1506936879.792987,VS0,VE0', +12201 silly get vary: 'Accept-Encoding, Accept' } ] +12202 verbose get saving babel-helper-regex to /home/wso2/.npm/registry.npmjs.org/babel-helper-regex/.cache.json +12203 silly resolveWithNewModule babel-helper-regex@6.26.0 checking installable status +12204 silly cache add args [ 'babel-helper-regex@^6.24.1', null ] +12205 verbose cache add spec babel-helper-regex@^6.24.1 +12206 silly cache add parsed spec Result { +12206 silly cache add raw: 'babel-helper-regex@^6.24.1', +12206 silly cache add scope: null, +12206 silly cache add name: 'babel-helper-regex', +12206 silly cache add rawSpec: '^6.24.1', +12206 silly cache add spec: '>=6.24.1 <7.0.0', +12206 silly cache add type: 'range' } +12207 silly addNamed babel-helper-regex@>=6.24.1 <7.0.0 +12208 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-regex +12209 silly addNameRange { name: 'babel-helper-regex', +12209 silly addNameRange range: '>=6.24.1 <7.0.0', +12209 silly addNameRange hasData: false } +12210 silly mapToRegistry name babel-helper-regex +12211 silly mapToRegistry using default registry +12212 silly mapToRegistry registry https://registry.npmjs.org/ +12213 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-regex +12214 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-regex not in flight; fetching +12215 verbose get https://registry.npmjs.org/babel-helper-regex not expired, no request +12216 silly addNameRange number 2 { name: 'babel-helper-regex', +12216 silly addNameRange range: '>=6.24.1 <7.0.0', +12216 silly addNameRange hasData: true } +12217 silly addNameRange versions [ 'babel-helper-regex', +12217 silly addNameRange [ '6.0.0', +12217 silly addNameRange '6.0.2', +12217 silly addNameRange '6.0.14', +12217 silly addNameRange '6.0.15', +12217 silly addNameRange '6.0.18', +12217 silly addNameRange '6.1.5', +12217 silly addNameRange '6.1.6', +12217 silly addNameRange '6.1.7', +12217 silly addNameRange '6.1.8', +12217 silly addNameRange '6.1.9', +12217 silly addNameRange '6.1.10', +12217 silly addNameRange '6.1.12', +12217 silly addNameRange '6.1.13', +12217 silly addNameRange '6.1.16', +12217 silly addNameRange '6.1.17', +12217 silly addNameRange '6.1.18', +12217 silly addNameRange '6.2.4', +12217 silly addNameRange '6.3.13', +12217 silly addNameRange '6.5.0', +12217 silly addNameRange '6.5.0-1', +12217 silly addNameRange '6.6.0', +12217 silly addNameRange '6.6.5', +12217 silly addNameRange '6.8.0', +12217 silly addNameRange '6.9.0', +12217 silly addNameRange '6.18.0', +12217 silly addNameRange '6.22.0', +12217 silly addNameRange '7.0.0-alpha.1', +12217 silly addNameRange '7.0.0-alpha.3', +12217 silly addNameRange '7.0.0-alpha.7', +12217 silly addNameRange '6.24.1', +12217 silly addNameRange '7.0.0-alpha.9', +12217 silly addNameRange '7.0.0-alpha.10', +12217 silly addNameRange '7.0.0-alpha.11', +12217 silly addNameRange '7.0.0-alpha.12', +12217 silly addNameRange '7.0.0-alpha.14', +12217 silly addNameRange '7.0.0-alpha.15', +12217 silly addNameRange '7.0.0-alpha.16', +12217 silly addNameRange '7.0.0-alpha.17', +12217 silly addNameRange '7.0.0-alpha.18', +12217 silly addNameRange '7.0.0-alpha.19', +12217 silly addNameRange '6.26.0', +12217 silly addNameRange '7.0.0-alpha.20', +12217 silly addNameRange '7.0.0-beta.0', +12217 silly addNameRange '7.0.0-beta.1', +12217 silly addNameRange '7.0.0-beta.2' ] ] +12218 silly addNamed babel-helper-regex@6.26.0 +12219 verbose addNamed "6.26.0" is a plain semver version for babel-helper-regex +12220 silly cache afterAdd babel-helper-regex@6.26.0 +12221 verbose afterAdd /home/wso2/.npm/babel-helper-regex/6.26.0/package/package.json not in flight; writing +12222 verbose afterAdd /home/wso2/.npm/babel-helper-regex/6.26.0/package/package.json written +12223 silly fetchNamedPackageData regexpu-core +12224 silly mapToRegistry name regexpu-core +12225 silly mapToRegistry using default registry +12226 silly mapToRegistry registry https://registry.npmjs.org/ +12227 silly mapToRegistry uri https://registry.npmjs.org/regexpu-core +12228 verbose request uri https://registry.npmjs.org/regexpu-core +12229 verbose request no auth needed +12230 info attempt registry request try #1 at 3:04:38 PM +12231 verbose etag W/"599570d6-c789" +12232 verbose lastModified Thu, 17 Aug 2017 10:32:54 GMT +12233 http request GET https://registry.npmjs.org/regexpu-core +12234 http 200 https://registry.npmjs.org/regexpu-core +12235 verbose headers { server: 'nginx/1.10.3', +12235 verbose headers 'content-type': 'application/json', +12235 verbose headers 'last-modified': 'Mon, 18 Sep 2017 14:37:13 GMT', +12235 verbose headers etag: 'W/"59bfda19-d013"', +12235 verbose headers 'content-encoding': 'gzip', +12235 verbose headers 'cache-control': 'max-age=300', +12235 verbose headers 'content-length': '6293', +12235 verbose headers 'accept-ranges': 'bytes', +12235 verbose headers date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12235 verbose headers via: '1.1 varnish', +12235 verbose headers age: '275', +12235 verbose headers connection: 'keep-alive', +12235 verbose headers 'x-served-by': 'cache-sin18033-SIN', +12235 verbose headers 'x-cache': 'HIT', +12235 verbose headers 'x-cache-hits': '4', +12235 verbose headers 'x-timer': 'S1506936879.029576,VS0,VE0', +12235 verbose headers vary: 'Accept-Encoding, Accept' } +12236 silly get cb [ 200, +12236 silly get { server: 'nginx/1.10.3', +12236 silly get 'content-type': 'application/json', +12236 silly get 'last-modified': 'Mon, 18 Sep 2017 14:37:13 GMT', +12236 silly get etag: 'W/"59bfda19-d013"', +12236 silly get 'content-encoding': 'gzip', +12236 silly get 'cache-control': 'max-age=300', +12236 silly get 'content-length': '6293', +12236 silly get 'accept-ranges': 'bytes', +12236 silly get date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12236 silly get via: '1.1 varnish', +12236 silly get age: '275', +12236 silly get connection: 'keep-alive', +12236 silly get 'x-served-by': 'cache-sin18033-SIN', +12236 silly get 'x-cache': 'HIT', +12236 silly get 'x-cache-hits': '4', +12236 silly get 'x-timer': 'S1506936879.029576,VS0,VE0', +12236 silly get vary: 'Accept-Encoding, Accept' } ] +12237 verbose get saving regexpu-core to /home/wso2/.npm/registry.npmjs.org/regexpu-core/.cache.json +12238 silly resolveWithNewModule regexpu-core@2.0.0 checking installable status +12239 silly cache add args [ 'regexpu-core@^2.0.0', null ] +12240 verbose cache add spec regexpu-core@^2.0.0 +12241 silly cache add parsed spec Result { +12241 silly cache add raw: 'regexpu-core@^2.0.0', +12241 silly cache add scope: null, +12241 silly cache add name: 'regexpu-core', +12241 silly cache add rawSpec: '^2.0.0', +12241 silly cache add spec: '>=2.0.0 <3.0.0', +12241 silly cache add type: 'range' } +12242 silly addNamed regexpu-core@>=2.0.0 <3.0.0 +12243 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for regexpu-core +12244 silly addNameRange { name: 'regexpu-core', range: '>=2.0.0 <3.0.0', hasData: false } +12245 silly mapToRegistry name regexpu-core +12246 silly mapToRegistry using default registry +12247 silly mapToRegistry registry https://registry.npmjs.org/ +12248 silly mapToRegistry uri https://registry.npmjs.org/regexpu-core +12249 verbose addNameRange registry:https://registry.npmjs.org/regexpu-core not in flight; fetching +12250 verbose get https://registry.npmjs.org/regexpu-core not expired, no request +12251 silly addNameRange number 2 { name: 'regexpu-core', range: '>=2.0.0 <3.0.0', hasData: true } +12252 silly addNameRange versions [ 'regexpu-core', +12252 silly addNameRange [ '1.0.0', +12252 silly addNameRange '2.0.0', +12252 silly addNameRange '3.0.1', +12252 silly addNameRange '3.0.2', +12252 silly addNameRange '3.1.0', +12252 silly addNameRange '3.2.0', +12252 silly addNameRange '3.3.0', +12252 silly addNameRange '4.0.0', +12252 silly addNameRange '4.0.1', +12252 silly addNameRange '4.0.2', +12252 silly addNameRange '4.0.3', +12252 silly addNameRange '4.0.4', +12252 silly addNameRange '4.0.5', +12252 silly addNameRange '4.0.6', +12252 silly addNameRange '4.0.7', +12252 silly addNameRange '4.0.8', +12252 silly addNameRange '4.0.9', +12252 silly addNameRange '4.0.10', +12252 silly addNameRange '4.0.11', +12252 silly addNameRange '4.1.0', +12252 silly addNameRange '4.1.1', +12252 silly addNameRange '4.1.2', +12252 silly addNameRange '4.1.3' ] ] +12253 silly addNamed regexpu-core@2.0.0 +12254 verbose addNamed "2.0.0" is a plain semver version for regexpu-core +12255 silly cache afterAdd regexpu-core@2.0.0 +12256 verbose afterAdd /home/wso2/.npm/regexpu-core/2.0.0/package/package.json not in flight; writing +12257 verbose afterAdd /home/wso2/.npm/regexpu-core/2.0.0/package/package.json written +12258 silly fetchNamedPackageData regenerate +12259 silly mapToRegistry name regenerate +12260 silly mapToRegistry using default registry +12261 silly mapToRegistry registry https://registry.npmjs.org/ +12262 silly mapToRegistry uri https://registry.npmjs.org/regenerate +12263 silly fetchNamedPackageData regjsgen +12264 silly mapToRegistry name regjsgen +12265 silly mapToRegistry using default registry +12266 silly mapToRegistry registry https://registry.npmjs.org/ +12267 silly mapToRegistry uri https://registry.npmjs.org/regjsgen +12268 silly fetchNamedPackageData regjsparser +12269 silly mapToRegistry name regjsparser +12270 silly mapToRegistry using default registry +12271 silly mapToRegistry registry https://registry.npmjs.org/ +12272 silly mapToRegistry uri https://registry.npmjs.org/regjsparser +12273 verbose request uri https://registry.npmjs.org/regjsgen +12274 verbose request no auth needed +12275 info attempt registry request try #1 at 3:04:39 PM +12276 verbose etag W/"574ead25-1da9" +12277 verbose lastModified Wed, 01 Jun 2016 09:38:45 GMT +12278 http request GET https://registry.npmjs.org/regjsgen +12279 verbose request uri https://registry.npmjs.org/regenerate +12280 verbose request no auth needed +12281 info attempt registry request try #1 at 3:04:39 PM +12282 verbose etag W/"595a251c-9fbc" +12283 verbose lastModified Mon, 03 Jul 2017 11:06:04 GMT +12284 http request GET https://registry.npmjs.org/regenerate +12285 verbose request uri https://registry.npmjs.org/regjsparser +12286 verbose request no auth needed +12287 info attempt registry request try #1 at 3:04:39 PM +12288 verbose etag W/"58af3e9a-2f14" +12289 verbose lastModified Thu, 23 Feb 2017 19:57:14 GMT +12290 http request GET https://registry.npmjs.org/regjsparser +12291 http 304 https://registry.npmjs.org/regjsgen +12292 verbose headers { date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12292 verbose headers via: '1.1 varnish', +12292 verbose headers 'cache-control': 'max-age=300', +12292 verbose headers etag: 'W/"574ead25-1da9"', +12292 verbose headers age: '200', +12292 verbose headers connection: 'keep-alive', +12292 verbose headers 'x-served-by': 'cache-sin18030-SIN', +12292 verbose headers 'x-cache': 'HIT', +12292 verbose headers 'x-cache-hits': '5', +12292 verbose headers 'x-timer': 'S1506936879.265770,VS0,VE0', +12292 verbose headers vary: 'Accept-Encoding, Accept' } +12293 silly get cb [ 304, +12293 silly get { date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12293 silly get via: '1.1 varnish', +12293 silly get 'cache-control': 'max-age=300', +12293 silly get etag: 'W/"574ead25-1da9"', +12293 silly get age: '200', +12293 silly get connection: 'keep-alive', +12293 silly get 'x-served-by': 'cache-sin18030-SIN', +12293 silly get 'x-cache': 'HIT', +12293 silly get 'x-cache-hits': '5', +12293 silly get 'x-timer': 'S1506936879.265770,VS0,VE0', +12293 silly get vary: 'Accept-Encoding, Accept' } ] +12294 verbose etag https://registry.npmjs.org/regjsgen from cache +12295 verbose get saving regjsgen to /home/wso2/.npm/registry.npmjs.org/regjsgen/.cache.json +12296 silly resolveWithNewModule regjsgen@0.2.0 checking installable status +12297 silly cache add args [ 'regjsgen@^0.2.0', null ] +12298 verbose cache add spec regjsgen@^0.2.0 +12299 silly cache add parsed spec Result { +12299 silly cache add raw: 'regjsgen@^0.2.0', +12299 silly cache add scope: null, +12299 silly cache add name: 'regjsgen', +12299 silly cache add rawSpec: '^0.2.0', +12299 silly cache add spec: '>=0.2.0 <0.3.0', +12299 silly cache add type: 'range' } +12300 silly addNamed regjsgen@>=0.2.0 <0.3.0 +12301 verbose addNamed ">=0.2.0 <0.3.0" is a valid semver range for regjsgen +12302 silly addNameRange { name: 'regjsgen', range: '>=0.2.0 <0.3.0', hasData: false } +12303 silly mapToRegistry name regjsgen +12304 silly mapToRegistry using default registry +12305 silly mapToRegistry registry https://registry.npmjs.org/ +12306 silly mapToRegistry uri https://registry.npmjs.org/regjsgen +12307 verbose addNameRange registry:https://registry.npmjs.org/regjsgen not in flight; fetching +12308 verbose get https://registry.npmjs.org/regjsgen not expired, no request +12309 silly addNameRange number 2 { name: 'regjsgen', range: '>=0.2.0 <0.3.0', hasData: true } +12310 silly addNameRange versions [ 'regjsgen', [ '0.1.0', '0.1.1', '0.1.2', '0.2.0', '0.3.0' ] ] +12311 silly addNamed regjsgen@0.2.0 +12312 verbose addNamed "0.2.0" is a plain semver version for regjsgen +12313 silly cache afterAdd regjsgen@0.2.0 +12314 verbose afterAdd /home/wso2/.npm/regjsgen/0.2.0/package/package.json not in flight; writing +12315 verbose afterAdd /home/wso2/.npm/regjsgen/0.2.0/package/package.json written +12316 http 304 https://registry.npmjs.org/regjsparser +12317 verbose headers { date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12317 verbose headers via: '1.1 varnish', +12317 verbose headers 'cache-control': 'max-age=300', +12317 verbose headers etag: 'W/"58af3e9a-2f14"', +12317 verbose headers age: '275', +12317 verbose headers connection: 'keep-alive', +12317 verbose headers 'x-served-by': 'cache-sin18030-SIN', +12317 verbose headers 'x-cache': 'HIT', +12317 verbose headers 'x-cache-hits': '3', +12317 verbose headers 'x-timer': 'S1506936879.285069,VS0,VE0', +12317 verbose headers vary: 'Accept-Encoding, Accept' } +12318 silly get cb [ 304, +12318 silly get { date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12318 silly get via: '1.1 varnish', +12318 silly get 'cache-control': 'max-age=300', +12318 silly get etag: 'W/"58af3e9a-2f14"', +12318 silly get age: '275', +12318 silly get connection: 'keep-alive', +12318 silly get 'x-served-by': 'cache-sin18030-SIN', +12318 silly get 'x-cache': 'HIT', +12318 silly get 'x-cache-hits': '3', +12318 silly get 'x-timer': 'S1506936879.285069,VS0,VE0', +12318 silly get vary: 'Accept-Encoding, Accept' } ] +12319 verbose etag https://registry.npmjs.org/regjsparser from cache +12320 verbose get saving regjsparser to /home/wso2/.npm/registry.npmjs.org/regjsparser/.cache.json +12321 http 200 https://registry.npmjs.org/regenerate +12322 verbose headers { server: 'nginx/1.10.3', +12322 verbose headers 'content-type': 'application/json', +12322 verbose headers 'last-modified': 'Mon, 18 Sep 2017 14:17:57 GMT', +12322 verbose headers etag: 'W/"59bfd595-a596"', +12322 verbose headers 'content-encoding': 'gzip', +12322 verbose headers 'cache-control': 'max-age=300', +12322 verbose headers 'content-length': '6915', +12322 verbose headers 'accept-ranges': 'bytes', +12322 verbose headers date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12322 verbose headers via: '1.1 varnish', +12322 verbose headers age: '275', +12322 verbose headers connection: 'keep-alive', +12322 verbose headers 'x-served-by': 'cache-sin18024-SIN', +12322 verbose headers 'x-cache': 'HIT', +12322 verbose headers 'x-cache-hits': '1', +12322 verbose headers 'x-timer': 'S1506936879.290733,VS0,VE0', +12322 verbose headers vary: 'Accept-Encoding, Accept' } +12323 silly get cb [ 200, +12323 silly get { server: 'nginx/1.10.3', +12323 silly get 'content-type': 'application/json', +12323 silly get 'last-modified': 'Mon, 18 Sep 2017 14:17:57 GMT', +12323 silly get etag: 'W/"59bfd595-a596"', +12323 silly get 'content-encoding': 'gzip', +12323 silly get 'cache-control': 'max-age=300', +12323 silly get 'content-length': '6915', +12323 silly get 'accept-ranges': 'bytes', +12323 silly get date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12323 silly get via: '1.1 varnish', +12323 silly get age: '275', +12323 silly get connection: 'keep-alive', +12323 silly get 'x-served-by': 'cache-sin18024-SIN', +12323 silly get 'x-cache': 'HIT', +12323 silly get 'x-cache-hits': '1', +12323 silly get 'x-timer': 'S1506936879.290733,VS0,VE0', +12323 silly get vary: 'Accept-Encoding, Accept' } ] +12324 verbose get saving regenerate to /home/wso2/.npm/registry.npmjs.org/regenerate/.cache.json +12325 silly resolveWithNewModule regjsparser@0.1.5 checking installable status +12326 silly cache add args [ 'regjsparser@^0.1.4', null ] +12327 verbose cache add spec regjsparser@^0.1.4 +12328 silly cache add parsed spec Result { +12328 silly cache add raw: 'regjsparser@^0.1.4', +12328 silly cache add scope: null, +12328 silly cache add name: 'regjsparser', +12328 silly cache add rawSpec: '^0.1.4', +12328 silly cache add spec: '>=0.1.4 <0.2.0', +12328 silly cache add type: 'range' } +12329 silly addNamed regjsparser@>=0.1.4 <0.2.0 +12330 verbose addNamed ">=0.1.4 <0.2.0" is a valid semver range for regjsparser +12331 silly addNameRange { name: 'regjsparser', range: '>=0.1.4 <0.2.0', hasData: false } +12332 silly mapToRegistry name regjsparser +12333 silly mapToRegistry using default registry +12334 silly mapToRegistry registry https://registry.npmjs.org/ +12335 silly mapToRegistry uri https://registry.npmjs.org/regjsparser +12336 verbose addNameRange registry:https://registry.npmjs.org/regjsparser not in flight; fetching +12337 silly resolveWithNewModule regenerate@1.3.3 checking installable status +12338 silly cache add args [ 'regenerate@^1.2.1', null ] +12339 verbose cache add spec regenerate@^1.2.1 +12340 silly cache add parsed spec Result { +12340 silly cache add raw: 'regenerate@^1.2.1', +12340 silly cache add scope: null, +12340 silly cache add name: 'regenerate', +12340 silly cache add rawSpec: '^1.2.1', +12340 silly cache add spec: '>=1.2.1 <2.0.0', +12340 silly cache add type: 'range' } +12341 silly addNamed regenerate@>=1.2.1 <2.0.0 +12342 verbose addNamed ">=1.2.1 <2.0.0" is a valid semver range for regenerate +12343 silly addNameRange { name: 'regenerate', range: '>=1.2.1 <2.0.0', hasData: false } +12344 silly mapToRegistry name regenerate +12345 silly mapToRegistry using default registry +12346 silly mapToRegistry registry https://registry.npmjs.org/ +12347 silly mapToRegistry uri https://registry.npmjs.org/regenerate +12348 verbose addNameRange registry:https://registry.npmjs.org/regenerate not in flight; fetching +12349 verbose get https://registry.npmjs.org/regjsparser not expired, no request +12350 silly addNameRange number 2 { name: 'regjsparser', range: '>=0.1.4 <0.2.0', hasData: true } +12351 silly addNameRange versions [ 'regjsparser', +12351 silly addNameRange [ '0.0.1', +12351 silly addNameRange '0.0.2', +12351 silly addNameRange '0.1.0', +12351 silly addNameRange '0.1.1', +12351 silly addNameRange '0.1.2', +12351 silly addNameRange '0.1.3', +12351 silly addNameRange '0.1.4', +12351 silly addNameRange '0.1.5', +12351 silly addNameRange '0.2.0', +12351 silly addNameRange '0.2.1' ] ] +12352 silly addNamed regjsparser@0.1.5 +12353 verbose addNamed "0.1.5" is a plain semver version for regjsparser +12354 verbose get https://registry.npmjs.org/regenerate not expired, no request +12355 silly addNameRange number 2 { name: 'regenerate', range: '>=1.2.1 <2.0.0', hasData: true } +12356 silly addNameRange versions [ 'regenerate', +12356 silly addNameRange [ '0.1.0', +12356 silly addNameRange '0.2.0', +12356 silly addNameRange '0.3.0', +12356 silly addNameRange '0.4.0', +12356 silly addNameRange '0.5.0', +12356 silly addNameRange '0.5.1', +12356 silly addNameRange '0.5.2', +12356 silly addNameRange '0.5.3', +12356 silly addNameRange '0.5.4', +12356 silly addNameRange '0.6.0', +12356 silly addNameRange '0.6.1', +12356 silly addNameRange '0.6.2', +12356 silly addNameRange '0.6.3', +12356 silly addNameRange '0.6.4', +12356 silly addNameRange '1.0.0', +12356 silly addNameRange '1.0.1', +12356 silly addNameRange '1.1.0', +12356 silly addNameRange '1.2.0', +12356 silly addNameRange '1.2.1', +12356 silly addNameRange '1.3.0', +12356 silly addNameRange '1.3.1', +12356 silly addNameRange '1.3.2', +12356 silly addNameRange '1.3.3' ] ] +12357 silly addNamed regenerate@1.3.3 +12358 verbose addNamed "1.3.3" is a plain semver version for regenerate +12359 silly mapToRegistry name regenerate +12360 silly mapToRegistry using default registry +12361 silly mapToRegistry registry https://registry.npmjs.org/ +12362 silly mapToRegistry uri https://registry.npmjs.org/regenerate +12363 verbose addRemoteTarball https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz not in flight; adding +12364 verbose addRemoteTarball [ 'https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz', +12364 verbose addRemoteTarball '0c336d3980553d755c39b586ae3b20aa49c82b7f' ] +12365 info retry fetch attempt 1 at 3:04:39 PM +12366 info attempt registry request try #1 at 3:04:39 PM +12367 http fetch GET https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz +12368 silly cache afterAdd regjsparser@0.1.5 +12369 verbose afterAdd /home/wso2/.npm/regjsparser/0.1.5/package/package.json not in flight; writing +12370 verbose afterAdd /home/wso2/.npm/regjsparser/0.1.5/package/package.json written +12371 http fetch 200 https://registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz +12372 silly fetchAndShaCheck shasum 0c336d3980553d755c39b586ae3b20aa49c82b7f +12373 verbose addTmpTarball /tmp/npm-10422-ce5ad92e/registry.npmjs.org/regenerate/-/regenerate-1.3.3.tgz not in flight; adding +12374 verbose addTmpTarball already have metadata; skipping unpack for regenerate@1.3.3 +12375 silly cache afterAdd regenerate@1.3.3 +12376 verbose afterAdd /home/wso2/.npm/regenerate/1.3.3/package/package.json not in flight; writing +12377 verbose afterAdd /home/wso2/.npm/regenerate/1.3.3/package/package.json written +12378 silly fetchNamedPackageData jsesc +12379 silly mapToRegistry name jsesc +12380 silly mapToRegistry using default registry +12381 silly mapToRegistry registry https://registry.npmjs.org/ +12382 silly mapToRegistry uri https://registry.npmjs.org/jsesc +12383 silly resolveWithNewModule jsesc@0.5.0 checking installable status +12384 silly cache add args [ 'jsesc@~0.5.0', null ] +12385 verbose cache add spec jsesc@~0.5.0 +12386 silly cache add parsed spec Result { +12386 silly cache add raw: 'jsesc@~0.5.0', +12386 silly cache add scope: null, +12386 silly cache add name: 'jsesc', +12386 silly cache add rawSpec: '~0.5.0', +12386 silly cache add spec: '>=0.5.0 <0.6.0', +12386 silly cache add type: 'range' } +12387 silly addNamed jsesc@>=0.5.0 <0.6.0 +12388 verbose addNamed ">=0.5.0 <0.6.0" is a valid semver range for jsesc +12389 silly addNameRange { name: 'jsesc', range: '>=0.5.0 <0.6.0', hasData: false } +12390 silly mapToRegistry name jsesc +12391 silly mapToRegistry using default registry +12392 silly mapToRegistry registry https://registry.npmjs.org/ +12393 silly mapToRegistry uri https://registry.npmjs.org/jsesc +12394 verbose addNameRange registry:https://registry.npmjs.org/jsesc not in flight; fetching +12395 verbose request uri https://registry.npmjs.org/jsesc +12396 verbose request no auth needed +12397 info attempt registry request try #1 at 3:04:39 PM +12398 verbose etag W/"592afb95-a825" +12399 verbose lastModified Sun, 28 May 2017 16:32:21 GMT +12400 http request GET https://registry.npmjs.org/jsesc +12401 http 304 https://registry.npmjs.org/jsesc +12402 verbose headers { date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12402 verbose headers via: '1.1 varnish', +12402 verbose headers 'cache-control': 'max-age=300', +12402 verbose headers etag: 'W/"592afb95-a825"', +12402 verbose headers age: '4', +12402 verbose headers connection: 'keep-alive', +12402 verbose headers 'x-served-by': 'cache-sin18027-SIN', +12402 verbose headers 'x-cache': 'HIT', +12402 verbose headers 'x-cache-hits': '1', +12402 verbose headers 'x-timer': 'S1506936880.953413,VS0,VE0', +12402 verbose headers vary: 'Accept-Encoding, Accept' } +12403 silly get cb [ 304, +12403 silly get { date: 'Mon, 02 Oct 2017 09:34:39 GMT', +12403 silly get via: '1.1 varnish', +12403 silly get 'cache-control': 'max-age=300', +12403 silly get etag: 'W/"592afb95-a825"', +12403 silly get age: '4', +12403 silly get connection: 'keep-alive', +12403 silly get 'x-served-by': 'cache-sin18027-SIN', +12403 silly get 'x-cache': 'HIT', +12403 silly get 'x-cache-hits': '1', +12403 silly get 'x-timer': 'S1506936880.953413,VS0,VE0', +12403 silly get vary: 'Accept-Encoding, Accept' } ] +12404 verbose etag https://registry.npmjs.org/jsesc from cache +12405 verbose get saving jsesc to /home/wso2/.npm/registry.npmjs.org/jsesc/.cache.json +12406 silly addNameRange number 2 { name: 'jsesc', range: '>=0.5.0 <0.6.0', hasData: true } +12407 silly addNameRange versions [ 'jsesc', +12407 silly addNameRange [ '0.3.0', +12407 silly addNameRange '0.4.0', +12407 silly addNameRange '0.4.1', +12407 silly addNameRange '0.4.2', +12407 silly addNameRange '0.4.3', +12407 silly addNameRange '0.5.0', +12407 silly addNameRange '1.0.0', +12407 silly addNameRange '1.1.0', +12407 silly addNameRange '1.2.0', +12407 silly addNameRange '1.2.1', +12407 silly addNameRange '1.3.0', +12407 silly addNameRange '2.0.0', +12407 silly addNameRange '2.1.0', +12407 silly addNameRange '2.2.0', +12407 silly addNameRange '2.3.0', +12407 silly addNameRange '2.4.0', +12407 silly addNameRange '2.5.0', +12407 silly addNameRange '2.5.1' ] ] +12408 silly addNamed jsesc@0.5.0 +12409 verbose addNamed "0.5.0" is a plain semver version for jsesc +12410 silly cache afterAdd jsesc@0.5.0 +12411 verbose afterAdd /home/wso2/.npm/jsesc/0.5.0/package/package.json not in flight; writing +12412 verbose afterAdd /home/wso2/.npm/jsesc/0.5.0/package/package.json written +12413 silly fetchNamedPackageData babel-plugin-syntax-exponentiation-operator +12414 silly mapToRegistry name babel-plugin-syntax-exponentiation-operator +12415 silly mapToRegistry using default registry +12416 silly mapToRegistry registry https://registry.npmjs.org/ +12417 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator +12418 silly fetchNamedPackageData babel-helper-builder-binary-assignment-operator-visitor +12419 silly mapToRegistry name babel-helper-builder-binary-assignment-operator-visitor +12420 silly mapToRegistry using default registry +12421 silly mapToRegistry registry https://registry.npmjs.org/ +12422 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor +12423 verbose request uri https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor +12424 verbose request no auth needed +12425 info attempt registry request try #1 at 3:04:39 PM +12426 verbose etag W/"59a70c4a-df37" +12427 verbose lastModified Wed, 30 Aug 2017 19:04:42 GMT +12428 http request GET https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor +12429 verbose request uri https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator +12430 verbose request no auth needed +12431 info attempt registry request try #1 at 3:04:39 PM +12432 verbose etag W/"59a7093e-94f1" +12433 verbose lastModified Wed, 30 Aug 2017 18:51:42 GMT +12434 http request GET https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator +12435 http 200 https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator +12436 verbose headers { server: 'nginx/1.10.3', +12436 verbose headers 'content-type': 'application/json', +12436 verbose headers 'last-modified': 'Tue, 19 Sep 2017 22:52:06 GMT', +12436 verbose headers etag: 'W/"59c19f96-9a4d"', +12436 verbose headers 'content-encoding': 'gzip', +12436 verbose headers 'cache-control': 'max-age=300', +12436 verbose headers 'content-length': '4193', +12436 verbose headers 'accept-ranges': 'bytes', +12436 verbose headers date: 'Mon, 02 Oct 2017 09:34:40 GMT', +12436 verbose headers via: '1.1 varnish', +12436 verbose headers age: '4', +12436 verbose headers connection: 'keep-alive', +12436 verbose headers 'x-served-by': 'cache-sin18030-SIN', +12436 verbose headers 'x-cache': 'HIT', +12436 verbose headers 'x-cache-hits': '1', +12436 verbose headers 'x-timer': 'S1506936880.153749,VS0,VE0', +12436 verbose headers vary: 'Accept-Encoding, Accept' } +12437 silly get cb [ 200, +12437 silly get { server: 'nginx/1.10.3', +12437 silly get 'content-type': 'application/json', +12437 silly get 'last-modified': 'Tue, 19 Sep 2017 22:52:06 GMT', +12437 silly get etag: 'W/"59c19f96-9a4d"', +12437 silly get 'content-encoding': 'gzip', +12437 silly get 'cache-control': 'max-age=300', +12437 silly get 'content-length': '4193', +12437 silly get 'accept-ranges': 'bytes', +12437 silly get date: 'Mon, 02 Oct 2017 09:34:40 GMT', +12437 silly get via: '1.1 varnish', +12437 silly get age: '4', +12437 silly get connection: 'keep-alive', +12437 silly get 'x-served-by': 'cache-sin18030-SIN', +12437 silly get 'x-cache': 'HIT', +12437 silly get 'x-cache-hits': '1', +12437 silly get 'x-timer': 'S1506936880.153749,VS0,VE0', +12437 silly get vary: 'Accept-Encoding, Accept' } ] +12438 verbose get saving babel-plugin-syntax-exponentiation-operator to /home/wso2/.npm/registry.npmjs.org/babel-plugin-syntax-exponentiation-operator/.cache.json +12439 silly resolveWithNewModule babel-plugin-syntax-exponentiation-operator@6.13.0 checking installable status +12440 silly cache add args [ 'babel-plugin-syntax-exponentiation-operator@^6.8.0', null ] +12441 verbose cache add spec babel-plugin-syntax-exponentiation-operator@^6.8.0 +12442 silly cache add parsed spec Result { +12442 silly cache add raw: 'babel-plugin-syntax-exponentiation-operator@^6.8.0', +12442 silly cache add scope: null, +12442 silly cache add name: 'babel-plugin-syntax-exponentiation-operator', +12442 silly cache add rawSpec: '^6.8.0', +12442 silly cache add spec: '>=6.8.0 <7.0.0', +12442 silly cache add type: 'range' } +12443 silly addNamed babel-plugin-syntax-exponentiation-operator@>=6.8.0 <7.0.0 +12444 verbose addNamed ">=6.8.0 <7.0.0" is a valid semver range for babel-plugin-syntax-exponentiation-operator +12445 silly addNameRange { name: 'babel-plugin-syntax-exponentiation-operator', +12445 silly addNameRange range: '>=6.8.0 <7.0.0', +12445 silly addNameRange hasData: false } +12446 silly mapToRegistry name babel-plugin-syntax-exponentiation-operator +12447 silly mapToRegistry using default registry +12448 silly mapToRegistry registry https://registry.npmjs.org/ +12449 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator +12450 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator not in flight; fetching +12451 verbose get https://registry.npmjs.org/babel-plugin-syntax-exponentiation-operator not expired, no request +12452 silly addNameRange number 2 { name: 'babel-plugin-syntax-exponentiation-operator', +12452 silly addNameRange range: '>=6.8.0 <7.0.0', +12452 silly addNameRange hasData: true } +12453 silly addNameRange versions [ 'babel-plugin-syntax-exponentiation-operator', +12453 silly addNameRange [ '6.0.2', +12453 silly addNameRange '6.0.14', +12453 silly addNameRange '6.1.4', +12453 silly addNameRange '6.1.5', +12453 silly addNameRange '6.1.6', +12453 silly addNameRange '6.1.7', +12453 silly addNameRange '6.1.8', +12453 silly addNameRange '6.1.10', +12453 silly addNameRange '6.1.13', +12453 silly addNameRange '6.1.16', +12453 silly addNameRange '6.1.17', +12453 silly addNameRange '6.1.18', +12453 silly addNameRange '6.2.4', +12453 silly addNameRange '6.3.13', +12453 silly addNameRange '6.5.0', +12453 silly addNameRange '6.5.0-1', +12453 silly addNameRange '6.8.0', +12453 silly addNameRange '6.13.0', +12453 silly addNameRange '7.0.0-alpha.1', +12453 silly addNameRange '7.0.0-alpha.3', +12453 silly addNameRange '7.0.0-alpha.9', +12453 silly addNameRange '7.0.0-alpha.12', +12453 silly addNameRange '7.0.0-alpha.13', +12453 silly addNameRange '7.0.0-alpha.14', +12453 silly addNameRange '7.0.0-alpha.15', +12453 silly addNameRange '7.0.0-alpha.16', +12453 silly addNameRange '7.0.0-alpha.17', +12453 silly addNameRange '7.0.0-alpha.18', +12453 silly addNameRange '7.0.0-alpha.19', +12453 silly addNameRange '7.0.0-alpha.20', +12453 silly addNameRange '7.0.0-beta.0' ] ] +12454 silly addNamed babel-plugin-syntax-exponentiation-operator@6.13.0 +12455 verbose addNamed "6.13.0" is a plain semver version for babel-plugin-syntax-exponentiation-operator +12456 silly cache afterAdd babel-plugin-syntax-exponentiation-operator@6.13.0 +12457 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-exponentiation-operator/6.13.0/package/package.json not in flight; writing +12458 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-exponentiation-operator/6.13.0/package/package.json written +12459 http 200 https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor +12460 verbose headers { server: 'nginx/1.10.3', +12460 verbose headers 'content-type': 'application/json', +12460 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:09 GMT', +12460 verbose headers etag: 'W/"59ca6f39-f111"', +12460 verbose headers 'content-encoding': 'gzip', +12460 verbose headers 'cache-control': 'max-age=300', +12460 verbose headers 'content-length': '5787', +12460 verbose headers 'accept-ranges': 'bytes', +12460 verbose headers date: 'Mon, 02 Oct 2017 09:34:40 GMT', +12460 verbose headers via: '1.1 varnish', +12460 verbose headers age: '4', +12460 verbose headers connection: 'keep-alive', +12460 verbose headers 'x-served-by': 'cache-sin18029-SIN', +12460 verbose headers 'x-cache': 'HIT', +12460 verbose headers 'x-cache-hits': '1', +12460 verbose headers 'x-timer': 'S1506936880.169753,VS0,VE0', +12460 verbose headers vary: 'Accept-Encoding, Accept' } +12461 silly get cb [ 200, +12461 silly get { server: 'nginx/1.10.3', +12461 silly get 'content-type': 'application/json', +12461 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:09 GMT', +12461 silly get etag: 'W/"59ca6f39-f111"', +12461 silly get 'content-encoding': 'gzip', +12461 silly get 'cache-control': 'max-age=300', +12461 silly get 'content-length': '5787', +12461 silly get 'accept-ranges': 'bytes', +12461 silly get date: 'Mon, 02 Oct 2017 09:34:40 GMT', +12461 silly get via: '1.1 varnish', +12461 silly get age: '4', +12461 silly get connection: 'keep-alive', +12461 silly get 'x-served-by': 'cache-sin18029-SIN', +12461 silly get 'x-cache': 'HIT', +12461 silly get 'x-cache-hits': '1', +12461 silly get 'x-timer': 'S1506936880.169753,VS0,VE0', +12461 silly get vary: 'Accept-Encoding, Accept' } ] +12462 verbose get saving babel-helper-builder-binary-assignment-operator-visitor to /home/wso2/.npm/registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor/.cache.json +12463 silly resolveWithNewModule babel-helper-builder-binary-assignment-operator-visitor@6.24.1 checking installable status +12464 silly cache add args [ 'babel-helper-builder-binary-assignment-operator-visitor@^6.24.1', +12464 silly cache add null ] +12465 verbose cache add spec babel-helper-builder-binary-assignment-operator-visitor@^6.24.1 +12466 silly cache add parsed spec Result { +12466 silly cache add raw: 'babel-helper-builder-binary-assignment-operator-visitor@^6.24.1', +12466 silly cache add scope: null, +12466 silly cache add name: 'babel-helper-builder-binary-assignment-operator-visitor', +12466 silly cache add rawSpec: '^6.24.1', +12466 silly cache add spec: '>=6.24.1 <7.0.0', +12466 silly cache add type: 'range' } +12467 silly addNamed babel-helper-builder-binary-assignment-operator-visitor@>=6.24.1 <7.0.0 +12468 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-builder-binary-assignment-operator-visitor +12469 silly addNameRange { name: 'babel-helper-builder-binary-assignment-operator-visitor', +12469 silly addNameRange range: '>=6.24.1 <7.0.0', +12469 silly addNameRange hasData: false } +12470 silly mapToRegistry name babel-helper-builder-binary-assignment-operator-visitor +12471 silly mapToRegistry using default registry +12472 silly mapToRegistry registry https://registry.npmjs.org/ +12473 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor +12474 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor not in flight; fetching +12475 verbose get https://registry.npmjs.org/babel-helper-builder-binary-assignment-operator-visitor not expired, no request +12476 silly addNameRange number 2 { name: 'babel-helper-builder-binary-assignment-operator-visitor', +12476 silly addNameRange range: '>=6.24.1 <7.0.0', +12476 silly addNameRange hasData: true } +12477 silly addNameRange versions [ 'babel-helper-builder-binary-assignment-operator-visitor', +12477 silly addNameRange [ '6.0.0', +12477 silly addNameRange '6.0.2', +12477 silly addNameRange '6.0.14', +12477 silly addNameRange '6.0.15', +12477 silly addNameRange '6.1.5', +12477 silly addNameRange '6.1.6', +12477 silly addNameRange '6.1.7', +12477 silly addNameRange '6.1.8', +12477 silly addNameRange '6.1.9', +12477 silly addNameRange '6.1.10', +12477 silly addNameRange '6.1.11', +12477 silly addNameRange '6.1.12', +12477 silly addNameRange '6.1.13', +12477 silly addNameRange '6.1.15', +12477 silly addNameRange '6.1.16', +12477 silly addNameRange '6.1.17', +12477 silly addNameRange '6.1.18', +12477 silly addNameRange '6.2.4', +12477 silly addNameRange '6.3.13', +12477 silly addNameRange '6.5.0', +12477 silly addNameRange '6.5.0-1', +12477 silly addNameRange '6.6.0', +12477 silly addNameRange '6.6.5', +12477 silly addNameRange '6.8.0', +12477 silly addNameRange '6.15.0', +12477 silly addNameRange '6.18.0', +12477 silly addNameRange '6.22.0', +12477 silly addNameRange '7.0.0-alpha.1', +12477 silly addNameRange '7.0.0-alpha.3', +12477 silly addNameRange '7.0.0-alpha.7', +12477 silly addNameRange '6.24.1', +12477 silly addNameRange '7.0.0-alpha.8', +12477 silly addNameRange '7.0.0-alpha.9', +12477 silly addNameRange '7.0.0-alpha.10', +12477 silly addNameRange '7.0.0-alpha.11', +12477 silly addNameRange '7.0.0-alpha.12', +12477 silly addNameRange '7.0.0-alpha.14', +12477 silly addNameRange '7.0.0-alpha.15', +12477 silly addNameRange '7.0.0-alpha.16', +12477 silly addNameRange '7.0.0-alpha.17', +12477 silly addNameRange '7.0.0-alpha.18', +12477 silly addNameRange '7.0.0-alpha.19', +12477 silly addNameRange '7.0.0-alpha.20', +12477 silly addNameRange '7.0.0-beta.0', +12477 silly addNameRange '7.0.0-beta.1', +12477 silly addNameRange '7.0.0-beta.2' ] ] +12478 silly addNamed babel-helper-builder-binary-assignment-operator-visitor@6.24.1 +12479 verbose addNamed "6.24.1" is a plain semver version for babel-helper-builder-binary-assignment-operator-visitor +12480 silly cache afterAdd babel-helper-builder-binary-assignment-operator-visitor@6.24.1 +12481 verbose afterAdd /home/wso2/.npm/babel-helper-builder-binary-assignment-operator-visitor/6.24.1/package/package.json not in flight; writing +12482 verbose afterAdd /home/wso2/.npm/babel-helper-builder-binary-assignment-operator-visitor/6.24.1/package/package.json written +12483 silly fetchNamedPackageData babel-helper-explode-assignable-expression +12484 silly mapToRegistry name babel-helper-explode-assignable-expression +12485 silly mapToRegistry using default registry +12486 silly mapToRegistry registry https://registry.npmjs.org/ +12487 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-explode-assignable-expression +12488 verbose request uri https://registry.npmjs.org/babel-helper-explode-assignable-expression +12489 verbose request no auth needed +12490 info attempt registry request try #1 at 3:04:40 PM +12491 verbose etag W/"59a70c42-c84e" +12492 verbose lastModified Wed, 30 Aug 2017 19:04:34 GMT +12493 http request GET https://registry.npmjs.org/babel-helper-explode-assignable-expression +12494 http 200 https://registry.npmjs.org/babel-helper-explode-assignable-expression +12495 verbose headers { server: 'nginx/1.10.3', +12495 verbose headers 'content-type': 'application/json', +12495 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:16:02 GMT', +12495 verbose headers etag: 'W/"59ca6f32-d8cc"', +12495 verbose headers 'content-encoding': 'gzip', +12495 verbose headers 'cache-control': 'max-age=300', +12495 verbose headers 'content-length': '5578', +12495 verbose headers 'accept-ranges': 'bytes', +12495 verbose headers date: 'Mon, 02 Oct 2017 09:34:40 GMT', +12495 verbose headers via: '1.1 varnish', +12495 verbose headers age: '3', +12495 verbose headers connection: 'keep-alive', +12495 verbose headers 'x-served-by': 'cache-sin18030-SIN', +12495 verbose headers 'x-cache': 'HIT', +12495 verbose headers 'x-cache-hits': '1', +12495 verbose headers 'x-timer': 'S1506936880.392990,VS0,VE0', +12495 verbose headers vary: 'Accept-Encoding, Accept' } +12496 silly get cb [ 200, +12496 silly get { server: 'nginx/1.10.3', +12496 silly get 'content-type': 'application/json', +12496 silly get 'last-modified': 'Tue, 26 Sep 2017 15:16:02 GMT', +12496 silly get etag: 'W/"59ca6f32-d8cc"', +12496 silly get 'content-encoding': 'gzip', +12496 silly get 'cache-control': 'max-age=300', +12496 silly get 'content-length': '5578', +12496 silly get 'accept-ranges': 'bytes', +12496 silly get date: 'Mon, 02 Oct 2017 09:34:40 GMT', +12496 silly get via: '1.1 varnish', +12496 silly get age: '3', +12496 silly get connection: 'keep-alive', +12496 silly get 'x-served-by': 'cache-sin18030-SIN', +12496 silly get 'x-cache': 'HIT', +12496 silly get 'x-cache-hits': '1', +12496 silly get 'x-timer': 'S1506936880.392990,VS0,VE0', +12496 silly get vary: 'Accept-Encoding, Accept' } ] +12497 verbose get saving babel-helper-explode-assignable-expression to /home/wso2/.npm/registry.npmjs.org/babel-helper-explode-assignable-expression/.cache.json +12498 silly resolveWithNewModule babel-helper-explode-assignable-expression@6.24.1 checking installable status +12499 silly cache add args [ 'babel-helper-explode-assignable-expression@^6.24.1', null ] +12500 verbose cache add spec babel-helper-explode-assignable-expression@^6.24.1 +12501 silly cache add parsed spec Result { +12501 silly cache add raw: 'babel-helper-explode-assignable-expression@^6.24.1', +12501 silly cache add scope: null, +12501 silly cache add name: 'babel-helper-explode-assignable-expression', +12501 silly cache add rawSpec: '^6.24.1', +12501 silly cache add spec: '>=6.24.1 <7.0.0', +12501 silly cache add type: 'range' } +12502 silly addNamed babel-helper-explode-assignable-expression@>=6.24.1 <7.0.0 +12503 verbose addNamed ">=6.24.1 <7.0.0" is a valid semver range for babel-helper-explode-assignable-expression +12504 silly addNameRange { name: 'babel-helper-explode-assignable-expression', +12504 silly addNameRange range: '>=6.24.1 <7.0.0', +12504 silly addNameRange hasData: false } +12505 silly mapToRegistry name babel-helper-explode-assignable-expression +12506 silly mapToRegistry using default registry +12507 silly mapToRegistry registry https://registry.npmjs.org/ +12508 silly mapToRegistry uri https://registry.npmjs.org/babel-helper-explode-assignable-expression +12509 verbose addNameRange registry:https://registry.npmjs.org/babel-helper-explode-assignable-expression not in flight; fetching +12510 verbose get https://registry.npmjs.org/babel-helper-explode-assignable-expression not expired, no request +12511 silly addNameRange number 2 { name: 'babel-helper-explode-assignable-expression', +12511 silly addNameRange range: '>=6.24.1 <7.0.0', +12511 silly addNameRange hasData: true } +12512 silly addNameRange versions [ 'babel-helper-explode-assignable-expression', +12512 silly addNameRange [ '6.0.0', +12512 silly addNameRange '6.0.2', +12512 silly addNameRange '6.0.14', +12512 silly addNameRange '6.0.15', +12512 silly addNameRange '6.1.5', +12512 silly addNameRange '6.1.6', +12512 silly addNameRange '6.1.7', +12512 silly addNameRange '6.1.8', +12512 silly addNameRange '6.1.9', +12512 silly addNameRange '6.1.10', +12512 silly addNameRange '6.1.11', +12512 silly addNameRange '6.1.12', +12512 silly addNameRange '6.1.13', +12512 silly addNameRange '6.1.16', +12512 silly addNameRange '6.1.17', +12512 silly addNameRange '6.1.18', +12512 silly addNameRange '6.2.0', +12512 silly addNameRange '6.2.4', +12512 silly addNameRange '6.3.13', +12512 silly addNameRange '6.5.0', +12512 silly addNameRange '6.5.0-1', +12512 silly addNameRange '6.6.4', +12512 silly addNameRange '6.6.5', +12512 silly addNameRange '6.8.0', +12512 silly addNameRange '6.18.0', +12512 silly addNameRange '6.22.0', +12512 silly addNameRange '7.0.0-alpha.1', +12512 silly addNameRange '7.0.0-alpha.3', +12512 silly addNameRange '7.0.0-alpha.7', +12512 silly addNameRange '6.24.1', +12512 silly addNameRange '7.0.0-alpha.8', +12512 silly addNameRange '7.0.0-alpha.9', +12512 silly addNameRange '7.0.0-alpha.10', +12512 silly addNameRange '7.0.0-alpha.11', +12512 silly addNameRange '7.0.0-alpha.12', +12512 silly addNameRange '7.0.0-alpha.14', +12512 silly addNameRange '7.0.0-alpha.15', +12512 silly addNameRange '7.0.0-alpha.16', +12512 silly addNameRange '7.0.0-alpha.17', +12512 silly addNameRange '7.0.0-alpha.18', +12512 silly addNameRange '7.0.0-alpha.19', +12512 silly addNameRange '7.0.0-alpha.20', +12512 silly addNameRange '7.0.0-beta.0', +12512 silly addNameRange '7.0.0-beta.1', +12512 silly addNameRange '7.0.0-beta.2' ] ] +12513 silly addNamed babel-helper-explode-assignable-expression@6.24.1 +12514 verbose addNamed "6.24.1" is a plain semver version for babel-helper-explode-assignable-expression +12515 silly cache afterAdd babel-helper-explode-assignable-expression@6.24.1 +12516 verbose afterAdd /home/wso2/.npm/babel-helper-explode-assignable-expression/6.24.1/package/package.json not in flight; writing +12517 verbose afterAdd /home/wso2/.npm/babel-helper-explode-assignable-expression/6.24.1/package/package.json written +12518 silly fetchNamedPackageData babel-preset-flow +12519 silly mapToRegistry name babel-preset-flow +12520 silly mapToRegistry using default registry +12521 silly mapToRegistry registry https://registry.npmjs.org/ +12522 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-flow +12523 silly fetchNamedPackageData babel-plugin-transform-react-display-name +12524 silly mapToRegistry name babel-plugin-transform-react-display-name +12525 silly mapToRegistry using default registry +12526 silly mapToRegistry registry https://registry.npmjs.org/ +12527 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-display-name +12528 verbose request uri https://registry.npmjs.org/babel-plugin-transform-react-display-name +12529 verbose request no auth needed +12530 info attempt registry request try #1 at 3:04:40 PM +12531 verbose etag W/"59a70957-979c" +12532 verbose lastModified Wed, 30 Aug 2017 18:52:07 GMT +12533 http request GET https://registry.npmjs.org/babel-plugin-transform-react-display-name +12534 verbose request uri https://registry.npmjs.org/babel-preset-flow +12535 verbose request no auth needed +12536 info attempt registry request try #1 at 3:04:40 PM +12537 verbose etag W/"59a70c27-67cf" +12538 verbose lastModified Wed, 30 Aug 2017 19:04:07 GMT +12539 http request GET https://registry.npmjs.org/babel-preset-flow +12540 http 200 https://registry.npmjs.org/babel-plugin-transform-react-display-name +12541 verbose headers { server: 'nginx/1.10.3', +12541 verbose headers 'content-type': 'application/json', +12541 verbose headers 'last-modified': 'Tue, 26 Sep 2017 18:21:39 GMT', +12541 verbose headers etag: 'W/"59ca9ab3-a847"', +12541 verbose headers 'content-encoding': 'gzip', +12541 verbose headers 'cache-control': 'max-age=300', +12541 verbose headers 'content-length': '4849', +12541 verbose headers 'accept-ranges': 'bytes', +12541 verbose headers date: 'Mon, 02 Oct 2017 09:34:42 GMT', +12541 verbose headers via: '1.1 varnish', +12541 verbose headers age: '189', +12541 verbose headers connection: 'keep-alive', +12541 verbose headers 'x-served-by': 'cache-sin18026-SIN', +12541 verbose headers 'x-cache': 'HIT', +12541 verbose headers 'x-cache-hits': '2', +12541 verbose headers 'x-timer': 'S1506936883.816458,VS0,VE0', +12541 verbose headers vary: 'Accept-Encoding, Accept' } +12542 silly get cb [ 200, +12542 silly get { server: 'nginx/1.10.3', +12542 silly get 'content-type': 'application/json', +12542 silly get 'last-modified': 'Tue, 26 Sep 2017 18:21:39 GMT', +12542 silly get etag: 'W/"59ca9ab3-a847"', +12542 silly get 'content-encoding': 'gzip', +12542 silly get 'cache-control': 'max-age=300', +12542 silly get 'content-length': '4849', +12542 silly get 'accept-ranges': 'bytes', +12542 silly get date: 'Mon, 02 Oct 2017 09:34:42 GMT', +12542 silly get via: '1.1 varnish', +12542 silly get age: '189', +12542 silly get connection: 'keep-alive', +12542 silly get 'x-served-by': 'cache-sin18026-SIN', +12542 silly get 'x-cache': 'HIT', +12542 silly get 'x-cache-hits': '2', +12542 silly get 'x-timer': 'S1506936883.816458,VS0,VE0', +12542 silly get vary: 'Accept-Encoding, Accept' } ] +12543 verbose get saving babel-plugin-transform-react-display-name to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-react-display-name/.cache.json +12544 http 200 https://registry.npmjs.org/babel-preset-flow +12545 verbose headers { server: 'nginx/1.10.3', +12545 verbose headers 'content-type': 'application/json', +12545 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:42 GMT', +12545 verbose headers etag: 'W/"59ca6f1e-7865"', +12545 verbose headers 'content-encoding': 'gzip', +12545 verbose headers 'cache-control': 'max-age=300', +12545 verbose headers 'content-length': '4183', +12545 verbose headers 'accept-ranges': 'bytes', +12545 verbose headers date: 'Mon, 02 Oct 2017 09:34:42 GMT', +12545 verbose headers via: '1.1 varnish', +12545 verbose headers age: '15', +12545 verbose headers connection: 'keep-alive', +12545 verbose headers 'x-served-by': 'cache-sin18035-SIN', +12545 verbose headers 'x-cache': 'HIT', +12545 verbose headers 'x-cache-hits': '1', +12545 verbose headers 'x-timer': 'S1506936883.822042,VS0,VE0', +12545 verbose headers vary: 'Accept-Encoding, Accept' } +12546 silly get cb [ 200, +12546 silly get { server: 'nginx/1.10.3', +12546 silly get 'content-type': 'application/json', +12546 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:42 GMT', +12546 silly get etag: 'W/"59ca6f1e-7865"', +12546 silly get 'content-encoding': 'gzip', +12546 silly get 'cache-control': 'max-age=300', +12546 silly get 'content-length': '4183', +12546 silly get 'accept-ranges': 'bytes', +12546 silly get date: 'Mon, 02 Oct 2017 09:34:42 GMT', +12546 silly get via: '1.1 varnish', +12546 silly get age: '15', +12546 silly get connection: 'keep-alive', +12546 silly get 'x-served-by': 'cache-sin18035-SIN', +12546 silly get 'x-cache': 'HIT', +12546 silly get 'x-cache-hits': '1', +12546 silly get 'x-timer': 'S1506936883.822042,VS0,VE0', +12546 silly get vary: 'Accept-Encoding, Accept' } ] +12547 verbose get saving babel-preset-flow to /home/wso2/.npm/registry.npmjs.org/babel-preset-flow/.cache.json +12548 silly resolveWithNewModule babel-plugin-transform-react-display-name@6.25.0 checking installable status +12549 silly cache add args [ 'babel-plugin-transform-react-display-name@^6.23.0', null ] +12550 verbose cache add spec babel-plugin-transform-react-display-name@^6.23.0 +12551 silly cache add parsed spec Result { +12551 silly cache add raw: 'babel-plugin-transform-react-display-name@^6.23.0', +12551 silly cache add scope: null, +12551 silly cache add name: 'babel-plugin-transform-react-display-name', +12551 silly cache add rawSpec: '^6.23.0', +12551 silly cache add spec: '>=6.23.0 <7.0.0', +12551 silly cache add type: 'range' } +12552 silly addNamed babel-plugin-transform-react-display-name@>=6.23.0 <7.0.0 +12553 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-plugin-transform-react-display-name +12554 silly addNameRange { name: 'babel-plugin-transform-react-display-name', +12554 silly addNameRange range: '>=6.23.0 <7.0.0', +12554 silly addNameRange hasData: false } +12555 silly mapToRegistry name babel-plugin-transform-react-display-name +12556 silly mapToRegistry using default registry +12557 silly mapToRegistry registry https://registry.npmjs.org/ +12558 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-react-display-name +12559 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-react-display-name not in flight; fetching +12560 verbose get https://registry.npmjs.org/babel-plugin-transform-react-display-name not expired, no request +12561 silly addNameRange number 2 { name: 'babel-plugin-transform-react-display-name', +12561 silly addNameRange range: '>=6.23.0 <7.0.0', +12561 silly addNameRange hasData: true } +12562 silly addNameRange versions [ 'babel-plugin-transform-react-display-name', +12562 silly addNameRange [ '6.0.2', +12562 silly addNameRange '6.0.14', +12562 silly addNameRange '6.1.4', +12562 silly addNameRange '6.1.17', +12562 silly addNameRange '6.1.18', +12562 silly addNameRange '6.2.4', +12562 silly addNameRange '6.3.13', +12562 silly addNameRange '6.4.0', +12562 silly addNameRange '6.5.0', +12562 silly addNameRange '6.5.0-1', +12562 silly addNameRange '6.8.0', +12562 silly addNameRange '6.22.0', +12562 silly addNameRange '6.23.0', +12562 silly addNameRange '7.0.0-alpha.1', +12562 silly addNameRange '7.0.0-alpha.3', +12562 silly addNameRange '7.0.0-alpha.7', +12562 silly addNameRange '7.0.0-alpha.8', +12562 silly addNameRange '7.0.0-alpha.9', +12562 silly addNameRange '7.0.0-alpha.10', +12562 silly addNameRange '7.0.0-alpha.11', +12562 silly addNameRange '7.0.0-alpha.12', +12562 silly addNameRange '6.25.0', +12562 silly addNameRange '7.0.0-alpha.14', +12562 silly addNameRange '7.0.0-alpha.15', +12562 silly addNameRange '7.0.0-alpha.16', +12562 silly addNameRange '7.0.0-alpha.17', +12562 silly addNameRange '7.0.0-alpha.18', +12562 silly addNameRange '7.0.0-alpha.19', +12562 silly addNameRange '7.0.0-alpha.20', +12562 silly addNameRange '7.0.0-beta.0', +12562 silly addNameRange '7.0.0-beta.1', +12562 silly addNameRange '7.0.0-beta.2' ] ] +12563 silly addNamed babel-plugin-transform-react-display-name@6.25.0 +12564 verbose addNamed "6.25.0" is a plain semver version for babel-plugin-transform-react-display-name +12565 silly resolveWithNewModule babel-preset-flow@6.23.0 checking installable status +12566 silly cache add args [ 'babel-preset-flow@^6.23.0', null ] +12567 verbose cache add spec babel-preset-flow@^6.23.0 +12568 silly cache add parsed spec Result { +12568 silly cache add raw: 'babel-preset-flow@^6.23.0', +12568 silly cache add scope: null, +12568 silly cache add name: 'babel-preset-flow', +12568 silly cache add rawSpec: '^6.23.0', +12568 silly cache add spec: '>=6.23.0 <7.0.0', +12568 silly cache add type: 'range' } +12569 silly addNamed babel-preset-flow@>=6.23.0 <7.0.0 +12570 verbose addNamed ">=6.23.0 <7.0.0" is a valid semver range for babel-preset-flow +12571 silly addNameRange { name: 'babel-preset-flow', +12571 silly addNameRange range: '>=6.23.0 <7.0.0', +12571 silly addNameRange hasData: false } +12572 silly mapToRegistry name babel-preset-flow +12573 silly mapToRegistry using default registry +12574 silly mapToRegistry registry https://registry.npmjs.org/ +12575 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-flow +12576 verbose addNameRange registry:https://registry.npmjs.org/babel-preset-flow not in flight; fetching +12577 verbose get https://registry.npmjs.org/babel-preset-flow not expired, no request +12578 silly addNameRange number 2 { name: 'babel-preset-flow', +12578 silly addNameRange range: '>=6.23.0 <7.0.0', +12578 silly addNameRange hasData: true } +12579 silly addNameRange versions [ 'babel-preset-flow', +12579 silly addNameRange [ '0.1.0', +12579 silly addNameRange '0.1.1', +12579 silly addNameRange '1.0.0', +12579 silly addNameRange '6.23.0', +12579 silly addNameRange '7.0.0-alpha.1', +12579 silly addNameRange '7.0.0-alpha.3', +12579 silly addNameRange '7.0.0-alpha.7', +12579 silly addNameRange '7.0.0-alpha.8', +12579 silly addNameRange '7.0.0-alpha.9', +12579 silly addNameRange '7.0.0-alpha.10', +12579 silly addNameRange '7.0.0-alpha.11', +12579 silly addNameRange '7.0.0-alpha.12', +12579 silly addNameRange '7.0.0-alpha.14', +12579 silly addNameRange '7.0.0-alpha.15', +12579 silly addNameRange '7.0.0-alpha.16', +12579 silly addNameRange '7.0.0-alpha.17', +12579 silly addNameRange '7.0.0-alpha.18', +12579 silly addNameRange '7.0.0-alpha.19', +12579 silly addNameRange '7.0.0-alpha.20', +12579 silly addNameRange '7.0.0-beta.0', +12579 silly addNameRange '7.0.0-beta.1', +12579 silly addNameRange '7.0.0-beta.2' ] ] +12580 silly addNamed babel-preset-flow@6.23.0 +12581 verbose addNamed "6.23.0" is a plain semver version for babel-preset-flow +12582 silly cache afterAdd babel-plugin-transform-react-display-name@6.25.0 +12583 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-display-name/6.25.0/package/package.json not in flight; writing +12584 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-react-display-name/6.25.0/package/package.json written +12585 silly cache afterAdd babel-preset-flow@6.23.0 +12586 verbose afterAdd /home/wso2/.npm/babel-preset-flow/6.23.0/package/package.json not in flight; writing +12587 verbose afterAdd /home/wso2/.npm/babel-preset-flow/6.23.0/package/package.json written +12588 silly fetchNamedPackageData babel-plugin-transform-flow-strip-types +12589 silly mapToRegistry name babel-plugin-transform-flow-strip-types +12590 silly mapToRegistry using default registry +12591 silly mapToRegistry registry https://registry.npmjs.org/ +12592 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-flow-strip-types +12593 verbose request uri https://registry.npmjs.org/babel-plugin-transform-flow-strip-types +12594 verbose request no auth needed +12595 info attempt registry request try #1 at 3:04:42 PM +12596 verbose etag W/"59a70c18-b9d3" +12597 verbose lastModified Wed, 30 Aug 2017 19:03:52 GMT +12598 http request GET https://registry.npmjs.org/babel-plugin-transform-flow-strip-types +12599 http 200 https://registry.npmjs.org/babel-plugin-transform-flow-strip-types +12600 verbose headers { server: 'nginx/1.10.3', +12600 verbose headers 'content-type': 'application/json', +12600 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:15:28 GMT', +12600 verbose headers etag: 'W/"59ca6f10-cb06"', +12600 verbose headers 'content-encoding': 'gzip', +12600 verbose headers 'cache-control': 'max-age=300', +12600 verbose headers 'content-length': '5482', +12600 verbose headers 'accept-ranges': 'bytes', +12600 verbose headers date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12600 verbose headers via: '1.1 varnish', +12600 verbose headers age: '15', +12600 verbose headers connection: 'keep-alive', +12600 verbose headers 'x-served-by': 'cache-sin18030-SIN', +12600 verbose headers 'x-cache': 'HIT', +12600 verbose headers 'x-cache-hits': '1', +12600 verbose headers 'x-timer': 'S1506936883.271145,VS0,VE1', +12600 verbose headers vary: 'Accept-Encoding, Accept' } +12601 silly get cb [ 200, +12601 silly get { server: 'nginx/1.10.3', +12601 silly get 'content-type': 'application/json', +12601 silly get 'last-modified': 'Tue, 26 Sep 2017 15:15:28 GMT', +12601 silly get etag: 'W/"59ca6f10-cb06"', +12601 silly get 'content-encoding': 'gzip', +12601 silly get 'cache-control': 'max-age=300', +12601 silly get 'content-length': '5482', +12601 silly get 'accept-ranges': 'bytes', +12601 silly get date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12601 silly get via: '1.1 varnish', +12601 silly get age: '15', +12601 silly get connection: 'keep-alive', +12601 silly get 'x-served-by': 'cache-sin18030-SIN', +12601 silly get 'x-cache': 'HIT', +12601 silly get 'x-cache-hits': '1', +12601 silly get 'x-timer': 'S1506936883.271145,VS0,VE1', +12601 silly get vary: 'Accept-Encoding, Accept' } ] +12602 verbose get saving babel-plugin-transform-flow-strip-types to /home/wso2/.npm/registry.npmjs.org/babel-plugin-transform-flow-strip-types/.cache.json +12603 silly resolveWithNewModule babel-plugin-transform-flow-strip-types@6.22.0 checking installable status +12604 silly cache add args [ 'babel-plugin-transform-flow-strip-types@^6.22.0', null ] +12605 verbose cache add spec babel-plugin-transform-flow-strip-types@^6.22.0 +12606 silly cache add parsed spec Result { +12606 silly cache add raw: 'babel-plugin-transform-flow-strip-types@^6.22.0', +12606 silly cache add scope: null, +12606 silly cache add name: 'babel-plugin-transform-flow-strip-types', +12606 silly cache add rawSpec: '^6.22.0', +12606 silly cache add spec: '>=6.22.0 <7.0.0', +12606 silly cache add type: 'range' } +12607 silly addNamed babel-plugin-transform-flow-strip-types@>=6.22.0 <7.0.0 +12608 verbose addNamed ">=6.22.0 <7.0.0" is a valid semver range for babel-plugin-transform-flow-strip-types +12609 silly addNameRange { name: 'babel-plugin-transform-flow-strip-types', +12609 silly addNameRange range: '>=6.22.0 <7.0.0', +12609 silly addNameRange hasData: false } +12610 silly mapToRegistry name babel-plugin-transform-flow-strip-types +12611 silly mapToRegistry using default registry +12612 silly mapToRegistry registry https://registry.npmjs.org/ +12613 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-transform-flow-strip-types +12614 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-transform-flow-strip-types not in flight; fetching +12615 verbose get https://registry.npmjs.org/babel-plugin-transform-flow-strip-types not expired, no request +12616 silly addNameRange number 2 { name: 'babel-plugin-transform-flow-strip-types', +12616 silly addNameRange range: '>=6.22.0 <7.0.0', +12616 silly addNameRange hasData: true } +12617 silly addNameRange versions [ 'babel-plugin-transform-flow-strip-types', +12617 silly addNameRange [ '6.0.2', +12617 silly addNameRange '6.0.14', +12617 silly addNameRange '6.1.4', +12617 silly addNameRange '6.1.17', +12617 silly addNameRange '6.1.18', +12617 silly addNameRange '6.2.4', +12617 silly addNameRange '6.3.13', +12617 silly addNameRange '6.3.15', +12617 silly addNameRange '6.4.0', +12617 silly addNameRange '6.5.0', +12617 silly addNameRange '6.5.0-1', +12617 silly addNameRange '6.6.4', +12617 silly addNameRange '6.6.5', +12617 silly addNameRange '6.7.0', +12617 silly addNameRange '6.8.0', +12617 silly addNameRange '6.14.0', +12617 silly addNameRange '6.18.0', +12617 silly addNameRange '6.21.0', +12617 silly addNameRange '6.22.0', +12617 silly addNameRange '7.0.0-alpha.1', +12617 silly addNameRange '7.0.0-alpha.3', +12617 silly addNameRange '7.0.0-alpha.7', +12617 silly addNameRange '7.0.0-alpha.8', +12617 silly addNameRange '7.0.0-alpha.9', +12617 silly addNameRange '7.0.0-alpha.10', +12617 silly addNameRange '7.0.0-alpha.11', +12617 silly addNameRange '7.0.0-alpha.12', +12617 silly addNameRange '7.0.0-alpha.14', +12617 silly addNameRange '7.0.0-alpha.15', +12617 silly addNameRange '7.0.0-alpha.16', +12617 silly addNameRange '7.0.0-alpha.17', +12617 silly addNameRange '7.0.0-alpha.18', +12617 silly addNameRange '7.0.0-alpha.19', +12617 silly addNameRange '7.0.0-alpha.20', +12617 silly addNameRange '7.0.0-beta.0', +12617 silly addNameRange '7.0.0-beta.1', +12617 silly addNameRange '7.0.0-beta.2' ] ] +12618 silly addNamed babel-plugin-transform-flow-strip-types@6.22.0 +12619 verbose addNamed "6.22.0" is a plain semver version for babel-plugin-transform-flow-strip-types +12620 silly cache afterAdd babel-plugin-transform-flow-strip-types@6.22.0 +12621 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-flow-strip-types/6.22.0/package/package.json not in flight; writing +12622 verbose afterAdd /home/wso2/.npm/babel-plugin-transform-flow-strip-types/6.22.0/package/package.json written +12623 silly fetchNamedPackageData babel-plugin-syntax-flow +12624 silly mapToRegistry name babel-plugin-syntax-flow +12625 silly mapToRegistry using default registry +12626 silly mapToRegistry registry https://registry.npmjs.org/ +12627 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-flow +12628 verbose request uri https://registry.npmjs.org/babel-plugin-syntax-flow +12629 verbose request no auth needed +12630 info attempt registry request try #1 at 3:04:43 PM +12631 verbose etag W/"59a70941-81f8" +12632 verbose lastModified Wed, 30 Aug 2017 18:51:45 GMT +12633 http request GET https://registry.npmjs.org/babel-plugin-syntax-flow +12634 http 200 https://registry.npmjs.org/babel-plugin-syntax-flow +12635 verbose headers { server: 'nginx/1.10.3', +12635 verbose headers 'content-type': 'application/json', +12635 verbose headers 'last-modified': 'Tue, 26 Sep 2017 15:14:51 GMT', +12635 verbose headers etag: 'W/"59ca6eeb-9066"', +12635 verbose headers 'content-encoding': 'gzip', +12635 verbose headers 'cache-control': 'max-age=300', +12635 verbose headers 'content-length': '4499', +12635 verbose headers 'accept-ranges': 'bytes', +12635 verbose headers date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12635 verbose headers via: '1.1 varnish', +12635 verbose headers age: '14', +12635 verbose headers connection: 'keep-alive', +12635 verbose headers 'x-served-by': 'cache-sin18026-SIN', +12635 verbose headers 'x-cache': 'HIT', +12635 verbose headers 'x-cache-hits': '1', +12635 verbose headers 'x-timer': 'S1506936884.539567,VS0,VE0', +12635 verbose headers vary: 'Accept-Encoding, Accept' } +12636 silly get cb [ 200, +12636 silly get { server: 'nginx/1.10.3', +12636 silly get 'content-type': 'application/json', +12636 silly get 'last-modified': 'Tue, 26 Sep 2017 15:14:51 GMT', +12636 silly get etag: 'W/"59ca6eeb-9066"', +12636 silly get 'content-encoding': 'gzip', +12636 silly get 'cache-control': 'max-age=300', +12636 silly get 'content-length': '4499', +12636 silly get 'accept-ranges': 'bytes', +12636 silly get date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12636 silly get via: '1.1 varnish', +12636 silly get age: '14', +12636 silly get connection: 'keep-alive', +12636 silly get 'x-served-by': 'cache-sin18026-SIN', +12636 silly get 'x-cache': 'HIT', +12636 silly get 'x-cache-hits': '1', +12636 silly get 'x-timer': 'S1506936884.539567,VS0,VE0', +12636 silly get vary: 'Accept-Encoding, Accept' } ] +12637 verbose get saving babel-plugin-syntax-flow to /home/wso2/.npm/registry.npmjs.org/babel-plugin-syntax-flow/.cache.json +12638 silly resolveWithNewModule babel-plugin-syntax-flow@6.18.0 checking installable status +12639 silly cache add args [ 'babel-plugin-syntax-flow@^6.18.0', null ] +12640 verbose cache add spec babel-plugin-syntax-flow@^6.18.0 +12641 silly cache add parsed spec Result { +12641 silly cache add raw: 'babel-plugin-syntax-flow@^6.18.0', +12641 silly cache add scope: null, +12641 silly cache add name: 'babel-plugin-syntax-flow', +12641 silly cache add rawSpec: '^6.18.0', +12641 silly cache add spec: '>=6.18.0 <7.0.0', +12641 silly cache add type: 'range' } +12642 silly addNamed babel-plugin-syntax-flow@>=6.18.0 <7.0.0 +12643 verbose addNamed ">=6.18.0 <7.0.0" is a valid semver range for babel-plugin-syntax-flow +12644 silly addNameRange { name: 'babel-plugin-syntax-flow', +12644 silly addNameRange range: '>=6.18.0 <7.0.0', +12644 silly addNameRange hasData: false } +12645 silly mapToRegistry name babel-plugin-syntax-flow +12646 silly mapToRegistry using default registry +12647 silly mapToRegistry registry https://registry.npmjs.org/ +12648 silly mapToRegistry uri https://registry.npmjs.org/babel-plugin-syntax-flow +12649 verbose addNameRange registry:https://registry.npmjs.org/babel-plugin-syntax-flow not in flight; fetching +12650 verbose get https://registry.npmjs.org/babel-plugin-syntax-flow not expired, no request +12651 silly addNameRange number 2 { name: 'babel-plugin-syntax-flow', +12651 silly addNameRange range: '>=6.18.0 <7.0.0', +12651 silly addNameRange hasData: true } +12652 silly addNameRange versions [ 'babel-plugin-syntax-flow', +12652 silly addNameRange [ '6.0.2', +12652 silly addNameRange '6.0.14', +12652 silly addNameRange '6.1.4', +12652 silly addNameRange '6.1.5', +12652 silly addNameRange '6.1.8', +12652 silly addNameRange '6.1.10', +12652 silly addNameRange '6.1.13', +12652 silly addNameRange '6.1.16', +12652 silly addNameRange '6.1.17', +12652 silly addNameRange '6.1.18', +12652 silly addNameRange '6.2.4', +12652 silly addNameRange '6.3.13', +12652 silly addNameRange '6.5.0', +12652 silly addNameRange '6.5.0-1', +12652 silly addNameRange '6.8.0', +12652 silly addNameRange '6.13.0', +12652 silly addNameRange '6.18.0', +12652 silly addNameRange '7.0.0-alpha.1', +12652 silly addNameRange '7.0.0-alpha.3', +12652 silly addNameRange '7.0.0-alpha.9', +12652 silly addNameRange '7.0.0-alpha.12', +12652 silly addNameRange '7.0.0-alpha.13', +12652 silly addNameRange '7.0.0-alpha.14', +12652 silly addNameRange '7.0.0-alpha.15', +12652 silly addNameRange '7.0.0-alpha.16', +12652 silly addNameRange '7.0.0-alpha.17', +12652 silly addNameRange '7.0.0-alpha.18', +12652 silly addNameRange '7.0.0-alpha.19', +12652 silly addNameRange '7.0.0-alpha.20', +12652 silly addNameRange '7.0.0-beta.0', +12652 silly addNameRange '7.0.0-beta.1', +12652 silly addNameRange '7.0.0-beta.2' ] ] +12653 silly addNamed babel-plugin-syntax-flow@6.18.0 +12654 verbose addNamed "6.18.0" is a plain semver version for babel-plugin-syntax-flow +12655 silly cache afterAdd babel-plugin-syntax-flow@6.18.0 +12656 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-flow/6.18.0/package/package.json not in flight; writing +12657 verbose afterAdd /home/wso2/.npm/babel-plugin-syntax-flow/6.18.0/package/package.json written +12658 silly fetchNamedPackageData css-selector-tokenizer +12659 silly mapToRegistry name css-selector-tokenizer +12660 silly mapToRegistry using default registry +12661 silly mapToRegistry registry https://registry.npmjs.org/ +12662 silly mapToRegistry uri https://registry.npmjs.org/css-selector-tokenizer +12663 silly fetchNamedPackageData cssnano +12664 silly mapToRegistry name cssnano +12665 silly mapToRegistry using default registry +12666 silly mapToRegistry registry https://registry.npmjs.org/ +12667 silly mapToRegistry uri https://registry.npmjs.org/cssnano +12668 silly fetchNamedPackageData icss-utils +12669 silly mapToRegistry name icss-utils +12670 silly mapToRegistry using default registry +12671 silly mapToRegistry registry https://registry.npmjs.org/ +12672 silly mapToRegistry uri https://registry.npmjs.org/icss-utils +12673 silly fetchNamedPackageData lodash.camelcase +12674 silly mapToRegistry name lodash.camelcase +12675 silly mapToRegistry using default registry +12676 silly mapToRegistry registry https://registry.npmjs.org/ +12677 silly mapToRegistry uri https://registry.npmjs.org/lodash.camelcase +12678 silly fetchNamedPackageData postcss +12679 silly mapToRegistry name postcss +12680 silly mapToRegistry using default registry +12681 silly mapToRegistry registry https://registry.npmjs.org/ +12682 silly mapToRegistry uri https://registry.npmjs.org/postcss +12683 silly resolveWithNewModule postcss@5.2.17 checking installable status +12684 silly cache add args [ 'postcss@^5.0.6', null ] +12685 verbose cache add spec postcss@^5.0.6 +12686 silly fetchNamedPackageData postcss-modules-extract-imports +12687 silly mapToRegistry name postcss-modules-extract-imports +12688 silly mapToRegistry using default registry +12689 silly mapToRegistry registry https://registry.npmjs.org/ +12690 silly mapToRegistry uri https://registry.npmjs.org/postcss-modules-extract-imports +12691 silly fetchNamedPackageData postcss-modules-local-by-default +12692 silly mapToRegistry name postcss-modules-local-by-default +12693 silly mapToRegistry using default registry +12694 silly mapToRegistry registry https://registry.npmjs.org/ +12695 silly mapToRegistry uri https://registry.npmjs.org/postcss-modules-local-by-default +12696 silly fetchNamedPackageData postcss-modules-scope +12697 silly mapToRegistry name postcss-modules-scope +12698 silly mapToRegistry using default registry +12699 silly mapToRegistry registry https://registry.npmjs.org/ +12700 silly mapToRegistry uri https://registry.npmjs.org/postcss-modules-scope +12701 silly fetchNamedPackageData postcss-modules-values +12702 silly mapToRegistry name postcss-modules-values +12703 silly mapToRegistry using default registry +12704 silly mapToRegistry registry https://registry.npmjs.org/ +12705 silly mapToRegistry uri https://registry.npmjs.org/postcss-modules-values +12706 silly fetchNamedPackageData source-list-map +12707 silly mapToRegistry name source-list-map +12708 silly mapToRegistry using default registry +12709 silly mapToRegistry registry https://registry.npmjs.org/ +12710 silly mapToRegistry uri https://registry.npmjs.org/source-list-map +12711 silly cache add parsed spec Result { +12711 silly cache add raw: 'postcss@^5.0.6', +12711 silly cache add scope: null, +12711 silly cache add name: 'postcss', +12711 silly cache add rawSpec: '^5.0.6', +12711 silly cache add spec: '>=5.0.6 <6.0.0', +12711 silly cache add type: 'range' } +12712 silly addNamed postcss@>=5.0.6 <6.0.0 +12713 verbose addNamed ">=5.0.6 <6.0.0" is a valid semver range for postcss +12714 silly addNameRange { name: 'postcss', range: '>=5.0.6 <6.0.0', hasData: false } +12715 silly mapToRegistry name postcss +12716 silly mapToRegistry using default registry +12717 silly mapToRegistry registry https://registry.npmjs.org/ +12718 silly mapToRegistry uri https://registry.npmjs.org/postcss +12719 verbose addNameRange registry:https://registry.npmjs.org/postcss not in flight; fetching +12720 verbose request uri https://registry.npmjs.org/css-selector-tokenizer +12721 verbose request no auth needed +12722 info attempt registry request try #1 at 3:04:43 PM +12723 verbose etag W/"59b234ad-693e" +12724 verbose lastModified Fri, 08 Sep 2017 06:11:57 GMT +12725 http request GET https://registry.npmjs.org/css-selector-tokenizer +12726 verbose request uri https://registry.npmjs.org/lodash.camelcase +12727 verbose request no auth needed +12728 info attempt registry request try #1 at 3:04:43 PM +12729 verbose etag W/"57f67f93-39d3" +12730 verbose lastModified Thu, 06 Oct 2016 16:45:07 GMT +12731 http request GET https://registry.npmjs.org/lodash.camelcase +12732 verbose request uri https://registry.npmjs.org/icss-utils +12733 verbose request no auth needed +12734 info attempt registry request try #1 at 3:04:43 PM +12735 verbose etag W/"5941c13b-24ee" +12736 verbose lastModified Wed, 14 Jun 2017 23:05:31 GMT +12737 http request GET https://registry.npmjs.org/icss-utils +12738 verbose request uri https://registry.npmjs.org/cssnano +12739 verbose request no auth needed +12740 info attempt registry request try #1 at 3:04:43 PM +12741 verbose etag W/"59a62006-262a4" +12742 verbose lastModified Wed, 30 Aug 2017 02:16:38 GMT +12743 http request GET https://registry.npmjs.org/cssnano +12744 verbose request uri https://registry.npmjs.org/postcss-modules-extract-imports +12745 verbose request no auth needed +12746 info attempt registry request try #1 at 3:04:43 PM +12747 verbose etag W/"592288ea-601b" +12748 verbose lastModified Mon, 22 May 2017 06:44:58 GMT +12749 http request GET https://registry.npmjs.org/postcss-modules-extract-imports +12750 verbose request uri https://registry.npmjs.org/postcss-modules-local-by-default +12751 verbose request no auth needed +12752 info attempt registry request try #1 at 3:04:43 PM +12753 verbose etag W/"5990df8f-72e7" +12754 verbose lastModified Sun, 13 Aug 2017 23:23:59 GMT +12755 http request GET https://registry.npmjs.org/postcss-modules-local-by-default +12756 verbose request uri https://registry.npmjs.org/postcss +12757 verbose request no auth needed +12758 info attempt registry request try #1 at 3:04:43 PM +12759 verbose etag W/"59cceefc-316c3" +12760 verbose lastModified Thu, 28 Sep 2017 12:45:48 GMT +12761 http request GET https://registry.npmjs.org/postcss +12762 verbose request uri https://registry.npmjs.org/postcss-modules-values +12763 verbose request no auth needed +12764 info attempt registry request try #1 at 3:04:43 PM +12765 verbose etag W/"595bb362-430e" +12766 verbose lastModified Tue, 04 Jul 2017 15:25:22 GMT +12767 http request GET https://registry.npmjs.org/postcss-modules-values +12768 verbose request uri https://registry.npmjs.org/source-list-map +12769 verbose request no auth needed +12770 info attempt registry request try #1 at 3:04:43 PM +12771 verbose etag W/"5932a044-4fef" +12772 verbose lastModified Sat, 03 Jun 2017 11:40:52 GMT +12773 http request GET https://registry.npmjs.org/source-list-map +12774 verbose request uri https://registry.npmjs.org/postcss-modules-scope +12775 verbose request no auth needed +12776 info attempt registry request try #1 at 3:04:43 PM +12777 verbose etag W/"59221afd-6fa1" +12778 verbose lastModified Sun, 21 May 2017 22:55:57 GMT +12779 http request GET https://registry.npmjs.org/postcss-modules-scope +12780 http 304 https://registry.npmjs.org/lodash.camelcase +12781 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12781 verbose headers via: '1.1 varnish', +12781 verbose headers 'cache-control': 'max-age=300', +12781 verbose headers etag: 'W/"57f67f93-39d3"', +12781 verbose headers age: '115', +12781 verbose headers connection: 'keep-alive', +12781 verbose headers 'x-served-by': 'cache-sin18033-SIN', +12781 verbose headers 'x-cache': 'HIT', +12781 verbose headers 'x-cache-hits': '2', +12781 verbose headers 'x-timer': 'S1506936884.802147,VS0,VE0', +12781 verbose headers vary: 'Accept-Encoding, Accept' } +12782 silly get cb [ 304, +12782 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12782 silly get via: '1.1 varnish', +12782 silly get 'cache-control': 'max-age=300', +12782 silly get etag: 'W/"57f67f93-39d3"', +12782 silly get age: '115', +12782 silly get connection: 'keep-alive', +12782 silly get 'x-served-by': 'cache-sin18033-SIN', +12782 silly get 'x-cache': 'HIT', +12782 silly get 'x-cache-hits': '2', +12782 silly get 'x-timer': 'S1506936884.802147,VS0,VE0', +12782 silly get vary: 'Accept-Encoding, Accept' } ] +12783 verbose etag https://registry.npmjs.org/lodash.camelcase from cache +12784 verbose get saving lodash.camelcase to /home/wso2/.npm/registry.npmjs.org/lodash.camelcase/.cache.json +12785 silly resolveWithNewModule lodash.camelcase@4.3.0 checking installable status +12786 silly cache add args [ 'lodash.camelcase@^4.3.0', null ] +12787 verbose cache add spec lodash.camelcase@^4.3.0 +12788 silly cache add parsed spec Result { +12788 silly cache add raw: 'lodash.camelcase@^4.3.0', +12788 silly cache add scope: null, +12788 silly cache add name: 'lodash.camelcase', +12788 silly cache add rawSpec: '^4.3.0', +12788 silly cache add spec: '>=4.3.0 <5.0.0', +12788 silly cache add type: 'range' } +12789 silly addNamed lodash.camelcase@>=4.3.0 <5.0.0 +12790 verbose addNamed ">=4.3.0 <5.0.0" is a valid semver range for lodash.camelcase +12791 silly addNameRange { name: 'lodash.camelcase', +12791 silly addNameRange range: '>=4.3.0 <5.0.0', +12791 silly addNameRange hasData: false } +12792 silly mapToRegistry name lodash.camelcase +12793 silly mapToRegistry using default registry +12794 silly mapToRegistry registry https://registry.npmjs.org/ +12795 silly mapToRegistry uri https://registry.npmjs.org/lodash.camelcase +12796 verbose addNameRange registry:https://registry.npmjs.org/lodash.camelcase not in flight; fetching +12797 verbose get https://registry.npmjs.org/lodash.camelcase not expired, no request +12798 silly addNameRange number 2 { name: 'lodash.camelcase', +12798 silly addNameRange range: '>=4.3.0 <5.0.0', +12798 silly addNameRange hasData: true } +12799 silly addNameRange versions [ 'lodash.camelcase', +12799 silly addNameRange [ '3.0.0', +12799 silly addNameRange '3.0.1', +12799 silly addNameRange '4.0.0', +12799 silly addNameRange '4.0.1', +12799 silly addNameRange '4.1.0', +12799 silly addNameRange '4.1.1', +12799 silly addNameRange '4.2.0', +12799 silly addNameRange '4.3.0' ] ] +12800 silly addNamed lodash.camelcase@4.3.0 +12801 verbose addNamed "4.3.0" is a plain semver version for lodash.camelcase +12802 silly cache afterAdd lodash.camelcase@4.3.0 +12803 verbose afterAdd /home/wso2/.npm/lodash.camelcase/4.3.0/package/package.json not in flight; writing +12804 verbose afterAdd /home/wso2/.npm/lodash.camelcase/4.3.0/package/package.json written +12805 http 200 https://registry.npmjs.org/cssnano +12806 verbose headers { server: 'nginx/1.10.3', +12806 verbose headers 'content-type': 'application/json', +12806 verbose headers 'last-modified': 'Mon, 25 Sep 2017 12:49:08 GMT', +12806 verbose headers etag: 'W/"59c8fb44-262c1"', +12806 verbose headers 'content-encoding': 'gzip', +12806 verbose headers 'cache-control': 'max-age=300', +12806 verbose headers 'content-length': '10544', +12806 verbose headers 'accept-ranges': 'bytes', +12806 verbose headers date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12806 verbose headers via: '1.1 varnish', +12806 verbose headers age: '176', +12806 verbose headers connection: 'keep-alive', +12806 verbose headers 'x-served-by': 'cache-sin18033-SIN', +12806 verbose headers 'x-cache': 'HIT', +12806 verbose headers 'x-cache-hits': '4', +12806 verbose headers 'x-timer': 'S1506936884.808838,VS0,VE0', +12806 verbose headers vary: 'Accept-Encoding, Accept' } +12807 silly get cb [ 200, +12807 silly get { server: 'nginx/1.10.3', +12807 silly get 'content-type': 'application/json', +12807 silly get 'last-modified': 'Mon, 25 Sep 2017 12:49:08 GMT', +12807 silly get etag: 'W/"59c8fb44-262c1"', +12807 silly get 'content-encoding': 'gzip', +12807 silly get 'cache-control': 'max-age=300', +12807 silly get 'content-length': '10544', +12807 silly get 'accept-ranges': 'bytes', +12807 silly get date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12807 silly get via: '1.1 varnish', +12807 silly get age: '176', +12807 silly get connection: 'keep-alive', +12807 silly get 'x-served-by': 'cache-sin18033-SIN', +12807 silly get 'x-cache': 'HIT', +12807 silly get 'x-cache-hits': '4', +12807 silly get 'x-timer': 'S1506936884.808838,VS0,VE0', +12807 silly get vary: 'Accept-Encoding, Accept' } ] +12808 verbose get saving cssnano to /home/wso2/.npm/registry.npmjs.org/cssnano/.cache.json +12809 silly resolveWithNewModule cssnano@3.10.0 checking installable status +12810 silly cache add args [ 'cssnano@>=2.6.1 <4', null ] +12811 verbose cache add spec cssnano@>=2.6.1 <4 +12812 silly cache add parsed spec Result { +12812 silly cache add raw: 'cssnano@>=2.6.1 <4', +12812 silly cache add scope: null, +12812 silly cache add name: 'cssnano', +12812 silly cache add rawSpec: '>=2.6.1 <4', +12812 silly cache add spec: '>=2.6.1 <4.0.0', +12812 silly cache add type: 'range' } +12813 silly addNamed cssnano@>=2.6.1 <4.0.0 +12814 verbose addNamed ">=2.6.1 <4.0.0" is a valid semver range for cssnano +12815 silly addNameRange { name: 'cssnano', range: '>=2.6.1 <4.0.0', hasData: false } +12816 silly mapToRegistry name cssnano +12817 silly mapToRegistry using default registry +12818 silly mapToRegistry registry https://registry.npmjs.org/ +12819 silly mapToRegistry uri https://registry.npmjs.org/cssnano +12820 verbose addNameRange registry:https://registry.npmjs.org/cssnano not in flight; fetching +12821 verbose get https://registry.npmjs.org/cssnano not expired, no request +12822 silly addNameRange number 2 { name: 'cssnano', range: '>=2.6.1 <4.0.0', hasData: true } +12823 silly addNameRange versions [ 'cssnano', +12823 silly addNameRange [ '1.0.0', +12823 silly addNameRange '1.0.1', +12823 silly addNameRange '1.0.2', +12823 silly addNameRange '1.1.0', +12823 silly addNameRange '1.2.0', +12823 silly addNameRange '1.2.1', +12823 silly addNameRange '1.3.0', +12823 silly addNameRange '1.3.1', +12823 silly addNameRange '1.3.2', +12823 silly addNameRange '1.3.3', +12823 silly addNameRange '1.4.0', +12823 silly addNameRange '1.4.1', +12823 silly addNameRange '1.4.2', +12823 silly addNameRange '1.4.3', +12823 silly addNameRange '2.0.0', +12823 silly addNameRange '2.0.1', +12823 silly addNameRange '2.0.2', +12823 silly addNameRange '2.0.3', +12823 silly addNameRange '2.1.0', +12823 silly addNameRange '2.1.1', +12823 silly addNameRange '2.2.0', +12823 silly addNameRange '2.3.0', +12823 silly addNameRange '2.4.0', +12823 silly addNameRange '2.5.0', +12823 silly addNameRange '2.6.0', +12823 silly addNameRange '2.6.1', +12823 silly addNameRange '3.0.0', +12823 silly addNameRange '3.0.1', +12823 silly addNameRange '3.0.2', +12823 silly addNameRange '3.0.3', +12823 silly addNameRange '3.1.0', +12823 silly addNameRange '3.2.0', +12823 silly addNameRange '3.3.0', +12823 silly addNameRange '3.3.1', +12823 silly addNameRange '3.3.2', +12823 silly addNameRange '3.4.0', +12823 silly addNameRange '3.5.0', +12823 silly addNameRange '3.5.1', +12823 silly addNameRange '3.5.2', +12823 silly addNameRange '3.6.0', +12823 silly addNameRange '3.6.1', +12823 silly addNameRange '3.6.2', +12823 silly addNameRange '3.7.0', +12823 silly addNameRange '3.7.1', +12823 silly addNameRange '3.7.2', +12823 silly addNameRange '3.7.3', +12823 silly addNameRange '3.7.4', +12823 silly addNameRange '3.7.5', +12823 silly addNameRange '3.7.6', +12823 silly addNameRange '3.7.7', +12823 silly addNameRange '3.8.0', +12823 silly addNameRange '3.8.1', +12823 silly addNameRange '3.8.2', +12823 silly addNameRange '3.9.0', +12823 silly addNameRange '3.9.1', +12823 silly addNameRange '3.10.0', +12823 silly addNameRange '4.0.0-rc.0', +12823 silly addNameRange '4.0.0-rc.1', +12823 silly addNameRange '4.0.0-rc.2' ] ] +12824 silly addNamed cssnano@3.10.0 +12825 verbose addNamed "3.10.0" is a plain semver version for cssnano +12826 http 304 https://registry.npmjs.org/css-selector-tokenizer +12827 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12827 verbose headers via: '1.1 varnish', +12827 verbose headers 'cache-control': 'max-age=300', +12827 verbose headers etag: 'W/"59b234ad-693e"', +12827 verbose headers age: '115', +12827 verbose headers connection: 'keep-alive', +12827 verbose headers 'x-served-by': 'cache-sin18033-SIN', +12827 verbose headers 'x-cache': 'HIT', +12827 verbose headers 'x-cache-hits': '4', +12827 verbose headers 'x-timer': 'S1506936884.810652,VS0,VE0', +12827 verbose headers vary: 'Accept-Encoding, Accept' } +12828 silly get cb [ 304, +12828 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12828 silly get via: '1.1 varnish', +12828 silly get 'cache-control': 'max-age=300', +12828 silly get etag: 'W/"59b234ad-693e"', +12828 silly get age: '115', +12828 silly get connection: 'keep-alive', +12828 silly get 'x-served-by': 'cache-sin18033-SIN', +12828 silly get 'x-cache': 'HIT', +12828 silly get 'x-cache-hits': '4', +12828 silly get 'x-timer': 'S1506936884.810652,VS0,VE0', +12828 silly get vary: 'Accept-Encoding, Accept' } ] +12829 verbose etag https://registry.npmjs.org/css-selector-tokenizer from cache +12830 verbose get saving css-selector-tokenizer to /home/wso2/.npm/registry.npmjs.org/css-selector-tokenizer/.cache.json +12831 silly cache afterAdd cssnano@3.10.0 +12832 verbose afterAdd /home/wso2/.npm/cssnano/3.10.0/package/package.json not in flight; writing +12833 silly resolveWithNewModule css-selector-tokenizer@0.7.0 checking installable status +12834 silly cache add args [ 'css-selector-tokenizer@^0.7.0', null ] +12835 verbose cache add spec css-selector-tokenizer@^0.7.0 +12836 silly cache add parsed spec Result { +12836 silly cache add raw: 'css-selector-tokenizer@^0.7.0', +12836 silly cache add scope: null, +12836 silly cache add name: 'css-selector-tokenizer', +12836 silly cache add rawSpec: '^0.7.0', +12836 silly cache add spec: '>=0.7.0 <0.8.0', +12836 silly cache add type: 'range' } +12837 silly addNamed css-selector-tokenizer@>=0.7.0 <0.8.0 +12838 verbose addNamed ">=0.7.0 <0.8.0" is a valid semver range for css-selector-tokenizer +12839 silly addNameRange { name: 'css-selector-tokenizer', +12839 silly addNameRange range: '>=0.7.0 <0.8.0', +12839 silly addNameRange hasData: false } +12840 silly mapToRegistry name css-selector-tokenizer +12841 silly mapToRegistry using default registry +12842 silly mapToRegistry registry https://registry.npmjs.org/ +12843 silly mapToRegistry uri https://registry.npmjs.org/css-selector-tokenizer +12844 verbose addNameRange registry:https://registry.npmjs.org/css-selector-tokenizer not in flight; fetching +12845 verbose get https://registry.npmjs.org/css-selector-tokenizer not expired, no request +12846 silly addNameRange number 2 { name: 'css-selector-tokenizer', +12846 silly addNameRange range: '>=0.7.0 <0.8.0', +12846 silly addNameRange hasData: true } +12847 silly addNameRange versions [ 'css-selector-tokenizer', +12847 silly addNameRange [ '0.1.0', +12847 silly addNameRange '0.2.0', +12847 silly addNameRange '0.2.1', +12847 silly addNameRange '0.3.0', +12847 silly addNameRange '0.3.1', +12847 silly addNameRange '0.4.0', +12847 silly addNameRange '0.4.1', +12847 silly addNameRange '0.5.0', +12847 silly addNameRange '0.5.1', +12847 silly addNameRange '0.5.2', +12847 silly addNameRange '0.5.3', +12847 silly addNameRange '0.5.4', +12847 silly addNameRange '0.6.0', +12847 silly addNameRange '0.7.0' ] ] +12848 silly addNamed css-selector-tokenizer@0.7.0 +12849 verbose addNamed "0.7.0" is a plain semver version for css-selector-tokenizer +12850 verbose afterAdd /home/wso2/.npm/cssnano/3.10.0/package/package.json written +12851 silly cache afterAdd css-selector-tokenizer@0.7.0 +12852 verbose afterAdd /home/wso2/.npm/css-selector-tokenizer/0.7.0/package/package.json not in flight; writing +12853 verbose afterAdd /home/wso2/.npm/css-selector-tokenizer/0.7.0/package/package.json written +12854 http 304 https://registry.npmjs.org/icss-utils +12855 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12855 verbose headers via: '1.1 varnish', +12855 verbose headers 'cache-control': 'max-age=300', +12855 verbose headers etag: 'W/"5941c13b-24ee"', +12855 verbose headers age: '98', +12855 verbose headers connection: 'keep-alive', +12855 verbose headers 'x-served-by': 'cache-sin18030-SIN', +12855 verbose headers 'x-cache': 'HIT', +12855 verbose headers 'x-cache-hits': '2', +12855 verbose headers 'x-timer': 'S1506936884.843006,VS0,VE0', +12855 verbose headers vary: 'Accept-Encoding, Accept' } +12856 silly get cb [ 304, +12856 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12856 silly get via: '1.1 varnish', +12856 silly get 'cache-control': 'max-age=300', +12856 silly get etag: 'W/"5941c13b-24ee"', +12856 silly get age: '98', +12856 silly get connection: 'keep-alive', +12856 silly get 'x-served-by': 'cache-sin18030-SIN', +12856 silly get 'x-cache': 'HIT', +12856 silly get 'x-cache-hits': '2', +12856 silly get 'x-timer': 'S1506936884.843006,VS0,VE0', +12856 silly get vary: 'Accept-Encoding, Accept' } ] +12857 verbose etag https://registry.npmjs.org/icss-utils from cache +12858 verbose get saving icss-utils to /home/wso2/.npm/registry.npmjs.org/icss-utils/.cache.json +12859 silly resolveWithNewModule icss-utils@2.1.0 checking installable status +12860 silly cache add args [ 'icss-utils@^2.1.0', null ] +12861 verbose cache add spec icss-utils@^2.1.0 +12862 silly cache add parsed spec Result { +12862 silly cache add raw: 'icss-utils@^2.1.0', +12862 silly cache add scope: null, +12862 silly cache add name: 'icss-utils', +12862 silly cache add rawSpec: '^2.1.0', +12862 silly cache add spec: '>=2.1.0 <3.0.0', +12862 silly cache add type: 'range' } +12863 silly addNamed icss-utils@>=2.1.0 <3.0.0 +12864 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for icss-utils +12865 silly addNameRange { name: 'icss-utils', range: '>=2.1.0 <3.0.0', hasData: false } +12866 silly mapToRegistry name icss-utils +12867 silly mapToRegistry using default registry +12868 silly mapToRegistry registry https://registry.npmjs.org/ +12869 silly mapToRegistry uri https://registry.npmjs.org/icss-utils +12870 verbose addNameRange registry:https://registry.npmjs.org/icss-utils not in flight; fetching +12871 verbose get https://registry.npmjs.org/icss-utils not expired, no request +12872 silly addNameRange number 2 { name: 'icss-utils', range: '>=2.1.0 <3.0.0', hasData: true } +12873 silly addNameRange versions [ 'icss-utils', [ '2.0.0', '2.1.0', '3.0.0', '3.0.1' ] ] +12874 silly addNamed icss-utils@2.1.0 +12875 verbose addNamed "2.1.0" is a plain semver version for icss-utils +12876 silly cache afterAdd icss-utils@2.1.0 +12877 verbose afterAdd /home/wso2/.npm/icss-utils/2.1.0/package/package.json not in flight; writing +12878 verbose afterAdd /home/wso2/.npm/icss-utils/2.1.0/package/package.json written +12879 http 304 https://registry.npmjs.org/postcss-modules-local-by-default +12880 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12880 verbose headers via: '1.1 varnish', +12880 verbose headers 'cache-control': 'max-age=300', +12880 verbose headers etag: 'W/"5990df8f-72e7"', +12880 verbose headers age: '115', +12880 verbose headers connection: 'keep-alive', +12880 verbose headers 'x-served-by': 'cache-sin18025-SIN', +12880 verbose headers 'x-cache': 'HIT', +12880 verbose headers 'x-cache-hits': '1', +12880 verbose headers 'x-timer': 'S1506936884.862627,VS0,VE0', +12880 verbose headers vary: 'Accept-Encoding, Accept' } +12881 silly get cb [ 304, +12881 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12881 silly get via: '1.1 varnish', +12881 silly get 'cache-control': 'max-age=300', +12881 silly get etag: 'W/"5990df8f-72e7"', +12881 silly get age: '115', +12881 silly get connection: 'keep-alive', +12881 silly get 'x-served-by': 'cache-sin18025-SIN', +12881 silly get 'x-cache': 'HIT', +12881 silly get 'x-cache-hits': '1', +12881 silly get 'x-timer': 'S1506936884.862627,VS0,VE0', +12881 silly get vary: 'Accept-Encoding, Accept' } ] +12882 verbose etag https://registry.npmjs.org/postcss-modules-local-by-default from cache +12883 verbose get saving postcss-modules-local-by-default to /home/wso2/.npm/registry.npmjs.org/postcss-modules-local-by-default/.cache.json +12884 silly resolveWithNewModule postcss-modules-local-by-default@1.2.0 checking installable status +12885 silly cache add args [ 'postcss-modules-local-by-default@^1.0.1', null ] +12886 verbose cache add spec postcss-modules-local-by-default@^1.0.1 +12887 silly cache add parsed spec Result { +12887 silly cache add raw: 'postcss-modules-local-by-default@^1.0.1', +12887 silly cache add scope: null, +12887 silly cache add name: 'postcss-modules-local-by-default', +12887 silly cache add rawSpec: '^1.0.1', +12887 silly cache add spec: '>=1.0.1 <2.0.0', +12887 silly cache add type: 'range' } +12888 silly addNamed postcss-modules-local-by-default@>=1.0.1 <2.0.0 +12889 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for postcss-modules-local-by-default +12890 silly addNameRange { name: 'postcss-modules-local-by-default', +12890 silly addNameRange range: '>=1.0.1 <2.0.0', +12890 silly addNameRange hasData: false } +12891 silly mapToRegistry name postcss-modules-local-by-default +12892 silly mapToRegistry using default registry +12893 silly mapToRegistry registry https://registry.npmjs.org/ +12894 silly mapToRegistry uri https://registry.npmjs.org/postcss-modules-local-by-default +12895 verbose addNameRange registry:https://registry.npmjs.org/postcss-modules-local-by-default not in flight; fetching +12896 verbose get https://registry.npmjs.org/postcss-modules-local-by-default not expired, no request +12897 silly addNameRange number 2 { name: 'postcss-modules-local-by-default', +12897 silly addNameRange range: '>=1.0.1 <2.0.0', +12897 silly addNameRange hasData: true } +12898 silly addNameRange versions [ 'postcss-modules-local-by-default', +12898 silly addNameRange [ '0.0.6', +12898 silly addNameRange '0.0.7', +12898 silly addNameRange '0.0.8', +12898 silly addNameRange '0.0.9', +12898 silly addNameRange '0.0.10', +12898 silly addNameRange '0.0.11', +12898 silly addNameRange '0.0.12', +12898 silly addNameRange '1.0.0-beta1', +12898 silly addNameRange '1.0.0-beta2', +12898 silly addNameRange '1.0.0', +12898 silly addNameRange '1.0.1', +12898 silly addNameRange '1.0.2', +12898 silly addNameRange '1.1.0', +12898 silly addNameRange '1.1.1', +12898 silly addNameRange '1.2.0' ] ] +12899 silly addNamed postcss-modules-local-by-default@1.2.0 +12900 verbose addNamed "1.2.0" is a plain semver version for postcss-modules-local-by-default +12901 silly cache afterAdd postcss-modules-local-by-default@1.2.0 +12902 verbose afterAdd /home/wso2/.npm/postcss-modules-local-by-default/1.2.0/package/package.json not in flight; writing +12903 http 304 https://registry.npmjs.org/postcss-modules-extract-imports +12904 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12904 verbose headers via: '1.1 varnish', +12904 verbose headers 'cache-control': 'max-age=300', +12904 verbose headers etag: 'W/"592288ea-601b"', +12904 verbose headers age: '115', +12904 verbose headers connection: 'keep-alive', +12904 verbose headers 'x-served-by': 'cache-sin18027-SIN', +12904 verbose headers 'x-cache': 'HIT', +12904 verbose headers 'x-cache-hits': '2', +12904 verbose headers 'x-timer': 'S1506936884.869600,VS0,VE0', +12904 verbose headers vary: 'Accept-Encoding, Accept' } +12905 silly get cb [ 304, +12905 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12905 silly get via: '1.1 varnish', +12905 silly get 'cache-control': 'max-age=300', +12905 silly get etag: 'W/"592288ea-601b"', +12905 silly get age: '115', +12905 silly get connection: 'keep-alive', +12905 silly get 'x-served-by': 'cache-sin18027-SIN', +12905 silly get 'x-cache': 'HIT', +12905 silly get 'x-cache-hits': '2', +12905 silly get 'x-timer': 'S1506936884.869600,VS0,VE0', +12905 silly get vary: 'Accept-Encoding, Accept' } ] +12906 verbose etag https://registry.npmjs.org/postcss-modules-extract-imports from cache +12907 verbose get saving postcss-modules-extract-imports to /home/wso2/.npm/registry.npmjs.org/postcss-modules-extract-imports/.cache.json +12908 verbose afterAdd /home/wso2/.npm/postcss-modules-local-by-default/1.2.0/package/package.json written +12909 silly resolveWithNewModule postcss-modules-extract-imports@1.1.0 checking installable status +12910 silly cache add args [ 'postcss-modules-extract-imports@^1.0.0', null ] +12911 verbose cache add spec postcss-modules-extract-imports@^1.0.0 +12912 silly cache add parsed spec Result { +12912 silly cache add raw: 'postcss-modules-extract-imports@^1.0.0', +12912 silly cache add scope: null, +12912 silly cache add name: 'postcss-modules-extract-imports', +12912 silly cache add rawSpec: '^1.0.0', +12912 silly cache add spec: '>=1.0.0 <2.0.0', +12912 silly cache add type: 'range' } +12913 silly addNamed postcss-modules-extract-imports@>=1.0.0 <2.0.0 +12914 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for postcss-modules-extract-imports +12915 silly addNameRange { name: 'postcss-modules-extract-imports', +12915 silly addNameRange range: '>=1.0.0 <2.0.0', +12915 silly addNameRange hasData: false } +12916 silly mapToRegistry name postcss-modules-extract-imports +12917 silly mapToRegistry using default registry +12918 silly mapToRegistry registry https://registry.npmjs.org/ +12919 silly mapToRegistry uri https://registry.npmjs.org/postcss-modules-extract-imports +12920 verbose addNameRange registry:https://registry.npmjs.org/postcss-modules-extract-imports not in flight; fetching +12921 verbose get https://registry.npmjs.org/postcss-modules-extract-imports not expired, no request +12922 silly addNameRange number 2 { name: 'postcss-modules-extract-imports', +12922 silly addNameRange range: '>=1.0.0 <2.0.0', +12922 silly addNameRange hasData: true } +12923 silly addNameRange versions [ 'postcss-modules-extract-imports', +12923 silly addNameRange [ '0.0.1', +12923 silly addNameRange '0.0.2', +12923 silly addNameRange '0.0.3', +12923 silly addNameRange '0.0.4', +12923 silly addNameRange '0.0.5', +12923 silly addNameRange '1.0.0-beta1', +12923 silly addNameRange '0.0.6', +12923 silly addNameRange '1.0.0-beta2', +12923 silly addNameRange '1.0.0', +12923 silly addNameRange '1.0.1', +12923 silly addNameRange '1.1.0', +12923 silly addNameRange '1.2.0' ] ] +12924 silly addNamed postcss-modules-extract-imports@1.1.0 +12925 verbose addNamed "1.1.0" is a plain semver version for postcss-modules-extract-imports +12926 silly cache afterAdd postcss-modules-extract-imports@1.1.0 +12927 verbose afterAdd /home/wso2/.npm/postcss-modules-extract-imports/1.1.0/package/package.json not in flight; writing +12928 verbose afterAdd /home/wso2/.npm/postcss-modules-extract-imports/1.1.0/package/package.json written +12929 http 304 https://registry.npmjs.org/postcss-modules-values +12930 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12930 verbose headers via: '1.1 varnish', +12930 verbose headers 'cache-control': 'max-age=300', +12930 verbose headers etag: 'W/"595bb362-430e"', +12930 verbose headers age: '115', +12930 verbose headers connection: 'keep-alive', +12930 verbose headers 'x-served-by': 'cache-sin18032-SIN', +12930 verbose headers 'x-cache': 'HIT', +12930 verbose headers 'x-cache-hits': '1', +12930 verbose headers 'x-timer': 'S1506936884.873060,VS0,VE0', +12930 verbose headers vary: 'Accept-Encoding, Accept' } +12931 silly get cb [ 304, +12931 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12931 silly get via: '1.1 varnish', +12931 silly get 'cache-control': 'max-age=300', +12931 silly get etag: 'W/"595bb362-430e"', +12931 silly get age: '115', +12931 silly get connection: 'keep-alive', +12931 silly get 'x-served-by': 'cache-sin18032-SIN', +12931 silly get 'x-cache': 'HIT', +12931 silly get 'x-cache-hits': '1', +12931 silly get 'x-timer': 'S1506936884.873060,VS0,VE0', +12931 silly get vary: 'Accept-Encoding, Accept' } ] +12932 verbose etag https://registry.npmjs.org/postcss-modules-values from cache +12933 verbose get saving postcss-modules-values to /home/wso2/.npm/registry.npmjs.org/postcss-modules-values/.cache.json +12934 silly resolveWithNewModule postcss-modules-values@1.3.0 checking installable status +12935 silly cache add args [ 'postcss-modules-values@^1.1.0', null ] +12936 verbose cache add spec postcss-modules-values@^1.1.0 +12937 silly cache add parsed spec Result { +12937 silly cache add raw: 'postcss-modules-values@^1.1.0', +12937 silly cache add scope: null, +12937 silly cache add name: 'postcss-modules-values', +12937 silly cache add rawSpec: '^1.1.0', +12937 silly cache add spec: '>=1.1.0 <2.0.0', +12937 silly cache add type: 'range' } +12938 silly addNamed postcss-modules-values@>=1.1.0 <2.0.0 +12939 verbose addNamed ">=1.1.0 <2.0.0" is a valid semver range for postcss-modules-values +12940 silly addNameRange { name: 'postcss-modules-values', +12940 silly addNameRange range: '>=1.1.0 <2.0.0', +12940 silly addNameRange hasData: false } +12941 silly mapToRegistry name postcss-modules-values +12942 silly mapToRegistry using default registry +12943 silly mapToRegistry registry https://registry.npmjs.org/ +12944 silly mapToRegistry uri https://registry.npmjs.org/postcss-modules-values +12945 verbose addNameRange registry:https://registry.npmjs.org/postcss-modules-values not in flight; fetching +12946 verbose get https://registry.npmjs.org/postcss-modules-values not expired, no request +12947 silly addNameRange number 2 { name: 'postcss-modules-values', +12947 silly addNameRange range: '>=1.1.0 <2.0.0', +12947 silly addNameRange hasData: true } +12948 silly addNameRange versions [ 'postcss-modules-values', +12948 silly addNameRange [ '1.0.0', +12948 silly addNameRange '1.1.0', +12948 silly addNameRange '1.1.1', +12948 silly addNameRange '1.1.2', +12948 silly addNameRange '1.1.3', +12948 silly addNameRange '1.2.0', +12948 silly addNameRange '1.2.1', +12948 silly addNameRange '1.2.2', +12948 silly addNameRange '1.3.0' ] ] +12949 silly addNamed postcss-modules-values@1.3.0 +12950 verbose addNamed "1.3.0" is a plain semver version for postcss-modules-values +12951 silly cache afterAdd postcss-modules-values@1.3.0 +12952 verbose afterAdd /home/wso2/.npm/postcss-modules-values/1.3.0/package/package.json not in flight; writing +12953 verbose afterAdd /home/wso2/.npm/postcss-modules-values/1.3.0/package/package.json written +12954 http 304 https://registry.npmjs.org/postcss +12955 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12955 verbose headers via: '1.1 varnish', +12955 verbose headers 'cache-control': 'max-age=300', +12955 verbose headers etag: 'W/"59cceefc-316c3"', +12955 verbose headers age: '44', +12955 verbose headers connection: 'keep-alive', +12955 verbose headers 'x-served-by': 'cache-sin18022-SIN', +12955 verbose headers 'x-cache': 'HIT', +12955 verbose headers 'x-cache-hits': '3', +12955 verbose headers 'x-timer': 'S1506936884.893083,VS0,VE0', +12955 verbose headers vary: 'Accept-Encoding, Accept' } +12956 silly get cb [ 304, +12956 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12956 silly get via: '1.1 varnish', +12956 silly get 'cache-control': 'max-age=300', +12956 silly get etag: 'W/"59cceefc-316c3"', +12956 silly get age: '44', +12956 silly get connection: 'keep-alive', +12956 silly get 'x-served-by': 'cache-sin18022-SIN', +12956 silly get 'x-cache': 'HIT', +12956 silly get 'x-cache-hits': '3', +12956 silly get 'x-timer': 'S1506936884.893083,VS0,VE0', +12956 silly get vary: 'Accept-Encoding, Accept' } ] +12957 verbose etag https://registry.npmjs.org/postcss from cache +12958 verbose get saving postcss to /home/wso2/.npm/registry.npmjs.org/postcss/.cache.json +12959 silly addNameRange number 2 { name: 'postcss', range: '>=5.0.6 <6.0.0', hasData: true } +12960 silly addNameRange versions [ 'postcss', +12960 silly addNameRange [ '0.1.0', +12960 silly addNameRange '0.2.0', +12960 silly addNameRange '0.3.0', +12960 silly addNameRange '0.3.1', +12960 silly addNameRange '0.3.2', +12960 silly addNameRange '0.3.3', +12960 silly addNameRange '0.3.4', +12960 silly addNameRange '0.3.5', +12960 silly addNameRange '1.0.0', +12960 silly addNameRange '2.0.0', +12960 silly addNameRange '2.1.0', +12960 silly addNameRange '2.1.1', +12960 silly addNameRange '2.1.2', +12960 silly addNameRange '2.2.0', +12960 silly addNameRange '2.2.1', +12960 silly addNameRange '2.2.2', +12960 silly addNameRange '2.2.3', +12960 silly addNameRange '2.2.4', +12960 silly addNameRange '2.2.5', +12960 silly addNameRange '2.2.6', +12960 silly addNameRange '3.0.0', +12960 silly addNameRange '3.0.1', +12960 silly addNameRange '3.0.2', +12960 silly addNameRange '3.0.3', +12960 silly addNameRange '3.0.4', +12960 silly addNameRange '3.0.5', +12960 silly addNameRange '3.0.6', +12960 silly addNameRange '3.0.7', +12960 silly addNameRange '4.0.0', +12960 silly addNameRange '4.0.1', +12960 silly addNameRange '4.0.2', +12960 silly addNameRange '4.0.3', +12960 silly addNameRange '4.0.4', +12960 silly addNameRange '4.0.5', +12960 silly addNameRange '4.0.6', +12960 silly addNameRange '4.1.0', +12960 silly addNameRange '4.1.1', +12960 silly addNameRange '4.1.2', +12960 silly addNameRange '4.1.3', +12960 silly addNameRange '4.1.4', +12960 silly addNameRange '4.1.5', +12960 silly addNameRange '4.1.6', +12960 silly addNameRange '4.1.7', +12960 silly addNameRange '4.1.8', +12960 silly addNameRange '4.1.9', +12960 silly addNameRange '4.1.10', +12960 silly addNameRange '4.1.11', +12960 silly addNameRange '4.1.12', +12960 silly addNameRange '4.1.13', +12960 silly addNameRange '4.1.14', +12960 silly addNameRange '4.1.15', +12960 silly addNameRange '4.1.16', +12960 silly addNameRange '5.0.0', +12960 silly addNameRange '5.0.1', +12960 silly addNameRange '5.0.2', +12960 silly addNameRange '5.0.3', +12960 silly addNameRange '5.0.4', +12960 silly addNameRange '5.0.5', +12960 silly addNameRange '5.0.6', +12960 silly addNameRange '5.0.7', +12960 silly addNameRange '5.0.8', +12960 silly addNameRange '5.0.9', +12960 silly addNameRange '5.0.10', +12960 silly addNameRange '5.0.11', +12960 silly addNameRange '5.0.12', +12960 silly addNameRange '5.0.13', +12960 silly addNameRange '5.0.14', +12960 silly addNameRange '5.0.15', +12960 silly addNameRange '5.0.16', +12960 silly addNameRange '5.0.17', +12960 silly addNameRange '5.0.18', +12960 silly addNameRange '5.0.19', +12960 silly addNameRange '5.0.20', +12960 silly addNameRange '5.0.21', +12960 silly addNameRange '5.1.0', +12960 silly addNameRange '5.1.1', +12960 silly addNameRange '5.1.2', +12960 silly addNameRange '5.2.0', +12960 silly addNameRange '5.2.1', +12960 silly addNameRange '5.2.2', +12960 silly addNameRange '5.2.3', +12960 silly addNameRange '5.2.4', +12960 silly addNameRange '5.2.5', +12960 silly addNameRange '5.2.6', +12960 silly addNameRange '5.2.7', +12960 silly addNameRange '5.2.8', +12960 silly addNameRange '5.2.9', +12960 silly addNameRange '5.2.10', +12960 silly addNameRange '5.2.11', +12960 silly addNameRange '5.2.12', +12960 silly addNameRange '5.2.13', +12960 silly addNameRange '5.2.14', +12960 silly addNameRange '5.2.15', +12960 silly addNameRange '5.2.16', +12960 silly addNameRange '5.2.17', +12960 silly addNameRange '6.0.0', +12960 silly addNameRange '6.0.1', +12960 silly addNameRange '6.0.2', +12960 silly addNameRange '6.0.3', +12960 silly addNameRange '6.0.4', +12960 silly addNameRange '6.0.5', +12960 silly addNameRange '6.0.6', +12960 silly addNameRange '6.0.7', +12960 silly addNameRange '6.0.8', +12960 silly addNameRange '6.0.9', +12960 silly addNameRange '6.0.10', +12960 silly addNameRange '6.0.11', +12960 silly addNameRange '6.0.12' ] ] +12961 silly addNamed postcss@5.2.17 +12962 verbose addNamed "5.2.17" is a plain semver version for postcss +12963 silly cache afterAdd postcss@5.2.17 +12964 verbose afterAdd /home/wso2/.npm/postcss/5.2.17/package/package.json not in flight; writing +12965 verbose afterAdd /home/wso2/.npm/postcss/5.2.17/package/package.json written +12966 http 304 https://registry.npmjs.org/postcss-modules-scope +12967 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12967 verbose headers via: '1.1 varnish', +12967 verbose headers 'cache-control': 'max-age=300', +12967 verbose headers etag: 'W/"59221afd-6fa1"', +12967 verbose headers age: '115', +12967 verbose headers connection: 'keep-alive', +12967 verbose headers 'x-served-by': 'cache-sin18023-SIN', +12967 verbose headers 'x-cache': 'HIT', +12967 verbose headers 'x-cache-hits': '2', +12967 verbose headers 'x-timer': 'S1506936884.931538,VS0,VE0', +12967 verbose headers vary: 'Accept-Encoding, Accept' } +12968 silly get cb [ 304, +12968 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12968 silly get via: '1.1 varnish', +12968 silly get 'cache-control': 'max-age=300', +12968 silly get etag: 'W/"59221afd-6fa1"', +12968 silly get age: '115', +12968 silly get connection: 'keep-alive', +12968 silly get 'x-served-by': 'cache-sin18023-SIN', +12968 silly get 'x-cache': 'HIT', +12968 silly get 'x-cache-hits': '2', +12968 silly get 'x-timer': 'S1506936884.931538,VS0,VE0', +12968 silly get vary: 'Accept-Encoding, Accept' } ] +12969 verbose etag https://registry.npmjs.org/postcss-modules-scope from cache +12970 verbose get saving postcss-modules-scope to /home/wso2/.npm/registry.npmjs.org/postcss-modules-scope/.cache.json +12971 silly resolveWithNewModule postcss-modules-scope@1.1.0 checking installable status +12972 silly cache add args [ 'postcss-modules-scope@^1.0.0', null ] +12973 verbose cache add spec postcss-modules-scope@^1.0.0 +12974 silly cache add parsed spec Result { +12974 silly cache add raw: 'postcss-modules-scope@^1.0.0', +12974 silly cache add scope: null, +12974 silly cache add name: 'postcss-modules-scope', +12974 silly cache add rawSpec: '^1.0.0', +12974 silly cache add spec: '>=1.0.0 <2.0.0', +12974 silly cache add type: 'range' } +12975 silly addNamed postcss-modules-scope@>=1.0.0 <2.0.0 +12976 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for postcss-modules-scope +12977 silly addNameRange { name: 'postcss-modules-scope', +12977 silly addNameRange range: '>=1.0.0 <2.0.0', +12977 silly addNameRange hasData: false } +12978 silly mapToRegistry name postcss-modules-scope +12979 silly mapToRegistry using default registry +12980 silly mapToRegistry registry https://registry.npmjs.org/ +12981 silly mapToRegistry uri https://registry.npmjs.org/postcss-modules-scope +12982 verbose addNameRange registry:https://registry.npmjs.org/postcss-modules-scope not in flight; fetching +12983 verbose get https://registry.npmjs.org/postcss-modules-scope not expired, no request +12984 silly addNameRange number 2 { name: 'postcss-modules-scope', +12984 silly addNameRange range: '>=1.0.0 <2.0.0', +12984 silly addNameRange hasData: true } +12985 silly addNameRange versions [ 'postcss-modules-scope', +12985 silly addNameRange [ '0.0.1', +12985 silly addNameRange '0.0.2', +12985 silly addNameRange '0.0.3', +12985 silly addNameRange '0.0.4', +12985 silly addNameRange '0.0.5', +12985 silly addNameRange '0.0.6', +12985 silly addNameRange '0.0.7', +12985 silly addNameRange '0.0.8', +12985 silly addNameRange '1.0.0-beta1', +12985 silly addNameRange '1.0.0-beta2', +12985 silly addNameRange '1.0.0', +12985 silly addNameRange '1.0.1', +12985 silly addNameRange '1.0.2', +12985 silly addNameRange '1.1.0' ] ] +12986 silly addNamed postcss-modules-scope@1.1.0 +12987 verbose addNamed "1.1.0" is a plain semver version for postcss-modules-scope +12988 http 304 https://registry.npmjs.org/source-list-map +12989 verbose headers { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12989 verbose headers via: '1.1 varnish', +12989 verbose headers 'cache-control': 'max-age=300', +12989 verbose headers etag: 'W/"5932a044-4fef"', +12989 verbose headers age: '169', +12989 verbose headers connection: 'keep-alive', +12989 verbose headers 'x-served-by': 'cache-sin18027-SIN', +12989 verbose headers 'x-cache': 'HIT', +12989 verbose headers 'x-cache-hits': '46', +12989 verbose headers 'x-timer': 'S1506936884.931106,VS0,VE0', +12989 verbose headers vary: 'Accept-Encoding, Accept' } +12990 silly get cb [ 304, +12990 silly get { date: 'Mon, 02 Oct 2017 09:34:43 GMT', +12990 silly get via: '1.1 varnish', +12990 silly get 'cache-control': 'max-age=300', +12990 silly get etag: 'W/"5932a044-4fef"', +12990 silly get age: '169', +12990 silly get connection: 'keep-alive', +12990 silly get 'x-served-by': 'cache-sin18027-SIN', +12990 silly get 'x-cache': 'HIT', +12990 silly get 'x-cache-hits': '46', +12990 silly get 'x-timer': 'S1506936884.931106,VS0,VE0', +12990 silly get vary: 'Accept-Encoding, Accept' } ] +12991 verbose etag https://registry.npmjs.org/source-list-map from cache +12992 verbose get saving source-list-map to /home/wso2/.npm/registry.npmjs.org/source-list-map/.cache.json +12993 silly cache afterAdd postcss-modules-scope@1.1.0 +12994 verbose afterAdd /home/wso2/.npm/postcss-modules-scope/1.1.0/package/package.json not in flight; writing +12995 silly resolveWithNewModule source-list-map@0.1.8 checking installable status +12996 silly cache add args [ 'source-list-map@^0.1.7', null ] +12997 verbose cache add spec source-list-map@^0.1.7 +12998 silly cache add parsed spec Result { +12998 silly cache add raw: 'source-list-map@^0.1.7', +12998 silly cache add scope: null, +12998 silly cache add name: 'source-list-map', +12998 silly cache add rawSpec: '^0.1.7', +12998 silly cache add spec: '>=0.1.7 <0.2.0', +12998 silly cache add type: 'range' } +12999 silly addNamed source-list-map@>=0.1.7 <0.2.0 +13000 verbose addNamed ">=0.1.7 <0.2.0" is a valid semver range for source-list-map +13001 silly addNameRange { name: 'source-list-map', +13001 silly addNameRange range: '>=0.1.7 <0.2.0', +13001 silly addNameRange hasData: false } +13002 silly mapToRegistry name source-list-map +13003 silly mapToRegistry using default registry +13004 silly mapToRegistry registry https://registry.npmjs.org/ +13005 silly mapToRegistry uri https://registry.npmjs.org/source-list-map +13006 verbose addNameRange registry:https://registry.npmjs.org/source-list-map not in flight; fetching +13007 verbose afterAdd /home/wso2/.npm/postcss-modules-scope/1.1.0/package/package.json written +13008 verbose get https://registry.npmjs.org/source-list-map not expired, no request +13009 silly addNameRange number 2 { name: 'source-list-map', +13009 silly addNameRange range: '>=0.1.7 <0.2.0', +13009 silly addNameRange hasData: true } +13010 silly addNameRange versions [ 'source-list-map', +13010 silly addNameRange [ '0.1.0', +13010 silly addNameRange '0.1.1', +13010 silly addNameRange '0.1.2', +13010 silly addNameRange '0.1.3', +13010 silly addNameRange '0.1.4', +13010 silly addNameRange '0.1.5', +13010 silly addNameRange '0.1.6', +13010 silly addNameRange '0.1.7', +13010 silly addNameRange '0.1.8', +13010 silly addNameRange '1.0.0', +13010 silly addNameRange '1.0.1', +13010 silly addNameRange '1.1.0', +13010 silly addNameRange '1.1.1', +13010 silly addNameRange '1.1.2', +13010 silly addNameRange '2.0.0' ] ] +13011 silly addNamed source-list-map@0.1.8 +13012 verbose addNamed "0.1.8" is a plain semver version for source-list-map +13013 silly cache afterAdd source-list-map@0.1.8 +13014 verbose afterAdd /home/wso2/.npm/source-list-map/0.1.8/package/package.json not in flight; writing +13015 verbose afterAdd /home/wso2/.npm/source-list-map/0.1.8/package/package.json written +13016 silly fetchNamedPackageData cssesc +13017 silly mapToRegistry name cssesc +13018 silly mapToRegistry using default registry +13019 silly mapToRegistry registry https://registry.npmjs.org/ +13020 silly mapToRegistry uri https://registry.npmjs.org/cssesc +13021 silly fetchNamedPackageData fastparse +13022 silly mapToRegistry name fastparse +13023 silly mapToRegistry using default registry +13024 silly mapToRegistry registry https://registry.npmjs.org/ +13025 silly mapToRegistry uri https://registry.npmjs.org/fastparse +13026 silly fetchNamedPackageData regexpu-core +13027 silly mapToRegistry name regexpu-core +13028 silly mapToRegistry using default registry +13029 silly mapToRegistry registry https://registry.npmjs.org/ +13030 silly mapToRegistry uri https://registry.npmjs.org/regexpu-core +13031 silly resolveWithNewModule regexpu-core@1.0.0 checking installable status +13032 silly cache add args [ 'regexpu-core@^1.0.0', null ] +13033 verbose cache add spec regexpu-core@^1.0.0 +13034 silly cache add parsed spec Result { +13034 silly cache add raw: 'regexpu-core@^1.0.0', +13034 silly cache add scope: null, +13034 silly cache add name: 'regexpu-core', +13034 silly cache add rawSpec: '^1.0.0', +13034 silly cache add spec: '>=1.0.0 <2.0.0', +13034 silly cache add type: 'range' } +13035 silly addNamed regexpu-core@>=1.0.0 <2.0.0 +13036 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for regexpu-core +13037 silly addNameRange { name: 'regexpu-core', range: '>=1.0.0 <2.0.0', hasData: false } +13038 silly mapToRegistry name regexpu-core +13039 silly mapToRegistry using default registry +13040 silly mapToRegistry registry https://registry.npmjs.org/ +13041 silly mapToRegistry uri https://registry.npmjs.org/regexpu-core +13042 verbose addNameRange registry:https://registry.npmjs.org/regexpu-core not in flight; fetching +13043 verbose get https://registry.npmjs.org/regexpu-core not expired, no request +13044 silly addNameRange number 2 { name: 'regexpu-core', range: '>=1.0.0 <2.0.0', hasData: true } +13045 silly addNameRange versions [ 'regexpu-core', +13045 silly addNameRange [ '1.0.0', +13045 silly addNameRange '2.0.0', +13045 silly addNameRange '3.0.1', +13045 silly addNameRange '3.0.2', +13045 silly addNameRange '3.1.0', +13045 silly addNameRange '3.2.0', +13045 silly addNameRange '3.3.0', +13045 silly addNameRange '4.0.0', +13045 silly addNameRange '4.0.1', +13045 silly addNameRange '4.0.2', +13045 silly addNameRange '4.0.3', +13045 silly addNameRange '4.0.4', +13045 silly addNameRange '4.0.5', +13045 silly addNameRange '4.0.6', +13045 silly addNameRange '4.0.7', +13045 silly addNameRange '4.0.8', +13045 silly addNameRange '4.0.9', +13045 silly addNameRange '4.0.10', +13045 silly addNameRange '4.0.11', +13045 silly addNameRange '4.1.0', +13045 silly addNameRange '4.1.1', +13045 silly addNameRange '4.1.2', +13045 silly addNameRange '4.1.3' ] ] +13046 silly addNamed regexpu-core@1.0.0 +13047 verbose addNamed "1.0.0" is a plain semver version for regexpu-core +13048 verbose request uri https://registry.npmjs.org/fastparse +13049 verbose request no auth needed +13050 info attempt registry request try #1 at 3:04:43 PM +13051 verbose etag W/"58717f6d-1fa1" +13052 verbose lastModified Sat, 07 Jan 2017 23:53:17 GMT +13053 http request GET https://registry.npmjs.org/fastparse +13054 verbose request uri https://registry.npmjs.org/cssesc +13055 verbose request no auth needed +13056 info attempt registry request try #1 at 3:04:43 PM +13057 verbose etag W/"57ec38a6-2961" +13058 verbose lastModified Wed, 28 Sep 2016 21:39:50 GMT +13059 http request GET https://registry.npmjs.org/cssesc +13060 silly cache afterAdd regexpu-core@1.0.0 +13061 verbose afterAdd /home/wso2/.npm/regexpu-core/1.0.0/package/package.json not in flight; writing +13062 verbose afterAdd /home/wso2/.npm/regexpu-core/1.0.0/package/package.json written +13063 http 200 https://registry.npmjs.org/cssesc +13064 verbose headers { server: 'nginx/1.10.3', +13064 verbose headers 'content-type': 'application/json', +13064 verbose headers 'last-modified': 'Tue, 26 Sep 2017 07:33:26 GMT', +13064 verbose headers etag: 'W/"59ca02c6-296f"', +13064 verbose headers 'content-encoding': 'gzip', +13064 verbose headers 'cache-control': 'max-age=300', +13064 verbose headers 'content-length': '3429', +13064 verbose headers 'accept-ranges': 'bytes', +13064 verbose headers date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13064 verbose headers via: '1.1 varnish', +13064 verbose headers age: '115', +13064 verbose headers connection: 'keep-alive', +13064 verbose headers 'x-served-by': 'cache-sin18022-SIN', +13064 verbose headers 'x-cache': 'HIT', +13064 verbose headers 'x-cache-hits': '4', +13064 verbose headers 'x-timer': 'S1506936884.152089,VS0,VE0', +13064 verbose headers vary: 'Accept-Encoding, Accept' } +13065 silly get cb [ 200, +13065 silly get { server: 'nginx/1.10.3', +13065 silly get 'content-type': 'application/json', +13065 silly get 'last-modified': 'Tue, 26 Sep 2017 07:33:26 GMT', +13065 silly get etag: 'W/"59ca02c6-296f"', +13065 silly get 'content-encoding': 'gzip', +13065 silly get 'cache-control': 'max-age=300', +13065 silly get 'content-length': '3429', +13065 silly get 'accept-ranges': 'bytes', +13065 silly get date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13065 silly get via: '1.1 varnish', +13065 silly get age: '115', +13065 silly get connection: 'keep-alive', +13065 silly get 'x-served-by': 'cache-sin18022-SIN', +13065 silly get 'x-cache': 'HIT', +13065 silly get 'x-cache-hits': '4', +13065 silly get 'x-timer': 'S1506936884.152089,VS0,VE0', +13065 silly get vary: 'Accept-Encoding, Accept' } ] +13066 verbose get saving cssesc to /home/wso2/.npm/registry.npmjs.org/cssesc/.cache.json +13067 silly resolveWithNewModule cssesc@0.1.0 checking installable status +13068 silly cache add args [ 'cssesc@^0.1.0', null ] +13069 verbose cache add spec cssesc@^0.1.0 +13070 silly cache add parsed spec Result { +13070 silly cache add raw: 'cssesc@^0.1.0', +13070 silly cache add scope: null, +13070 silly cache add name: 'cssesc', +13070 silly cache add rawSpec: '^0.1.0', +13070 silly cache add spec: '>=0.1.0 <0.2.0', +13070 silly cache add type: 'range' } +13071 silly addNamed cssesc@>=0.1.0 <0.2.0 +13072 verbose addNamed ">=0.1.0 <0.2.0" is a valid semver range for cssesc +13073 silly addNameRange { name: 'cssesc', range: '>=0.1.0 <0.2.0', hasData: false } +13074 silly mapToRegistry name cssesc +13075 silly mapToRegistry using default registry +13076 silly mapToRegistry registry https://registry.npmjs.org/ +13077 silly mapToRegistry uri https://registry.npmjs.org/cssesc +13078 verbose addNameRange registry:https://registry.npmjs.org/cssesc not in flight; fetching +13079 verbose get https://registry.npmjs.org/cssesc not expired, no request +13080 silly addNameRange number 2 { name: 'cssesc', range: '>=0.1.0 <0.2.0', hasData: true } +13081 silly addNameRange versions [ 'cssesc', [ '0.1.0', '1.0.0' ] ] +13082 silly addNamed cssesc@0.1.0 +13083 verbose addNamed "0.1.0" is a plain semver version for cssesc +13084 silly cache afterAdd cssesc@0.1.0 +13085 verbose afterAdd /home/wso2/.npm/cssesc/0.1.0/package/package.json not in flight; writing +13086 verbose afterAdd /home/wso2/.npm/cssesc/0.1.0/package/package.json written +13087 http 304 https://registry.npmjs.org/fastparse +13088 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13088 verbose headers via: '1.1 varnish', +13088 verbose headers 'cache-control': 'max-age=300', +13088 verbose headers etag: 'W/"58717f6d-1fa1"', +13088 verbose headers age: '114', +13088 verbose headers connection: 'keep-alive', +13088 verbose headers 'x-served-by': 'cache-sin18033-SIN', +13088 verbose headers 'x-cache': 'HIT', +13088 verbose headers 'x-cache-hits': '6', +13088 verbose headers 'x-timer': 'S1506936884.185689,VS0,VE0', +13088 verbose headers vary: 'Accept-Encoding, Accept' } +13089 silly get cb [ 304, +13089 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13089 silly get via: '1.1 varnish', +13089 silly get 'cache-control': 'max-age=300', +13089 silly get etag: 'W/"58717f6d-1fa1"', +13089 silly get age: '114', +13089 silly get connection: 'keep-alive', +13089 silly get 'x-served-by': 'cache-sin18033-SIN', +13089 silly get 'x-cache': 'HIT', +13089 silly get 'x-cache-hits': '6', +13089 silly get 'x-timer': 'S1506936884.185689,VS0,VE0', +13089 silly get vary: 'Accept-Encoding, Accept' } ] +13090 verbose etag https://registry.npmjs.org/fastparse from cache +13091 verbose get saving fastparse to /home/wso2/.npm/registry.npmjs.org/fastparse/.cache.json +13092 silly resolveWithNewModule fastparse@1.1.1 checking installable status +13093 silly cache add args [ 'fastparse@^1.1.1', null ] +13094 verbose cache add spec fastparse@^1.1.1 +13095 silly cache add parsed spec Result { +13095 silly cache add raw: 'fastparse@^1.1.1', +13095 silly cache add scope: null, +13095 silly cache add name: 'fastparse', +13095 silly cache add rawSpec: '^1.1.1', +13095 silly cache add spec: '>=1.1.1 <2.0.0', +13095 silly cache add type: 'range' } +13096 silly addNamed fastparse@>=1.1.1 <2.0.0 +13097 verbose addNamed ">=1.1.1 <2.0.0" is a valid semver range for fastparse +13098 silly addNameRange { name: 'fastparse', range: '>=1.1.1 <2.0.0', hasData: false } +13099 silly mapToRegistry name fastparse +13100 silly mapToRegistry using default registry +13101 silly mapToRegistry registry https://registry.npmjs.org/ +13102 silly mapToRegistry uri https://registry.npmjs.org/fastparse +13103 verbose addNameRange registry:https://registry.npmjs.org/fastparse not in flight; fetching +13104 verbose get https://registry.npmjs.org/fastparse not expired, no request +13105 silly addNameRange number 2 { name: 'fastparse', range: '>=1.1.1 <2.0.0', hasData: true } +13106 silly addNameRange versions [ 'fastparse', [ '1.0.0', '1.1.0', '1.1.1' ] ] +13107 silly addNamed fastparse@1.1.1 +13108 verbose addNamed "1.1.1" is a plain semver version for fastparse +13109 silly cache afterAdd fastparse@1.1.1 +13110 verbose afterAdd /home/wso2/.npm/fastparse/1.1.1/package/package.json not in flight; writing +13111 verbose afterAdd /home/wso2/.npm/fastparse/1.1.1/package/package.json written +13112 silly fetchNamedPackageData autoprefixer +13113 silly mapToRegistry name autoprefixer +13114 silly mapToRegistry using default registry +13115 silly mapToRegistry registry https://registry.npmjs.org/ +13116 silly mapToRegistry uri https://registry.npmjs.org/autoprefixer +13117 silly resolveWithNewModule autoprefixer@6.7.7 checking installable status +13118 silly cache add args [ 'autoprefixer@^6.3.1', null ] +13119 verbose cache add spec autoprefixer@^6.3.1 +13120 silly fetchNamedPackageData decamelize +13121 silly mapToRegistry name decamelize +13122 silly mapToRegistry using default registry +13123 silly mapToRegistry registry https://registry.npmjs.org/ +13124 silly mapToRegistry uri https://registry.npmjs.org/decamelize +13125 silly fetchNamedPackageData defined +13126 silly mapToRegistry name defined +13127 silly mapToRegistry using default registry +13128 silly mapToRegistry registry https://registry.npmjs.org/ +13129 silly mapToRegistry uri https://registry.npmjs.org/defined +13130 silly fetchNamedPackageData has +13131 silly mapToRegistry name has +13132 silly mapToRegistry using default registry +13133 silly mapToRegistry registry https://registry.npmjs.org/ +13134 silly mapToRegistry uri https://registry.npmjs.org/has +13135 silly fetchNamedPackageData postcss +13136 silly mapToRegistry name postcss +13137 silly mapToRegistry using default registry +13138 silly mapToRegistry registry https://registry.npmjs.org/ +13139 silly mapToRegistry uri https://registry.npmjs.org/postcss +13140 silly resolveWithNewModule postcss@5.2.17 checking installable status +13141 silly cache add args [ 'postcss@^5.0.14', null ] +13142 verbose cache add spec postcss@^5.0.14 +13143 silly fetchNamedPackageData postcss-calc +13144 silly mapToRegistry name postcss-calc +13145 silly mapToRegistry using default registry +13146 silly mapToRegistry registry https://registry.npmjs.org/ +13147 silly mapToRegistry uri https://registry.npmjs.org/postcss-calc +13148 silly fetchNamedPackageData postcss-colormin +13149 silly mapToRegistry name postcss-colormin +13150 silly mapToRegistry using default registry +13151 silly mapToRegistry registry https://registry.npmjs.org/ +13152 silly mapToRegistry uri https://registry.npmjs.org/postcss-colormin +13153 silly fetchNamedPackageData postcss-convert-values +13154 silly mapToRegistry name postcss-convert-values +13155 silly mapToRegistry using default registry +13156 silly mapToRegistry registry https://registry.npmjs.org/ +13157 silly mapToRegistry uri https://registry.npmjs.org/postcss-convert-values +13158 silly fetchNamedPackageData postcss-discard-comments +13159 silly mapToRegistry name postcss-discard-comments +13160 silly mapToRegistry using default registry +13161 silly mapToRegistry registry https://registry.npmjs.org/ +13162 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-comments +13163 silly fetchNamedPackageData postcss-discard-duplicates +13164 silly mapToRegistry name postcss-discard-duplicates +13165 silly mapToRegistry using default registry +13166 silly mapToRegistry registry https://registry.npmjs.org/ +13167 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-duplicates +13168 silly fetchNamedPackageData postcss-discard-empty +13169 silly mapToRegistry name postcss-discard-empty +13170 silly mapToRegistry using default registry +13171 silly mapToRegistry registry https://registry.npmjs.org/ +13172 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-empty +13173 silly fetchNamedPackageData postcss-discard-overridden +13174 silly mapToRegistry name postcss-discard-overridden +13175 silly mapToRegistry using default registry +13176 silly mapToRegistry registry https://registry.npmjs.org/ +13177 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-overridden +13178 silly fetchNamedPackageData postcss-discard-unused +13179 silly mapToRegistry name postcss-discard-unused +13180 silly mapToRegistry using default registry +13181 silly mapToRegistry registry https://registry.npmjs.org/ +13182 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-unused +13183 silly fetchNamedPackageData postcss-filter-plugins +13184 silly mapToRegistry name postcss-filter-plugins +13185 silly mapToRegistry using default registry +13186 silly mapToRegistry registry https://registry.npmjs.org/ +13187 silly mapToRegistry uri https://registry.npmjs.org/postcss-filter-plugins +13188 silly fetchNamedPackageData postcss-merge-idents +13189 silly mapToRegistry name postcss-merge-idents +13190 silly mapToRegistry using default registry +13191 silly mapToRegistry registry https://registry.npmjs.org/ +13192 silly mapToRegistry uri https://registry.npmjs.org/postcss-merge-idents +13193 silly fetchNamedPackageData postcss-merge-longhand +13194 silly mapToRegistry name postcss-merge-longhand +13195 silly mapToRegistry using default registry +13196 silly mapToRegistry registry https://registry.npmjs.org/ +13197 silly mapToRegistry uri https://registry.npmjs.org/postcss-merge-longhand +13198 silly fetchNamedPackageData postcss-merge-rules +13199 silly mapToRegistry name postcss-merge-rules +13200 silly mapToRegistry using default registry +13201 silly mapToRegistry registry https://registry.npmjs.org/ +13202 silly mapToRegistry uri https://registry.npmjs.org/postcss-merge-rules +13203 silly fetchNamedPackageData postcss-minify-font-values +13204 silly mapToRegistry name postcss-minify-font-values +13205 silly mapToRegistry using default registry +13206 silly mapToRegistry registry https://registry.npmjs.org/ +13207 silly mapToRegistry uri https://registry.npmjs.org/postcss-minify-font-values +13208 silly fetchNamedPackageData postcss-minify-gradients +13209 silly mapToRegistry name postcss-minify-gradients +13210 silly mapToRegistry using default registry +13211 silly mapToRegistry registry https://registry.npmjs.org/ +13212 silly mapToRegistry uri https://registry.npmjs.org/postcss-minify-gradients +13213 silly fetchNamedPackageData postcss-minify-params +13214 silly mapToRegistry name postcss-minify-params +13215 silly mapToRegistry using default registry +13216 silly mapToRegistry registry https://registry.npmjs.org/ +13217 silly mapToRegistry uri https://registry.npmjs.org/postcss-minify-params +13218 silly fetchNamedPackageData postcss-minify-selectors +13219 silly mapToRegistry name postcss-minify-selectors +13220 silly mapToRegistry using default registry +13221 silly mapToRegistry registry https://registry.npmjs.org/ +13222 silly mapToRegistry uri https://registry.npmjs.org/postcss-minify-selectors +13223 silly fetchNamedPackageData postcss-normalize-charset +13224 silly mapToRegistry name postcss-normalize-charset +13225 silly mapToRegistry using default registry +13226 silly mapToRegistry registry https://registry.npmjs.org/ +13227 silly mapToRegistry uri https://registry.npmjs.org/postcss-normalize-charset +13228 silly fetchNamedPackageData postcss-normalize-url +13229 silly mapToRegistry name postcss-normalize-url +13230 silly mapToRegistry using default registry +13231 silly mapToRegistry registry https://registry.npmjs.org/ +13232 silly mapToRegistry uri https://registry.npmjs.org/postcss-normalize-url +13233 silly fetchNamedPackageData postcss-ordered-values +13234 silly mapToRegistry name postcss-ordered-values +13235 silly mapToRegistry using default registry +13236 silly mapToRegistry registry https://registry.npmjs.org/ +13237 silly mapToRegistry uri https://registry.npmjs.org/postcss-ordered-values +13238 silly fetchNamedPackageData postcss-reduce-idents +13239 silly mapToRegistry name postcss-reduce-idents +13240 silly mapToRegistry using default registry +13241 silly mapToRegistry registry https://registry.npmjs.org/ +13242 silly mapToRegistry uri https://registry.npmjs.org/postcss-reduce-idents +13243 silly fetchNamedPackageData postcss-reduce-initial +13244 silly mapToRegistry name postcss-reduce-initial +13245 silly mapToRegistry using default registry +13246 silly mapToRegistry registry https://registry.npmjs.org/ +13247 silly mapToRegistry uri https://registry.npmjs.org/postcss-reduce-initial +13248 silly fetchNamedPackageData postcss-reduce-transforms +13249 silly mapToRegistry name postcss-reduce-transforms +13250 silly mapToRegistry using default registry +13251 silly mapToRegistry registry https://registry.npmjs.org/ +13252 silly mapToRegistry uri https://registry.npmjs.org/postcss-reduce-transforms +13253 silly fetchNamedPackageData postcss-svgo +13254 silly mapToRegistry name postcss-svgo +13255 silly mapToRegistry using default registry +13256 silly mapToRegistry registry https://registry.npmjs.org/ +13257 silly mapToRegistry uri https://registry.npmjs.org/postcss-svgo +13258 silly fetchNamedPackageData postcss-unique-selectors +13259 silly mapToRegistry name postcss-unique-selectors +13260 silly mapToRegistry using default registry +13261 silly mapToRegistry registry https://registry.npmjs.org/ +13262 silly mapToRegistry uri https://registry.npmjs.org/postcss-unique-selectors +13263 silly fetchNamedPackageData postcss-zindex +13264 silly mapToRegistry name postcss-zindex +13265 silly mapToRegistry using default registry +13266 silly mapToRegistry registry https://registry.npmjs.org/ +13267 silly mapToRegistry uri https://registry.npmjs.org/postcss-zindex +13268 silly cache add parsed spec Result { +13268 silly cache add raw: 'autoprefixer@^6.3.1', +13268 silly cache add scope: null, +13268 silly cache add name: 'autoprefixer', +13268 silly cache add rawSpec: '^6.3.1', +13268 silly cache add spec: '>=6.3.1 <7.0.0', +13268 silly cache add type: 'range' } +13269 silly addNamed autoprefixer@>=6.3.1 <7.0.0 +13270 verbose addNamed ">=6.3.1 <7.0.0" is a valid semver range for autoprefixer +13271 silly addNameRange { name: 'autoprefixer', range: '>=6.3.1 <7.0.0', hasData: false } +13272 silly mapToRegistry name autoprefixer +13273 silly mapToRegistry using default registry +13274 silly mapToRegistry registry https://registry.npmjs.org/ +13275 silly mapToRegistry uri https://registry.npmjs.org/autoprefixer +13276 verbose addNameRange registry:https://registry.npmjs.org/autoprefixer not in flight; fetching +13277 silly cache add parsed spec Result { +13277 silly cache add raw: 'postcss@^5.0.14', +13277 silly cache add scope: null, +13277 silly cache add name: 'postcss', +13277 silly cache add rawSpec: '^5.0.14', +13277 silly cache add spec: '>=5.0.14 <6.0.0', +13277 silly cache add type: 'range' } +13278 silly addNamed postcss@>=5.0.14 <6.0.0 +13279 verbose addNamed ">=5.0.14 <6.0.0" is a valid semver range for postcss +13280 silly addNameRange { name: 'postcss', range: '>=5.0.14 <6.0.0', hasData: false } +13281 silly mapToRegistry name postcss +13282 silly mapToRegistry using default registry +13283 silly mapToRegistry registry https://registry.npmjs.org/ +13284 silly mapToRegistry uri https://registry.npmjs.org/postcss +13285 verbose addNameRange registry:https://registry.npmjs.org/postcss not in flight; fetching +13286 verbose request uri https://registry.npmjs.org/has +13287 verbose request no auth needed +13288 info attempt registry request try #1 at 3:04:44 PM +13289 verbose etag W/"59429c25-1073" +13290 verbose lastModified Thu, 15 Jun 2017 14:39:33 GMT +13291 http request GET https://registry.npmjs.org/has +13292 verbose request uri https://registry.npmjs.org/defined +13293 verbose request no auth needed +13294 info attempt registry request try #1 at 3:04:44 PM +13295 verbose etag W/"5945fdea-102c" +13296 verbose lastModified Sun, 18 Jun 2017 04:13:30 GMT +13297 http request GET https://registry.npmjs.org/defined +13298 verbose request uri https://registry.npmjs.org/postcss-calc +13299 verbose request no auth needed +13300 info attempt registry request try #1 at 3:04:44 PM +13301 verbose etag W/"595bb0ba-5e22" +13302 verbose lastModified Tue, 04 Jul 2017 15:14:02 GMT +13303 http request GET https://registry.npmjs.org/postcss-calc +13304 verbose request uri https://registry.npmjs.org/postcss-colormin +13305 verbose request no auth needed +13306 info attempt registry request try #1 at 3:04:44 PM +13307 verbose etag W/"5987a5fb-96c7" +13308 verbose lastModified Sun, 06 Aug 2017 23:27:55 GMT +13309 http request GET https://registry.npmjs.org/postcss-colormin +13310 verbose request uri https://registry.npmjs.org/postcss-convert-values +13311 verbose request no auth needed +13312 info attempt registry request try #1 at 3:04:44 PM +13313 verbose etag W/"5987a62f-ce3f" +13314 verbose lastModified Sun, 06 Aug 2017 23:28:47 GMT +13315 http request GET https://registry.npmjs.org/postcss-convert-values +13316 verbose request uri https://registry.npmjs.org/postcss-discard-comments +13317 verbose request no auth needed +13318 info attempt registry request try #1 at 3:04:44 PM +13319 verbose etag W/"5987a69f-6523" +13320 verbose lastModified Sun, 06 Aug 2017 23:30:39 GMT +13321 http request GET https://registry.npmjs.org/postcss-discard-comments +13322 verbose request uri https://registry.npmjs.org/postcss-discard-duplicates +13323 verbose request no auth needed +13324 info attempt registry request try #1 at 3:04:44 PM +13325 verbose etag W/"5987a6c8-6550" +13326 verbose lastModified Sun, 06 Aug 2017 23:31:20 GMT +13327 http request GET https://registry.npmjs.org/postcss-discard-duplicates +13328 verbose request uri https://registry.npmjs.org/postcss-discard-empty +13329 verbose request no auth needed +13330 info attempt registry request try #1 at 3:04:44 PM +13331 verbose etag W/"5987a6f3-3aef" +13332 verbose lastModified Sun, 06 Aug 2017 23:32:03 GMT +13333 http request GET https://registry.npmjs.org/postcss-discard-empty +13334 verbose request uri https://registry.npmjs.org/decamelize +13335 verbose request no auth needed +13336 info attempt registry request try #1 at 3:04:44 PM +13337 verbose etag W/"595b9d0f-202f" +13338 verbose lastModified Tue, 04 Jul 2017 13:50:07 GMT +13339 http request GET https://registry.npmjs.org/decamelize +13340 verbose request uri https://registry.npmjs.org/postcss-discard-overridden +13341 verbose request no auth needed +13342 info attempt registry request try #1 at 3:04:44 PM +13343 verbose etag W/"5987a71d-2676" +13344 verbose lastModified Sun, 06 Aug 2017 23:32:45 GMT +13345 http request GET https://registry.npmjs.org/postcss-discard-overridden +13346 verbose request uri https://registry.npmjs.org/postcss-merge-idents +13347 verbose request no auth needed +13348 info attempt registry request try #1 at 3:04:44 PM +13349 verbose etag W/"5987a7eb-57a0" +13350 verbose lastModified Sun, 06 Aug 2017 23:36:11 GMT +13351 http request GET https://registry.npmjs.org/postcss-merge-idents +13352 verbose request uri https://registry.npmjs.org/postcss-filter-plugins +13353 verbose request no auth needed +13354 info attempt registry request try #1 at 3:04:44 PM +13355 verbose etag W/"57f28739-33e5" +13356 verbose lastModified Mon, 03 Oct 2016 16:28:41 GMT +13357 http request GET https://registry.npmjs.org/postcss-filter-plugins +13358 verbose request uri https://registry.npmjs.org/postcss-discard-unused +13359 verbose request no auth needed +13360 info attempt registry request try #1 at 3:04:44 PM +13361 verbose etag W/"5987a7c7-584c" +13362 verbose lastModified Sun, 06 Aug 2017 23:35:35 GMT +13363 http request GET https://registry.npmjs.org/postcss-discard-unused +13364 verbose request uri https://registry.npmjs.org/postcss-merge-longhand +13365 verbose request no auth needed +13366 info attempt registry request try #1 at 3:04:44 PM +13367 verbose etag W/"5987a80f-3c64" +13368 verbose lastModified Sun, 06 Aug 2017 23:36:47 GMT +13369 http request GET https://registry.npmjs.org/postcss-merge-longhand +13370 verbose request uri https://registry.npmjs.org/postcss-minify-font-values +13371 verbose request no auth needed +13372 info attempt registry request try #1 at 3:04:44 PM +13373 verbose etag W/"5987a862-387f" +13374 verbose lastModified Sun, 06 Aug 2017 23:38:10 GMT +13375 http request GET https://registry.npmjs.org/postcss-minify-font-values +13376 verbose request uri https://registry.npmjs.org/postcss-merge-rules +13377 verbose request no auth needed +13378 info attempt registry request try #1 at 3:04:44 PM +13379 verbose etag W/"5987a83a-c249" +13380 verbose lastModified Sun, 06 Aug 2017 23:37:30 GMT +13381 http request GET https://registry.npmjs.org/postcss-merge-rules +13382 verbose request uri https://registry.npmjs.org/postcss-minify-gradients +13383 verbose request no auth needed +13384 info attempt registry request try #1 at 3:04:44 PM +13385 verbose etag W/"5987a897-3bf2" +13386 verbose lastModified Sun, 06 Aug 2017 23:39:03 GMT +13387 http request GET https://registry.npmjs.org/postcss-minify-gradients +13388 verbose request uri https://registry.npmjs.org/postcss-minify-params +13389 verbose request no auth needed +13390 info attempt registry request try #1 at 3:04:44 PM +13391 verbose etag W/"5987a8b6-56ed" +13392 verbose lastModified Sun, 06 Aug 2017 23:39:34 GMT +13393 http request GET https://registry.npmjs.org/postcss-minify-params +13394 verbose request uri https://registry.npmjs.org/postcss-normalize-charset +13395 verbose request no auth needed +13396 info attempt registry request try #1 at 3:04:44 PM +13397 verbose etag W/"5987a8fe-20e5" +13398 verbose lastModified Sun, 06 Aug 2017 23:40:46 GMT +13399 http request GET https://registry.npmjs.org/postcss-normalize-charset +13400 verbose request uri https://registry.npmjs.org/postcss-minify-selectors +13401 verbose request no auth needed +13402 info attempt registry request try #1 at 3:04:44 PM +13403 verbose etag W/"5987a8d4-b15d" +13404 verbose lastModified Sun, 06 Aug 2017 23:40:04 GMT +13405 http request GET https://registry.npmjs.org/postcss-minify-selectors +13406 verbose request uri https://registry.npmjs.org/postcss-ordered-values +13407 verbose request no auth needed +13408 info attempt registry request try #1 at 3:04:44 PM +13409 verbose etag W/"5987aa08-6770" +13410 verbose lastModified Sun, 06 Aug 2017 23:45:12 GMT +13411 http request GET https://registry.npmjs.org/postcss-ordered-values +13412 verbose request uri https://registry.npmjs.org/postcss-normalize-url +13413 verbose request no auth needed +13414 info attempt registry request try #1 at 3:04:44 PM +13415 verbose etag W/"5987a9cd-9db2" +13416 verbose lastModified Sun, 06 Aug 2017 23:44:13 GMT +13417 http request GET https://registry.npmjs.org/postcss-normalize-url +13418 verbose request uri https://registry.npmjs.org/postcss-reduce-idents +13419 verbose request no auth needed +13420 info attempt registry request try #1 at 3:04:44 PM +13421 verbose etag W/"5987aa29-605c" +13422 verbose lastModified Sun, 06 Aug 2017 23:45:45 GMT +13423 http request GET https://registry.npmjs.org/postcss-reduce-idents +13424 verbose request uri https://registry.npmjs.org/postcss-reduce-initial +13425 verbose request no auth needed +13426 info attempt registry request try #1 at 3:04:44 PM +13427 verbose etag W/"5987aa47-2684" +13428 verbose lastModified Sun, 06 Aug 2017 23:46:15 GMT +13429 http request GET https://registry.npmjs.org/postcss-reduce-initial +13430 verbose request uri https://registry.npmjs.org/postcss-unique-selectors +13431 verbose request no auth needed +13432 info attempt registry request try #1 at 3:04:44 PM +13433 verbose etag W/"5987aaa3-2da4" +13434 verbose lastModified Sun, 06 Aug 2017 23:47:47 GMT +13435 http request GET https://registry.npmjs.org/postcss-unique-selectors +13436 verbose request uri https://registry.npmjs.org/postcss-reduce-transforms +13437 verbose request no auth needed +13438 info attempt registry request try #1 at 3:04:44 PM +13439 verbose etag W/"5987aa64-2f57" +13440 verbose lastModified Sun, 06 Aug 2017 23:46:44 GMT +13441 http request GET https://registry.npmjs.org/postcss-reduce-transforms +13442 verbose get https://registry.npmjs.org/postcss not expired, no request +13443 silly addNameRange number 2 { name: 'postcss', range: '>=5.0.14 <6.0.0', hasData: true } +13444 silly addNameRange versions [ 'postcss', +13444 silly addNameRange [ '0.1.0', +13444 silly addNameRange '0.2.0', +13444 silly addNameRange '0.3.0', +13444 silly addNameRange '0.3.1', +13444 silly addNameRange '0.3.2', +13444 silly addNameRange '0.3.3', +13444 silly addNameRange '0.3.4', +13444 silly addNameRange '0.3.5', +13444 silly addNameRange '1.0.0', +13444 silly addNameRange '2.0.0', +13444 silly addNameRange '2.1.0', +13444 silly addNameRange '2.1.1', +13444 silly addNameRange '2.1.2', +13444 silly addNameRange '2.2.0', +13444 silly addNameRange '2.2.1', +13444 silly addNameRange '2.2.2', +13444 silly addNameRange '2.2.3', +13444 silly addNameRange '2.2.4', +13444 silly addNameRange '2.2.5', +13444 silly addNameRange '2.2.6', +13444 silly addNameRange '3.0.0', +13444 silly addNameRange '3.0.1', +13444 silly addNameRange '3.0.2', +13444 silly addNameRange '3.0.3', +13444 silly addNameRange '3.0.4', +13444 silly addNameRange '3.0.5', +13444 silly addNameRange '3.0.6', +13444 silly addNameRange '3.0.7', +13444 silly addNameRange '4.0.0', +13444 silly addNameRange '4.0.1', +13444 silly addNameRange '4.0.2', +13444 silly addNameRange '4.0.3', +13444 silly addNameRange '4.0.4', +13444 silly addNameRange '4.0.5', +13444 silly addNameRange '4.0.6', +13444 silly addNameRange '4.1.0', +13444 silly addNameRange '4.1.1', +13444 silly addNameRange '4.1.2', +13444 silly addNameRange '4.1.3', +13444 silly addNameRange '4.1.4', +13444 silly addNameRange '4.1.5', +13444 silly addNameRange '4.1.6', +13444 silly addNameRange '4.1.7', +13444 silly addNameRange '4.1.8', +13444 silly addNameRange '4.1.9', +13444 silly addNameRange '4.1.10', +13444 silly addNameRange '4.1.11', +13444 silly addNameRange '4.1.12', +13444 silly addNameRange '4.1.13', +13444 silly addNameRange '4.1.14', +13444 silly addNameRange '4.1.15', +13444 silly addNameRange '4.1.16', +13444 silly addNameRange '5.0.0', +13444 silly addNameRange '5.0.1', +13444 silly addNameRange '5.0.2', +13444 silly addNameRange '5.0.3', +13444 silly addNameRange '5.0.4', +13444 silly addNameRange '5.0.5', +13444 silly addNameRange '5.0.6', +13444 silly addNameRange '5.0.7', +13444 silly addNameRange '5.0.8', +13444 silly addNameRange '5.0.9', +13444 silly addNameRange '5.0.10', +13444 silly addNameRange '5.0.11', +13444 silly addNameRange '5.0.12', +13444 silly addNameRange '5.0.13', +13444 silly addNameRange '5.0.14', +13444 silly addNameRange '5.0.15', +13444 silly addNameRange '5.0.16', +13444 silly addNameRange '5.0.17', +13444 silly addNameRange '5.0.18', +13444 silly addNameRange '5.0.19', +13444 silly addNameRange '5.0.20', +13444 silly addNameRange '5.0.21', +13444 silly addNameRange '5.1.0', +13444 silly addNameRange '5.1.1', +13444 silly addNameRange '5.1.2', +13444 silly addNameRange '5.2.0', +13444 silly addNameRange '5.2.1', +13444 silly addNameRange '5.2.2', +13444 silly addNameRange '5.2.3', +13444 silly addNameRange '5.2.4', +13444 silly addNameRange '5.2.5', +13444 silly addNameRange '5.2.6', +13444 silly addNameRange '5.2.7', +13444 silly addNameRange '5.2.8', +13444 silly addNameRange '5.2.9', +13444 silly addNameRange '5.2.10', +13444 silly addNameRange '5.2.11', +13444 silly addNameRange '5.2.12', +13444 silly addNameRange '5.2.13', +13444 silly addNameRange '5.2.14', +13444 silly addNameRange '5.2.15', +13444 silly addNameRange '5.2.16', +13444 silly addNameRange '5.2.17', +13444 silly addNameRange '6.0.0', +13444 silly addNameRange '6.0.1', +13444 silly addNameRange '6.0.2', +13444 silly addNameRange '6.0.3', +13444 silly addNameRange '6.0.4', +13444 silly addNameRange '6.0.5', +13444 silly addNameRange '6.0.6', +13444 silly addNameRange '6.0.7', +13444 silly addNameRange '6.0.8', +13444 silly addNameRange '6.0.9', +13444 silly addNameRange '6.0.10', +13444 silly addNameRange '6.0.11', +13444 silly addNameRange '6.0.12' ] ] +13445 silly addNamed postcss@5.2.17 +13446 verbose addNamed "5.2.17" is a plain semver version for postcss +13447 verbose request uri https://registry.npmjs.org/autoprefixer +13448 verbose request no auth needed +13449 info attempt registry request try #1 at 3:04:44 PM +13450 verbose etag W/"59d10921-4ecfa" +13451 verbose lastModified Sun, 01 Oct 2017 15:26:25 GMT +13452 http request GET https://registry.npmjs.org/autoprefixer +13453 verbose request uri https://registry.npmjs.org/postcss-zindex +13454 verbose request no auth needed +13455 info attempt registry request try #1 at 3:04:44 PM +13456 verbose etag W/"5987aac8-5279" +13457 verbose lastModified Sun, 06 Aug 2017 23:48:24 GMT +13458 http request GET https://registry.npmjs.org/postcss-zindex +13459 verbose request uri https://registry.npmjs.org/postcss-svgo +13460 verbose request no auth needed +13461 info attempt registry request try #1 at 3:04:44 PM +13462 verbose etag W/"5987aa83-7fbd" +13463 verbose lastModified Sun, 06 Aug 2017 23:47:15 GMT +13464 http request GET https://registry.npmjs.org/postcss-svgo +13465 http 304 https://registry.npmjs.org/defined +13466 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13466 verbose headers via: '1.1 varnish', +13466 verbose headers 'cache-control': 'max-age=300', +13466 verbose headers etag: 'W/"5945fdea-102c"', +13466 verbose headers age: '71', +13466 verbose headers connection: 'keep-alive', +13466 verbose headers 'x-served-by': 'cache-sin18023-SIN', +13466 verbose headers 'x-cache': 'HIT', +13466 verbose headers 'x-cache-hits': '2', +13466 verbose headers 'x-timer': 'S1506936885.575639,VS0,VE0', +13466 verbose headers vary: 'Accept-Encoding, Accept' } +13467 silly get cb [ 304, +13467 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13467 silly get via: '1.1 varnish', +13467 silly get 'cache-control': 'max-age=300', +13467 silly get etag: 'W/"5945fdea-102c"', +13467 silly get age: '71', +13467 silly get connection: 'keep-alive', +13467 silly get 'x-served-by': 'cache-sin18023-SIN', +13467 silly get 'x-cache': 'HIT', +13467 silly get 'x-cache-hits': '2', +13467 silly get 'x-timer': 'S1506936885.575639,VS0,VE0', +13467 silly get vary: 'Accept-Encoding, Accept' } ] +13468 verbose etag https://registry.npmjs.org/defined from cache +13469 verbose get saving defined to /home/wso2/.npm/registry.npmjs.org/defined/.cache.json +13470 http 304 https://registry.npmjs.org/postcss-convert-values +13471 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13471 verbose headers via: '1.1 varnish', +13471 verbose headers 'cache-control': 'max-age=300', +13471 verbose headers etag: 'W/"5987a62f-ce3f"', +13471 verbose headers age: '70', +13471 verbose headers connection: 'keep-alive', +13471 verbose headers 'x-served-by': 'cache-sin18021-SIN', +13471 verbose headers 'x-cache': 'HIT', +13471 verbose headers 'x-cache-hits': '2', +13471 verbose headers 'x-timer': 'S1506936885.612231,VS0,VE0', +13471 verbose headers vary: 'Accept-Encoding, Accept' } +13472 silly get cb [ 304, +13472 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13472 silly get via: '1.1 varnish', +13472 silly get 'cache-control': 'max-age=300', +13472 silly get etag: 'W/"5987a62f-ce3f"', +13472 silly get age: '70', +13472 silly get connection: 'keep-alive', +13472 silly get 'x-served-by': 'cache-sin18021-SIN', +13472 silly get 'x-cache': 'HIT', +13472 silly get 'x-cache-hits': '2', +13472 silly get 'x-timer': 'S1506936885.612231,VS0,VE0', +13472 silly get vary: 'Accept-Encoding, Accept' } ] +13473 verbose etag https://registry.npmjs.org/postcss-convert-values from cache +13474 verbose get saving postcss-convert-values to /home/wso2/.npm/registry.npmjs.org/postcss-convert-values/.cache.json +13475 http 304 https://registry.npmjs.org/postcss-colormin +13476 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13476 verbose headers via: '1.1 varnish', +13476 verbose headers 'cache-control': 'max-age=300', +13476 verbose headers etag: 'W/"5987a5fb-96c7"', +13476 verbose headers age: '114', +13476 verbose headers connection: 'keep-alive', +13476 verbose headers 'x-served-by': 'cache-sin18033-SIN', +13476 verbose headers 'x-cache': 'HIT', +13476 verbose headers 'x-cache-hits': '3', +13476 verbose headers 'x-timer': 'S1506936885.613893,VS0,VE0', +13476 verbose headers vary: 'Accept-Encoding, Accept' } +13477 silly get cb [ 304, +13477 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13477 silly get via: '1.1 varnish', +13477 silly get 'cache-control': 'max-age=300', +13477 silly get etag: 'W/"5987a5fb-96c7"', +13477 silly get age: '114', +13477 silly get connection: 'keep-alive', +13477 silly get 'x-served-by': 'cache-sin18033-SIN', +13477 silly get 'x-cache': 'HIT', +13477 silly get 'x-cache-hits': '3', +13477 silly get 'x-timer': 'S1506936885.613893,VS0,VE0', +13477 silly get vary: 'Accept-Encoding, Accept' } ] +13478 verbose etag https://registry.npmjs.org/postcss-colormin from cache +13479 verbose get saving postcss-colormin to /home/wso2/.npm/registry.npmjs.org/postcss-colormin/.cache.json +13480 http 304 https://registry.npmjs.org/postcss-discard-empty +13481 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13481 verbose headers via: '1.1 varnish', +13481 verbose headers 'cache-control': 'max-age=300', +13481 verbose headers etag: 'W/"5987a6f3-3aef"', +13481 verbose headers age: '149', +13481 verbose headers connection: 'keep-alive', +13481 verbose headers 'x-served-by': 'cache-sin18033-SIN', +13481 verbose headers 'x-cache': 'HIT', +13481 verbose headers 'x-cache-hits': '2', +13481 verbose headers 'x-timer': 'S1506936885.647055,VS0,VE0', +13481 verbose headers vary: 'Accept-Encoding, Accept' } +13482 silly get cb [ 304, +13482 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13482 silly get via: '1.1 varnish', +13482 silly get 'cache-control': 'max-age=300', +13482 silly get etag: 'W/"5987a6f3-3aef"', +13482 silly get age: '149', +13482 silly get connection: 'keep-alive', +13482 silly get 'x-served-by': 'cache-sin18033-SIN', +13482 silly get 'x-cache': 'HIT', +13482 silly get 'x-cache-hits': '2', +13482 silly get 'x-timer': 'S1506936885.647055,VS0,VE0', +13482 silly get vary: 'Accept-Encoding, Accept' } ] +13483 verbose etag https://registry.npmjs.org/postcss-discard-empty from cache +13484 verbose get saving postcss-discard-empty to /home/wso2/.npm/registry.npmjs.org/postcss-discard-empty/.cache.json +13485 http 304 https://registry.npmjs.org/postcss-discard-comments +13486 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13486 verbose headers via: '1.1 varnish', +13486 verbose headers 'cache-control': 'max-age=300', +13486 verbose headers etag: 'W/"5987a69f-6523"', +13486 verbose headers age: '115', +13486 verbose headers connection: 'keep-alive', +13486 verbose headers 'x-served-by': 'cache-sin18028-SIN', +13486 verbose headers 'x-cache': 'HIT', +13486 verbose headers 'x-cache-hits': '1', +13486 verbose headers 'x-timer': 'S1506936885.641456,VS0,VE1', +13486 verbose headers vary: 'Accept-Encoding, Accept' } +13487 silly get cb [ 304, +13487 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13487 silly get via: '1.1 varnish', +13487 silly get 'cache-control': 'max-age=300', +13487 silly get etag: 'W/"5987a69f-6523"', +13487 silly get age: '115', +13487 silly get connection: 'keep-alive', +13487 silly get 'x-served-by': 'cache-sin18028-SIN', +13487 silly get 'x-cache': 'HIT', +13487 silly get 'x-cache-hits': '1', +13487 silly get 'x-timer': 'S1506936885.641456,VS0,VE1', +13487 silly get vary: 'Accept-Encoding, Accept' } ] +13488 verbose etag https://registry.npmjs.org/postcss-discard-comments from cache +13489 verbose get saving postcss-discard-comments to /home/wso2/.npm/registry.npmjs.org/postcss-discard-comments/.cache.json +13490 http 304 https://registry.npmjs.org/decamelize +13491 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13491 verbose headers via: '1.1 varnish', +13491 verbose headers 'cache-control': 'max-age=300', +13491 verbose headers etag: 'W/"595b9d0f-202f"', +13491 verbose headers age: '228', +13491 verbose headers connection: 'keep-alive', +13491 verbose headers 'x-served-by': 'cache-sin18025-SIN', +13491 verbose headers 'x-cache': 'HIT', +13491 verbose headers 'x-cache-hits': '7', +13491 verbose headers 'x-timer': 'S1506936885.666216,VS0,VE0', +13491 verbose headers vary: 'Accept-Encoding, Accept' } +13492 silly get cb [ 304, +13492 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13492 silly get via: '1.1 varnish', +13492 silly get 'cache-control': 'max-age=300', +13492 silly get etag: 'W/"595b9d0f-202f"', +13492 silly get age: '228', +13492 silly get connection: 'keep-alive', +13492 silly get 'x-served-by': 'cache-sin18025-SIN', +13492 silly get 'x-cache': 'HIT', +13492 silly get 'x-cache-hits': '7', +13492 silly get 'x-timer': 'S1506936885.666216,VS0,VE0', +13492 silly get vary: 'Accept-Encoding, Accept' } ] +13493 verbose etag https://registry.npmjs.org/decamelize from cache +13494 verbose get saving decamelize to /home/wso2/.npm/registry.npmjs.org/decamelize/.cache.json +13495 http 304 https://registry.npmjs.org/postcss-discard-overridden +13496 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13496 verbose headers via: '1.1 varnish', +13496 verbose headers 'cache-control': 'max-age=300', +13496 verbose headers etag: 'W/"5987a71d-2676"', +13496 verbose headers age: '115', +13496 verbose headers connection: 'keep-alive', +13496 verbose headers 'x-served-by': 'cache-sin18024-SIN', +13496 verbose headers 'x-cache': 'HIT', +13496 verbose headers 'x-cache-hits': '3', +13496 verbose headers 'x-timer': 'S1506936885.669188,VS0,VE0', +13496 verbose headers vary: 'Accept-Encoding, Accept' } +13497 silly get cb [ 304, +13497 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13497 silly get via: '1.1 varnish', +13497 silly get 'cache-control': 'max-age=300', +13497 silly get etag: 'W/"5987a71d-2676"', +13497 silly get age: '115', +13497 silly get connection: 'keep-alive', +13497 silly get 'x-served-by': 'cache-sin18024-SIN', +13497 silly get 'x-cache': 'HIT', +13497 silly get 'x-cache-hits': '3', +13497 silly get 'x-timer': 'S1506936885.669188,VS0,VE0', +13497 silly get vary: 'Accept-Encoding, Accept' } ] +13498 verbose etag https://registry.npmjs.org/postcss-discard-overridden from cache +13499 verbose get saving postcss-discard-overridden to /home/wso2/.npm/registry.npmjs.org/postcss-discard-overridden/.cache.json +13500 http 304 https://registry.npmjs.org/postcss-filter-plugins +13501 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13501 verbose headers via: '1.1 varnish', +13501 verbose headers 'cache-control': 'max-age=300', +13501 verbose headers etag: 'W/"57f28739-33e5"', +13501 verbose headers age: '115', +13501 verbose headers connection: 'keep-alive', +13501 verbose headers 'x-served-by': 'cache-sin18027-SIN', +13501 verbose headers 'x-cache': 'HIT', +13501 verbose headers 'x-cache-hits': '3', +13501 verbose headers 'x-timer': 'S1506936885.673200,VS0,VE0', +13501 verbose headers vary: 'Accept-Encoding, Accept' } +13502 silly get cb [ 304, +13502 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13502 silly get via: '1.1 varnish', +13502 silly get 'cache-control': 'max-age=300', +13502 silly get etag: 'W/"57f28739-33e5"', +13502 silly get age: '115', +13502 silly get connection: 'keep-alive', +13502 silly get 'x-served-by': 'cache-sin18027-SIN', +13502 silly get 'x-cache': 'HIT', +13502 silly get 'x-cache-hits': '3', +13502 silly get 'x-timer': 'S1506936885.673200,VS0,VE0', +13502 silly get vary: 'Accept-Encoding, Accept' } ] +13503 verbose etag https://registry.npmjs.org/postcss-filter-plugins from cache +13504 verbose get saving postcss-filter-plugins to /home/wso2/.npm/registry.npmjs.org/postcss-filter-plugins/.cache.json +13505 http 304 https://registry.npmjs.org/postcss-merge-idents +13506 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13506 verbose headers via: '1.1 varnish', +13506 verbose headers 'cache-control': 'max-age=300', +13506 verbose headers etag: 'W/"5987a7eb-57a0"', +13506 verbose headers age: '149', +13506 verbose headers connection: 'keep-alive', +13506 verbose headers 'x-served-by': 'cache-sin18025-SIN', +13506 verbose headers 'x-cache': 'HIT', +13506 verbose headers 'x-cache-hits': '1', +13506 verbose headers 'x-timer': 'S1506936885.706796,VS0,VE0', +13506 verbose headers vary: 'Accept-Encoding, Accept' } +13507 silly get cb [ 304, +13507 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13507 silly get via: '1.1 varnish', +13507 silly get 'cache-control': 'max-age=300', +13507 silly get etag: 'W/"5987a7eb-57a0"', +13507 silly get age: '149', +13507 silly get connection: 'keep-alive', +13507 silly get 'x-served-by': 'cache-sin18025-SIN', +13507 silly get 'x-cache': 'HIT', +13507 silly get 'x-cache-hits': '1', +13507 silly get 'x-timer': 'S1506936885.706796,VS0,VE0', +13507 silly get vary: 'Accept-Encoding, Accept' } ] +13508 verbose etag https://registry.npmjs.org/postcss-merge-idents from cache +13509 verbose get saving postcss-merge-idents to /home/wso2/.npm/registry.npmjs.org/postcss-merge-idents/.cache.json +13510 http 304 https://registry.npmjs.org/postcss-merge-rules +13511 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13511 verbose headers via: '1.1 varnish', +13511 verbose headers 'cache-control': 'max-age=300', +13511 verbose headers etag: 'W/"5987a83a-c249"', +13511 verbose headers age: '115', +13511 verbose headers connection: 'keep-alive', +13511 verbose headers 'x-served-by': 'cache-sin18029-SIN', +13511 verbose headers 'x-cache': 'HIT', +13511 verbose headers 'x-cache-hits': '484', +13511 verbose headers 'x-timer': 'S1506936885.716722,VS0,VE0', +13511 verbose headers vary: 'Accept-Encoding, Accept' } +13512 silly get cb [ 304, +13512 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13512 silly get via: '1.1 varnish', +13512 silly get 'cache-control': 'max-age=300', +13512 silly get etag: 'W/"5987a83a-c249"', +13512 silly get age: '115', +13512 silly get connection: 'keep-alive', +13512 silly get 'x-served-by': 'cache-sin18029-SIN', +13512 silly get 'x-cache': 'HIT', +13512 silly get 'x-cache-hits': '484', +13512 silly get 'x-timer': 'S1506936885.716722,VS0,VE0', +13512 silly get vary: 'Accept-Encoding, Accept' } ] +13513 verbose etag https://registry.npmjs.org/postcss-merge-rules from cache +13514 verbose get saving postcss-merge-rules to /home/wso2/.npm/registry.npmjs.org/postcss-merge-rules/.cache.json +13515 http 304 https://registry.npmjs.org/postcss-discard-unused +13516 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13516 verbose headers via: '1.1 varnish', +13516 verbose headers 'cache-control': 'max-age=300', +13516 verbose headers etag: 'W/"5987a7c7-584c"', +13516 verbose headers age: '149', +13516 verbose headers connection: 'keep-alive', +13516 verbose headers 'x-served-by': 'cache-sin18020-SIN', +13516 verbose headers 'x-cache': 'HIT', +13516 verbose headers 'x-cache-hits': '4', +13516 verbose headers 'x-timer': 'S1506936885.717233,VS0,VE0', +13516 verbose headers vary: 'Accept-Encoding, Accept' } +13517 silly get cb [ 304, +13517 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13517 silly get via: '1.1 varnish', +13517 silly get 'cache-control': 'max-age=300', +13517 silly get etag: 'W/"5987a7c7-584c"', +13517 silly get age: '149', +13517 silly get connection: 'keep-alive', +13517 silly get 'x-served-by': 'cache-sin18020-SIN', +13517 silly get 'x-cache': 'HIT', +13517 silly get 'x-cache-hits': '4', +13517 silly get 'x-timer': 'S1506936885.717233,VS0,VE0', +13517 silly get vary: 'Accept-Encoding, Accept' } ] +13518 verbose etag https://registry.npmjs.org/postcss-discard-unused from cache +13519 verbose get saving postcss-discard-unused to /home/wso2/.npm/registry.npmjs.org/postcss-discard-unused/.cache.json +13520 http 304 https://registry.npmjs.org/postcss-merge-longhand +13521 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13521 verbose headers via: '1.1 varnish', +13521 verbose headers 'cache-control': 'max-age=300', +13521 verbose headers etag: 'W/"5987a80f-3c64"', +13521 verbose headers age: '149', +13521 verbose headers connection: 'keep-alive', +13521 verbose headers 'x-served-by': 'cache-sin18023-SIN', +13521 verbose headers 'x-cache': 'HIT', +13521 verbose headers 'x-cache-hits': '3', +13521 verbose headers 'x-timer': 'S1506936885.717306,VS0,VE0', +13521 verbose headers vary: 'Accept-Encoding, Accept' } +13522 silly get cb [ 304, +13522 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13522 silly get via: '1.1 varnish', +13522 silly get 'cache-control': 'max-age=300', +13522 silly get etag: 'W/"5987a80f-3c64"', +13522 silly get age: '149', +13522 silly get connection: 'keep-alive', +13522 silly get 'x-served-by': 'cache-sin18023-SIN', +13522 silly get 'x-cache': 'HIT', +13522 silly get 'x-cache-hits': '3', +13522 silly get 'x-timer': 'S1506936885.717306,VS0,VE0', +13522 silly get vary: 'Accept-Encoding, Accept' } ] +13523 verbose etag https://registry.npmjs.org/postcss-merge-longhand from cache +13524 verbose get saving postcss-merge-longhand to /home/wso2/.npm/registry.npmjs.org/postcss-merge-longhand/.cache.json +13525 http 304 https://registry.npmjs.org/postcss-minify-font-values +13526 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13526 verbose headers via: '1.1 varnish', +13526 verbose headers 'cache-control': 'max-age=300', +13526 verbose headers etag: 'W/"5987a862-387f"', +13526 verbose headers age: '149', +13526 verbose headers connection: 'keep-alive', +13526 verbose headers 'x-served-by': 'cache-sin18032-SIN', +13526 verbose headers 'x-cache': 'HIT', +13526 verbose headers 'x-cache-hits': '2', +13526 verbose headers 'x-timer': 'S1506936885.717446,VS0,VE0', +13526 verbose headers vary: 'Accept-Encoding, Accept' } +13527 silly get cb [ 304, +13527 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13527 silly get via: '1.1 varnish', +13527 silly get 'cache-control': 'max-age=300', +13527 silly get etag: 'W/"5987a862-387f"', +13527 silly get age: '149', +13527 silly get connection: 'keep-alive', +13527 silly get 'x-served-by': 'cache-sin18032-SIN', +13527 silly get 'x-cache': 'HIT', +13527 silly get 'x-cache-hits': '2', +13527 silly get 'x-timer': 'S1506936885.717446,VS0,VE0', +13527 silly get vary: 'Accept-Encoding, Accept' } ] +13528 verbose etag https://registry.npmjs.org/postcss-minify-font-values from cache +13529 verbose get saving postcss-minify-font-values to /home/wso2/.npm/registry.npmjs.org/postcss-minify-font-values/.cache.json +13530 http 200 https://registry.npmjs.org/has +13531 verbose headers { server: 'nginx/1.10.3', +13531 verbose headers 'content-type': 'application/json', +13531 verbose headers 'last-modified': 'Fri, 29 Sep 2017 17:51:44 GMT', +13531 verbose headers etag: 'W/"59ce8830-1084"', +13531 verbose headers 'content-encoding': 'gzip', +13531 verbose headers 'cache-control': 'max-age=300', +13531 verbose headers 'content-length': '1197', +13531 verbose headers 'accept-ranges': 'bytes', +13531 verbose headers date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13531 verbose headers via: '1.1 varnish', +13531 verbose headers age: '95', +13531 verbose headers connection: 'keep-alive', +13531 verbose headers 'x-served-by': 'cache-sin18023-SIN', +13531 verbose headers 'x-cache': 'HIT', +13531 verbose headers 'x-cache-hits': '3', +13531 verbose headers 'x-timer': 'S1506936885.576786,VS0,VE0', +13531 verbose headers vary: 'Accept-Encoding, Accept' } +13532 silly get cb [ 200, +13532 silly get { server: 'nginx/1.10.3', +13532 silly get 'content-type': 'application/json', +13532 silly get 'last-modified': 'Fri, 29 Sep 2017 17:51:44 GMT', +13532 silly get etag: 'W/"59ce8830-1084"', +13532 silly get 'content-encoding': 'gzip', +13532 silly get 'cache-control': 'max-age=300', +13532 silly get 'content-length': '1197', +13532 silly get 'accept-ranges': 'bytes', +13532 silly get date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13532 silly get via: '1.1 varnish', +13532 silly get age: '95', +13532 silly get connection: 'keep-alive', +13532 silly get 'x-served-by': 'cache-sin18023-SIN', +13532 silly get 'x-cache': 'HIT', +13532 silly get 'x-cache-hits': '3', +13532 silly get 'x-timer': 'S1506936885.576786,VS0,VE0', +13532 silly get vary: 'Accept-Encoding, Accept' } ] +13533 verbose get saving has to /home/wso2/.npm/registry.npmjs.org/has/.cache.json +13534 http 200 https://registry.npmjs.org/postcss-calc +13535 verbose headers { server: 'nginx/1.10.3', +13535 verbose headers 'content-type': 'application/json', +13535 verbose headers 'last-modified': 'Sat, 16 Sep 2017 05:25:48 GMT', +13535 verbose headers etag: 'W/"59bcb5dc-5e30"', +13535 verbose headers 'content-encoding': 'gzip', +13535 verbose headers 'cache-control': 'max-age=300', +13535 verbose headers 'content-length': '4276', +13535 verbose headers 'accept-ranges': 'bytes', +13535 verbose headers date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13535 verbose headers via: '1.1 varnish', +13535 verbose headers age: '115', +13535 verbose headers connection: 'keep-alive', +13535 verbose headers 'x-served-by': 'cache-sin18028-SIN', +13535 verbose headers 'x-cache': 'HIT', +13535 verbose headers 'x-cache-hits': '6', +13535 verbose headers 'x-timer': 'S1506936885.596333,VS0,VE0', +13535 verbose headers vary: 'Accept-Encoding, Accept' } +13536 silly get cb [ 200, +13536 silly get { server: 'nginx/1.10.3', +13536 silly get 'content-type': 'application/json', +13536 silly get 'last-modified': 'Sat, 16 Sep 2017 05:25:48 GMT', +13536 silly get etag: 'W/"59bcb5dc-5e30"', +13536 silly get 'content-encoding': 'gzip', +13536 silly get 'cache-control': 'max-age=300', +13536 silly get 'content-length': '4276', +13536 silly get 'accept-ranges': 'bytes', +13536 silly get date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13536 silly get via: '1.1 varnish', +13536 silly get age: '115', +13536 silly get connection: 'keep-alive', +13536 silly get 'x-served-by': 'cache-sin18028-SIN', +13536 silly get 'x-cache': 'HIT', +13536 silly get 'x-cache-hits': '6', +13536 silly get 'x-timer': 'S1506936885.596333,VS0,VE0', +13536 silly get vary: 'Accept-Encoding, Accept' } ] +13537 verbose get saving postcss-calc to /home/wso2/.npm/registry.npmjs.org/postcss-calc/.cache.json +13538 silly cache afterAdd postcss@5.2.17 +13539 verbose afterAdd /home/wso2/.npm/postcss/5.2.17/package/package.json not in flight; writing +13540 silly resolveWithNewModule postcss-colormin@2.2.2 checking installable status +13541 silly cache add args [ 'postcss-colormin@^2.1.8', null ] +13542 verbose cache add spec postcss-colormin@^2.1.8 +13543 silly cache add parsed spec Result { +13543 silly cache add raw: 'postcss-colormin@^2.1.8', +13543 silly cache add scope: null, +13543 silly cache add name: 'postcss-colormin', +13543 silly cache add rawSpec: '^2.1.8', +13543 silly cache add spec: '>=2.1.8 <3.0.0', +13543 silly cache add type: 'range' } +13544 silly addNamed postcss-colormin@>=2.1.8 <3.0.0 +13545 verbose addNamed ">=2.1.8 <3.0.0" is a valid semver range for postcss-colormin +13546 silly addNameRange { name: 'postcss-colormin', +13546 silly addNameRange range: '>=2.1.8 <3.0.0', +13546 silly addNameRange hasData: false } +13547 silly mapToRegistry name postcss-colormin +13548 silly mapToRegistry using default registry +13549 silly mapToRegistry registry https://registry.npmjs.org/ +13550 silly mapToRegistry uri https://registry.npmjs.org/postcss-colormin +13551 verbose addNameRange registry:https://registry.npmjs.org/postcss-colormin not in flight; fetching +13552 silly resolveWithNewModule defined@1.0.0 checking installable status +13553 silly cache add args [ 'defined@^1.0.0', null ] +13554 verbose cache add spec defined@^1.0.0 +13555 silly cache add parsed spec Result { +13555 silly cache add raw: 'defined@^1.0.0', +13555 silly cache add scope: null, +13555 silly cache add name: 'defined', +13555 silly cache add rawSpec: '^1.0.0', +13555 silly cache add spec: '>=1.0.0 <2.0.0', +13555 silly cache add type: 'range' } +13556 silly addNamed defined@>=1.0.0 <2.0.0 +13557 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for defined +13558 silly addNameRange { name: 'defined', range: '>=1.0.0 <2.0.0', hasData: false } +13559 silly mapToRegistry name defined +13560 silly mapToRegistry using default registry +13561 silly mapToRegistry registry https://registry.npmjs.org/ +13562 silly mapToRegistry uri https://registry.npmjs.org/defined +13563 verbose addNameRange registry:https://registry.npmjs.org/defined not in flight; fetching +13564 silly resolveWithNewModule postcss-discard-empty@2.1.0 checking installable status +13565 silly cache add args [ 'postcss-discard-empty@^2.0.1', null ] +13566 verbose cache add spec postcss-discard-empty@^2.0.1 +13567 silly cache add parsed spec Result { +13567 silly cache add raw: 'postcss-discard-empty@^2.0.1', +13567 silly cache add scope: null, +13567 silly cache add name: 'postcss-discard-empty', +13567 silly cache add rawSpec: '^2.0.1', +13567 silly cache add spec: '>=2.0.1 <3.0.0', +13567 silly cache add type: 'range' } +13568 silly addNamed postcss-discard-empty@>=2.0.1 <3.0.0 +13569 verbose addNamed ">=2.0.1 <3.0.0" is a valid semver range for postcss-discard-empty +13570 silly addNameRange { name: 'postcss-discard-empty', +13570 silly addNameRange range: '>=2.0.1 <3.0.0', +13570 silly addNameRange hasData: false } +13571 silly mapToRegistry name postcss-discard-empty +13572 silly mapToRegistry using default registry +13573 silly mapToRegistry registry https://registry.npmjs.org/ +13574 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-empty +13575 verbose addNameRange registry:https://registry.npmjs.org/postcss-discard-empty not in flight; fetching +13576 silly resolveWithNewModule postcss-convert-values@2.6.1 checking installable status +13577 silly cache add args [ 'postcss-convert-values@^2.3.4', null ] +13578 verbose cache add spec postcss-convert-values@^2.3.4 +13579 silly cache add parsed spec Result { +13579 silly cache add raw: 'postcss-convert-values@^2.3.4', +13579 silly cache add scope: null, +13579 silly cache add name: 'postcss-convert-values', +13579 silly cache add rawSpec: '^2.3.4', +13579 silly cache add spec: '>=2.3.4 <3.0.0', +13579 silly cache add type: 'range' } +13580 silly addNamed postcss-convert-values@>=2.3.4 <3.0.0 +13581 verbose addNamed ">=2.3.4 <3.0.0" is a valid semver range for postcss-convert-values +13582 silly addNameRange { name: 'postcss-convert-values', +13582 silly addNameRange range: '>=2.3.4 <3.0.0', +13582 silly addNameRange hasData: false } +13583 silly mapToRegistry name postcss-convert-values +13584 silly mapToRegistry using default registry +13585 silly mapToRegistry registry https://registry.npmjs.org/ +13586 silly mapToRegistry uri https://registry.npmjs.org/postcss-convert-values +13587 verbose addNameRange registry:https://registry.npmjs.org/postcss-convert-values not in flight; fetching +13588 silly resolveWithNewModule postcss-discard-comments@2.0.4 checking installable status +13589 silly cache add args [ 'postcss-discard-comments@^2.0.4', null ] +13590 verbose cache add spec postcss-discard-comments@^2.0.4 +13591 silly cache add parsed spec Result { +13591 silly cache add raw: 'postcss-discard-comments@^2.0.4', +13591 silly cache add scope: null, +13591 silly cache add name: 'postcss-discard-comments', +13591 silly cache add rawSpec: '^2.0.4', +13591 silly cache add spec: '>=2.0.4 <3.0.0', +13591 silly cache add type: 'range' } +13592 silly addNamed postcss-discard-comments@>=2.0.4 <3.0.0 +13593 verbose addNamed ">=2.0.4 <3.0.0" is a valid semver range for postcss-discard-comments +13594 silly addNameRange { name: 'postcss-discard-comments', +13594 silly addNameRange range: '>=2.0.4 <3.0.0', +13594 silly addNameRange hasData: false } +13595 silly mapToRegistry name postcss-discard-comments +13596 silly mapToRegistry using default registry +13597 silly mapToRegistry registry https://registry.npmjs.org/ +13598 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-comments +13599 verbose addNameRange registry:https://registry.npmjs.org/postcss-discard-comments not in flight; fetching +13600 silly resolveWithNewModule postcss-filter-plugins@2.0.2 checking installable status +13601 silly cache add args [ 'postcss-filter-plugins@^2.0.0', null ] +13602 verbose cache add spec postcss-filter-plugins@^2.0.0 +13603 silly cache add parsed spec Result { +13603 silly cache add raw: 'postcss-filter-plugins@^2.0.0', +13603 silly cache add scope: null, +13603 silly cache add name: 'postcss-filter-plugins', +13603 silly cache add rawSpec: '^2.0.0', +13603 silly cache add spec: '>=2.0.0 <3.0.0', +13603 silly cache add type: 'range' } +13604 silly addNamed postcss-filter-plugins@>=2.0.0 <3.0.0 +13605 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for postcss-filter-plugins +13606 silly addNameRange { name: 'postcss-filter-plugins', +13606 silly addNameRange range: '>=2.0.0 <3.0.0', +13606 silly addNameRange hasData: false } +13607 silly mapToRegistry name postcss-filter-plugins +13608 silly mapToRegistry using default registry +13609 silly mapToRegistry registry https://registry.npmjs.org/ +13610 silly mapToRegistry uri https://registry.npmjs.org/postcss-filter-plugins +13611 verbose addNameRange registry:https://registry.npmjs.org/postcss-filter-plugins not in flight; fetching +13612 silly resolveWithNewModule postcss-merge-idents@2.1.7 checking installable status +13613 silly cache add args [ 'postcss-merge-idents@^2.1.5', null ] +13614 verbose cache add spec postcss-merge-idents@^2.1.5 +13615 silly cache add parsed spec Result { +13615 silly cache add raw: 'postcss-merge-idents@^2.1.5', +13615 silly cache add scope: null, +13615 silly cache add name: 'postcss-merge-idents', +13615 silly cache add rawSpec: '^2.1.5', +13615 silly cache add spec: '>=2.1.5 <3.0.0', +13615 silly cache add type: 'range' } +13616 silly addNamed postcss-merge-idents@>=2.1.5 <3.0.0 +13617 verbose addNamed ">=2.1.5 <3.0.0" is a valid semver range for postcss-merge-idents +13618 silly addNameRange { name: 'postcss-merge-idents', +13618 silly addNameRange range: '>=2.1.5 <3.0.0', +13618 silly addNameRange hasData: false } +13619 silly mapToRegistry name postcss-merge-idents +13620 silly mapToRegistry using default registry +13621 silly mapToRegistry registry https://registry.npmjs.org/ +13622 silly mapToRegistry uri https://registry.npmjs.org/postcss-merge-idents +13623 verbose addNameRange registry:https://registry.npmjs.org/postcss-merge-idents not in flight; fetching +13624 silly resolveWithNewModule postcss-merge-rules@2.1.2 checking installable status +13625 silly cache add args [ 'postcss-merge-rules@^2.0.3', null ] +13626 verbose cache add spec postcss-merge-rules@^2.0.3 +13627 silly cache add parsed spec Result { +13627 silly cache add raw: 'postcss-merge-rules@^2.0.3', +13627 silly cache add scope: null, +13627 silly cache add name: 'postcss-merge-rules', +13627 silly cache add rawSpec: '^2.0.3', +13627 silly cache add spec: '>=2.0.3 <3.0.0', +13627 silly cache add type: 'range' } +13628 silly addNamed postcss-merge-rules@>=2.0.3 <3.0.0 +13629 verbose addNamed ">=2.0.3 <3.0.0" is a valid semver range for postcss-merge-rules +13630 silly addNameRange { name: 'postcss-merge-rules', +13630 silly addNameRange range: '>=2.0.3 <3.0.0', +13630 silly addNameRange hasData: false } +13631 silly mapToRegistry name postcss-merge-rules +13632 silly mapToRegistry using default registry +13633 silly mapToRegistry registry https://registry.npmjs.org/ +13634 silly mapToRegistry uri https://registry.npmjs.org/postcss-merge-rules +13635 verbose addNameRange registry:https://registry.npmjs.org/postcss-merge-rules not in flight; fetching +13636 silly resolveWithNewModule postcss-discard-unused@2.2.3 checking installable status +13637 silly cache add args [ 'postcss-discard-unused@^2.2.1', null ] +13638 verbose cache add spec postcss-discard-unused@^2.2.1 +13639 silly cache add parsed spec Result { +13639 silly cache add raw: 'postcss-discard-unused@^2.2.1', +13639 silly cache add scope: null, +13639 silly cache add name: 'postcss-discard-unused', +13639 silly cache add rawSpec: '^2.2.1', +13639 silly cache add spec: '>=2.2.1 <3.0.0', +13639 silly cache add type: 'range' } +13640 silly addNamed postcss-discard-unused@>=2.2.1 <3.0.0 +13641 verbose addNamed ">=2.2.1 <3.0.0" is a valid semver range for postcss-discard-unused +13642 silly addNameRange { name: 'postcss-discard-unused', +13642 silly addNameRange range: '>=2.2.1 <3.0.0', +13642 silly addNameRange hasData: false } +13643 silly mapToRegistry name postcss-discard-unused +13644 silly mapToRegistry using default registry +13645 silly mapToRegistry registry https://registry.npmjs.org/ +13646 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-unused +13647 verbose addNameRange registry:https://registry.npmjs.org/postcss-discard-unused not in flight; fetching +13648 silly resolveWithNewModule postcss-merge-longhand@2.0.2 checking installable status +13649 silly cache add args [ 'postcss-merge-longhand@^2.0.1', null ] +13650 verbose cache add spec postcss-merge-longhand@^2.0.1 +13651 silly cache add parsed spec Result { +13651 silly cache add raw: 'postcss-merge-longhand@^2.0.1', +13651 silly cache add scope: null, +13651 silly cache add name: 'postcss-merge-longhand', +13651 silly cache add rawSpec: '^2.0.1', +13651 silly cache add spec: '>=2.0.1 <3.0.0', +13651 silly cache add type: 'range' } +13652 silly addNamed postcss-merge-longhand@>=2.0.1 <3.0.0 +13653 verbose addNamed ">=2.0.1 <3.0.0" is a valid semver range for postcss-merge-longhand +13654 silly addNameRange { name: 'postcss-merge-longhand', +13654 silly addNameRange range: '>=2.0.1 <3.0.0', +13654 silly addNameRange hasData: false } +13655 silly mapToRegistry name postcss-merge-longhand +13656 silly mapToRegistry using default registry +13657 silly mapToRegistry registry https://registry.npmjs.org/ +13658 silly mapToRegistry uri https://registry.npmjs.org/postcss-merge-longhand +13659 verbose addNameRange registry:https://registry.npmjs.org/postcss-merge-longhand not in flight; fetching +13660 silly resolveWithNewModule postcss-discard-overridden@0.1.1 checking installable status +13661 silly cache add args [ 'postcss-discard-overridden@^0.1.1', null ] +13662 verbose cache add spec postcss-discard-overridden@^0.1.1 +13663 silly cache add parsed spec Result { +13663 silly cache add raw: 'postcss-discard-overridden@^0.1.1', +13663 silly cache add scope: null, +13663 silly cache add name: 'postcss-discard-overridden', +13663 silly cache add rawSpec: '^0.1.1', +13663 silly cache add spec: '>=0.1.1 <0.2.0', +13663 silly cache add type: 'range' } +13664 silly addNamed postcss-discard-overridden@>=0.1.1 <0.2.0 +13665 verbose addNamed ">=0.1.1 <0.2.0" is a valid semver range for postcss-discard-overridden +13666 silly addNameRange { name: 'postcss-discard-overridden', +13666 silly addNameRange range: '>=0.1.1 <0.2.0', +13666 silly addNameRange hasData: false } +13667 silly mapToRegistry name postcss-discard-overridden +13668 silly mapToRegistry using default registry +13669 silly mapToRegistry registry https://registry.npmjs.org/ +13670 silly mapToRegistry uri https://registry.npmjs.org/postcss-discard-overridden +13671 verbose addNameRange registry:https://registry.npmjs.org/postcss-discard-overridden not in flight; fetching +13672 silly resolveWithNewModule decamelize@1.2.0 checking installable status +13673 silly cache add args [ 'decamelize@^1.1.2', null ] +13674 verbose cache add spec decamelize@^1.1.2 +13675 silly cache add parsed spec Result { +13675 silly cache add raw: 'decamelize@^1.1.2', +13675 silly cache add scope: null, +13675 silly cache add name: 'decamelize', +13675 silly cache add rawSpec: '^1.1.2', +13675 silly cache add spec: '>=1.1.2 <2.0.0', +13675 silly cache add type: 'range' } +13676 silly addNamed decamelize@>=1.1.2 <2.0.0 +13677 verbose addNamed ">=1.1.2 <2.0.0" is a valid semver range for decamelize +13678 silly addNameRange { name: 'decamelize', range: '>=1.1.2 <2.0.0', hasData: false } +13679 silly mapToRegistry name decamelize +13680 silly mapToRegistry using default registry +13681 silly mapToRegistry registry https://registry.npmjs.org/ +13682 silly mapToRegistry uri https://registry.npmjs.org/decamelize +13683 verbose addNameRange registry:https://registry.npmjs.org/decamelize not in flight; fetching +13684 silly resolveWithNewModule postcss-minify-font-values@1.0.5 checking installable status +13685 silly cache add args [ 'postcss-minify-font-values@^1.0.2', null ] +13686 verbose cache add spec postcss-minify-font-values@^1.0.2 +13687 silly cache add parsed spec Result { +13687 silly cache add raw: 'postcss-minify-font-values@^1.0.2', +13687 silly cache add scope: null, +13687 silly cache add name: 'postcss-minify-font-values', +13687 silly cache add rawSpec: '^1.0.2', +13687 silly cache add spec: '>=1.0.2 <2.0.0', +13687 silly cache add type: 'range' } +13688 silly addNamed postcss-minify-font-values@>=1.0.2 <2.0.0 +13689 verbose addNamed ">=1.0.2 <2.0.0" is a valid semver range for postcss-minify-font-values +13690 silly addNameRange { name: 'postcss-minify-font-values', +13690 silly addNameRange range: '>=1.0.2 <2.0.0', +13690 silly addNameRange hasData: false } +13691 silly mapToRegistry name postcss-minify-font-values +13692 silly mapToRegistry using default registry +13693 silly mapToRegistry registry https://registry.npmjs.org/ +13694 silly mapToRegistry uri https://registry.npmjs.org/postcss-minify-font-values +13695 verbose addNameRange registry:https://registry.npmjs.org/postcss-minify-font-values not in flight; fetching +13696 verbose afterAdd /home/wso2/.npm/postcss/5.2.17/package/package.json written +13697 silly resolveWithNewModule has@1.0.1 checking installable status +13698 silly cache add args [ 'has@^1.0.1', null ] +13699 verbose cache add spec has@^1.0.1 +13700 silly cache add parsed spec Result { +13700 silly cache add raw: 'has@^1.0.1', +13700 silly cache add scope: null, +13700 silly cache add name: 'has', +13700 silly cache add rawSpec: '^1.0.1', +13700 silly cache add spec: '>=1.0.1 <2.0.0', +13700 silly cache add type: 'range' } +13701 silly addNamed has@>=1.0.1 <2.0.0 +13702 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for has +13703 silly addNameRange { name: 'has', range: '>=1.0.1 <2.0.0', hasData: false } +13704 silly mapToRegistry name has +13705 silly mapToRegistry using default registry +13706 silly mapToRegistry registry https://registry.npmjs.org/ +13707 silly mapToRegistry uri https://registry.npmjs.org/has +13708 verbose addNameRange registry:https://registry.npmjs.org/has not in flight; fetching +13709 silly resolveWithNewModule postcss-calc@5.3.1 checking installable status +13710 silly cache add args [ 'postcss-calc@^5.2.0', null ] +13711 verbose cache add spec postcss-calc@^5.2.0 +13712 silly cache add parsed spec Result { +13712 silly cache add raw: 'postcss-calc@^5.2.0', +13712 silly cache add scope: null, +13712 silly cache add name: 'postcss-calc', +13712 silly cache add rawSpec: '^5.2.0', +13712 silly cache add spec: '>=5.2.0 <6.0.0', +13712 silly cache add type: 'range' } +13713 silly addNamed postcss-calc@>=5.2.0 <6.0.0 +13714 verbose addNamed ">=5.2.0 <6.0.0" is a valid semver range for postcss-calc +13715 silly addNameRange { name: 'postcss-calc', range: '>=5.2.0 <6.0.0', hasData: false } +13716 silly mapToRegistry name postcss-calc +13717 silly mapToRegistry using default registry +13718 silly mapToRegistry registry https://registry.npmjs.org/ +13719 silly mapToRegistry uri https://registry.npmjs.org/postcss-calc +13720 verbose addNameRange registry:https://registry.npmjs.org/postcss-calc not in flight; fetching +13721 verbose get https://registry.npmjs.org/defined not expired, no request +13722 silly addNameRange number 2 { name: 'defined', range: '>=1.0.0 <2.0.0', hasData: true } +13723 silly addNameRange versions [ 'defined', [ '0.0.0', '1.0.0' ] ] +13724 silly addNamed defined@1.0.0 +13725 verbose addNamed "1.0.0" is a plain semver version for defined +13726 verbose get https://registry.npmjs.org/postcss-colormin not expired, no request +13727 silly addNameRange number 2 { name: 'postcss-colormin', +13727 silly addNameRange range: '>=2.1.8 <3.0.0', +13727 silly addNameRange hasData: true } +13728 silly addNameRange versions [ 'postcss-colormin', +13728 silly addNameRange [ '1.0.0', +13728 silly addNameRange '1.1.0', +13728 silly addNameRange '1.2.0', +13728 silly addNameRange '1.2.1', +13728 silly addNameRange '1.2.2', +13728 silly addNameRange '1.2.3', +13728 silly addNameRange '1.2.4', +13728 silly addNameRange '1.2.5', +13728 silly addNameRange '1.2.6', +13728 silly addNameRange '1.2.7', +13728 silly addNameRange '2.0.0', +13728 silly addNameRange '2.1.0', +13728 silly addNameRange '2.1.1', +13728 silly addNameRange '2.1.2', +13728 silly addNameRange '2.1.3', +13728 silly addNameRange '2.1.4', +13728 silly addNameRange '2.1.5', +13728 silly addNameRange '2.1.6', +13728 silly addNameRange '2.1.7', +13728 silly addNameRange '2.1.8', +13728 silly addNameRange '2.2.0', +13728 silly addNameRange '2.2.1', +13728 silly addNameRange '2.2.2', +13728 silly addNameRange '4.0.0-rc.0', +13728 silly addNameRange '4.0.0-rc.2' ] ] +13729 silly addNamed postcss-colormin@2.2.2 +13730 verbose addNamed "2.2.2" is a plain semver version for postcss-colormin +13731 verbose get https://registry.npmjs.org/postcss-discard-empty not expired, no request +13732 silly addNameRange number 2 { name: 'postcss-discard-empty', +13732 silly addNameRange range: '>=2.0.1 <3.0.0', +13732 silly addNameRange hasData: true } +13733 silly addNameRange versions [ 'postcss-discard-empty', +13733 silly addNameRange [ '1.0.0', +13733 silly addNameRange '1.1.0', +13733 silly addNameRange '1.1.1', +13733 silly addNameRange '1.1.2', +13733 silly addNameRange '2.0.0', +13733 silly addNameRange '2.0.1', +13733 silly addNameRange '2.1.0', +13733 silly addNameRange '4.0.0-rc.0', +13733 silly addNameRange '4.0.0-rc.2' ] ] +13734 silly addNamed postcss-discard-empty@2.1.0 +13735 verbose addNamed "2.1.0" is a plain semver version for postcss-discard-empty +13736 verbose get https://registry.npmjs.org/postcss-discard-comments not expired, no request +13737 silly addNameRange number 2 { name: 'postcss-discard-comments', +13737 silly addNameRange range: '>=2.0.4 <3.0.0', +13737 silly addNameRange hasData: true } +13738 silly addNameRange versions [ 'postcss-discard-comments', +13738 silly addNameRange [ '1.0.0', +13738 silly addNameRange '1.0.1', +13738 silly addNameRange '1.0.2', +13738 silly addNameRange '1.1.0', +13738 silly addNameRange '1.1.1', +13738 silly addNameRange '1.1.2', +13738 silly addNameRange '1.1.3', +13738 silly addNameRange '1.2.0', +13738 silly addNameRange '1.2.1', +13738 silly addNameRange '2.0.0', +13738 silly addNameRange '2.0.1', +13738 silly addNameRange '2.0.2', +13738 silly addNameRange '2.0.3', +13738 silly addNameRange '2.0.4', +13738 silly addNameRange '4.0.0-rc.0', +13738 silly addNameRange '4.0.0-rc.2' ] ] +13739 silly addNamed postcss-discard-comments@2.0.4 +13740 verbose addNamed "2.0.4" is a plain semver version for postcss-discard-comments +13741 verbose get https://registry.npmjs.org/postcss-convert-values not expired, no request +13742 silly addNameRange number 2 { name: 'postcss-convert-values', +13742 silly addNameRange range: '>=2.3.4 <3.0.0', +13742 silly addNameRange hasData: true } +13743 silly addNameRange versions [ 'postcss-convert-values', +13743 silly addNameRange [ '1.0.0', +13743 silly addNameRange '1.0.1', +13743 silly addNameRange '1.0.2', +13743 silly addNameRange '1.0.3', +13743 silly addNameRange '1.1.0', +13743 silly addNameRange '1.1.1', +13743 silly addNameRange '1.2.0', +13743 silly addNameRange '1.2.1', +13743 silly addNameRange '1.2.2', +13743 silly addNameRange '1.2.3', +13743 silly addNameRange '1.2.4', +13743 silly addNameRange '1.2.5', +13743 silly addNameRange '1.3.0', +13743 silly addNameRange '1.3.1', +13743 silly addNameRange '2.0.0', +13743 silly addNameRange '2.0.1', +13743 silly addNameRange '2.1.0', +13743 silly addNameRange '2.2.0', +13743 silly addNameRange '2.2.1', +13743 silly addNameRange '2.3.0', +13743 silly addNameRange '2.3.1', +13743 silly addNameRange '2.3.2', +13743 silly addNameRange '2.3.3', +13743 silly addNameRange '2.3.4', +13743 silly addNameRange '2.3.5', +13743 silly addNameRange '2.3.6', +13743 silly addNameRange '2.4.0', +13743 silly addNameRange '2.4.1', +13743 silly addNameRange '2.5.0', +13743 silly addNameRange '2.6.0', +13743 silly addNameRange '2.6.1', +13743 silly addNameRange '4.0.0-rc.0', +13743 silly addNameRange '4.0.0-rc.2' ] ] +13744 silly addNamed postcss-convert-values@2.6.1 +13745 verbose addNamed "2.6.1" is a plain semver version for postcss-convert-values +13746 verbose get https://registry.npmjs.org/postcss-filter-plugins not expired, no request +13747 silly addNameRange number 2 { name: 'postcss-filter-plugins', +13747 silly addNameRange range: '>=2.0.0 <3.0.0', +13747 silly addNameRange hasData: true } +13748 silly addNameRange versions [ 'postcss-filter-plugins', +13748 silly addNameRange [ '1.0.0', '1.0.1', '2.0.0', '2.0.1', '2.0.2' ] ] +13749 silly addNamed postcss-filter-plugins@2.0.2 +13750 verbose addNamed "2.0.2" is a plain semver version for postcss-filter-plugins +13751 verbose get https://registry.npmjs.org/postcss-merge-idents not expired, no request +13752 silly addNameRange number 2 { name: 'postcss-merge-idents', +13752 silly addNameRange range: '>=2.1.5 <3.0.0', +13752 silly addNameRange hasData: true } +13753 silly addNameRange versions [ 'postcss-merge-idents', +13753 silly addNameRange [ '1.0.0', +13753 silly addNameRange '1.0.1', +13753 silly addNameRange '1.0.2', +13753 silly addNameRange '2.0.0', +13753 silly addNameRange '2.1.0', +13753 silly addNameRange '2.1.1', +13753 silly addNameRange '2.1.2', +13753 silly addNameRange '2.1.3', +13753 silly addNameRange '2.1.4', +13753 silly addNameRange '2.1.5', +13753 silly addNameRange '2.1.6', +13753 silly addNameRange '2.1.7', +13753 silly addNameRange '4.0.0-rc.0', +13753 silly addNameRange '4.0.0-rc.2' ] ] +13754 silly addNamed postcss-merge-idents@2.1.7 +13755 verbose addNamed "2.1.7" is a plain semver version for postcss-merge-idents +13756 verbose get https://registry.npmjs.org/postcss-discard-unused not expired, no request +13757 silly addNameRange number 2 { name: 'postcss-discard-unused', +13757 silly addNameRange range: '>=2.2.1 <3.0.0', +13757 silly addNameRange hasData: true } +13758 silly addNameRange versions [ 'postcss-discard-unused', +13758 silly addNameRange [ '1.0.0', +13758 silly addNameRange '1.0.1', +13758 silly addNameRange '1.0.2', +13758 silly addNameRange '1.0.3', +13758 silly addNameRange '2.0.0', +13758 silly addNameRange '2.1.0', +13758 silly addNameRange '2.2.0', +13758 silly addNameRange '2.2.1', +13758 silly addNameRange '2.2.2', +13758 silly addNameRange '2.2.3', +13758 silly addNameRange '4.0.0-rc.0', +13758 silly addNameRange '4.0.0-rc.2' ] ] +13759 silly addNamed postcss-discard-unused@2.2.3 +13760 verbose addNamed "2.2.3" is a plain semver version for postcss-discard-unused +13761 verbose get https://registry.npmjs.org/postcss-merge-rules not expired, no request +13762 silly addNameRange number 2 { name: 'postcss-merge-rules', +13762 silly addNameRange range: '>=2.0.3 <3.0.0', +13762 silly addNameRange hasData: true } +13763 silly addNameRange versions [ 'postcss-merge-rules', +13763 silly addNameRange [ '1.0.0', +13763 silly addNameRange '1.1.0', +13763 silly addNameRange '1.1.1', +13763 silly addNameRange '1.2.0', +13763 silly addNameRange '1.2.1', +13763 silly addNameRange '1.2.2', +13763 silly addNameRange '1.3.0', +13763 silly addNameRange '1.3.1', +13763 silly addNameRange '1.3.2', +13763 silly addNameRange '1.3.3', +13763 silly addNameRange '1.3.4', +13763 silly addNameRange '1.3.5', +13763 silly addNameRange '1.3.6', +13763 silly addNameRange '2.0.0', +13763 silly addNameRange '2.0.1', +13763 silly addNameRange '2.0.2', +13763 silly addNameRange '2.0.3', +13763 silly addNameRange '2.0.4', +13763 silly addNameRange '2.0.5', +13763 silly addNameRange '2.0.6', +13763 silly addNameRange '2.0.7', +13763 silly addNameRange '2.0.8', +13763 silly addNameRange '2.0.9', +13763 silly addNameRange '2.0.10', +13763 silly addNameRange '2.0.11', +13763 silly addNameRange '2.1.0', +13763 silly addNameRange '2.1.1', +13763 silly addNameRange '2.1.2', +13763 silly addNameRange '4.0.0-rc.0', +13763 silly addNameRange '4.0.0-rc.2' ] ] +13764 silly addNamed postcss-merge-rules@2.1.2 +13765 verbose addNamed "2.1.2" is a plain semver version for postcss-merge-rules +13766 verbose get https://registry.npmjs.org/postcss-discard-overridden not expired, no request +13767 silly addNameRange number 2 { name: 'postcss-discard-overridden', +13767 silly addNameRange range: '>=0.1.1 <0.2.0', +13767 silly addNameRange hasData: true } +13768 silly addNameRange versions [ 'postcss-discard-overridden', +13768 silly addNameRange [ '0.1.0', '0.1.1', '4.0.0-rc.0', '4.0.0-rc.2' ] ] +13769 silly addNamed postcss-discard-overridden@0.1.1 +13770 verbose addNamed "0.1.1" is a plain semver version for postcss-discard-overridden +13771 verbose get https://registry.npmjs.org/postcss-merge-longhand not expired, no request +13772 silly addNameRange number 2 { name: 'postcss-merge-longhand', +13772 silly addNameRange range: '>=2.0.1 <3.0.0', +13772 silly addNameRange hasData: true } +13773 silly addNameRange versions [ 'postcss-merge-longhand', +13773 silly addNameRange [ '1.0.0', +13773 silly addNameRange '1.0.1', +13773 silly addNameRange '1.0.2', +13773 silly addNameRange '2.0.0', +13773 silly addNameRange '2.0.1', +13773 silly addNameRange '2.0.2', +13773 silly addNameRange '3.0.0', +13773 silly addNameRange '4.0.0-rc.0', +13773 silly addNameRange '4.0.0-rc.2' ] ] +13774 silly addNamed postcss-merge-longhand@2.0.2 +13775 verbose addNamed "2.0.2" is a plain semver version for postcss-merge-longhand +13776 verbose get https://registry.npmjs.org/decamelize not expired, no request +13777 silly addNameRange number 2 { name: 'decamelize', range: '>=1.1.2 <2.0.0', hasData: true } +13778 silly addNameRange versions [ 'decamelize', +13778 silly addNameRange [ '1.0.0', '1.1.0', '1.1.1', '1.1.2', '1.2.0' ] ] +13779 silly addNamed decamelize@1.2.0 +13780 verbose addNamed "1.2.0" is a plain semver version for decamelize +13781 verbose get https://registry.npmjs.org/postcss-minify-font-values not expired, no request +13782 silly addNameRange number 2 { name: 'postcss-minify-font-values', +13782 silly addNameRange range: '>=1.0.2 <2.0.0', +13782 silly addNameRange hasData: true } +13783 silly addNameRange versions [ 'postcss-minify-font-values', +13783 silly addNameRange [ '1.0.0', +13783 silly addNameRange '1.0.1', +13783 silly addNameRange '1.0.2', +13783 silly addNameRange '1.0.3', +13783 silly addNameRange '1.0.4', +13783 silly addNameRange '1.0.5', +13783 silly addNameRange '4.0.0-rc.0', +13783 silly addNameRange '4.0.0-rc.2' ] ] +13784 silly addNamed postcss-minify-font-values@1.0.5 +13785 verbose addNamed "1.0.5" is a plain semver version for postcss-minify-font-values +13786 http 304 https://registry.npmjs.org/postcss-minify-params +13787 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13787 verbose headers via: '1.1 varnish', +13787 verbose headers 'cache-control': 'max-age=300', +13787 verbose headers etag: 'W/"5987a8b6-56ed"', +13787 verbose headers age: '71', +13787 verbose headers connection: 'keep-alive', +13787 verbose headers 'x-served-by': 'cache-sin18020-SIN', +13787 verbose headers 'x-cache': 'HIT', +13787 verbose headers 'x-cache-hits': '11', +13787 verbose headers 'x-timer': 'S1506936885.798275,VS0,VE0', +13787 verbose headers vary: 'Accept-Encoding, Accept' } +13788 silly get cb [ 304, +13788 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13788 silly get via: '1.1 varnish', +13788 silly get 'cache-control': 'max-age=300', +13788 silly get etag: 'W/"5987a8b6-56ed"', +13788 silly get age: '71', +13788 silly get connection: 'keep-alive', +13788 silly get 'x-served-by': 'cache-sin18020-SIN', +13788 silly get 'x-cache': 'HIT', +13788 silly get 'x-cache-hits': '11', +13788 silly get 'x-timer': 'S1506936885.798275,VS0,VE0', +13788 silly get vary: 'Accept-Encoding, Accept' } ] +13789 verbose etag https://registry.npmjs.org/postcss-minify-params from cache +13790 verbose get saving postcss-minify-params to /home/wso2/.npm/registry.npmjs.org/postcss-minify-params/.cache.json +13791 http 304 https://registry.npmjs.org/postcss-minify-gradients +13792 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13792 verbose headers via: '1.1 varnish', +13792 verbose headers 'cache-control': 'max-age=300', +13792 verbose headers etag: 'W/"5987a897-3bf2"', +13792 verbose headers age: '71', +13792 verbose headers connection: 'keep-alive', +13792 verbose headers 'x-served-by': 'cache-sin18024-SIN', +13792 verbose headers 'x-cache': 'HIT', +13792 verbose headers 'x-cache-hits': '2', +13792 verbose headers 'x-timer': 'S1506936885.796493,VS0,VE0', +13792 verbose headers vary: 'Accept-Encoding, Accept' } +13793 silly get cb [ 304, +13793 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13793 silly get via: '1.1 varnish', +13793 silly get 'cache-control': 'max-age=300', +13793 silly get etag: 'W/"5987a897-3bf2"', +13793 silly get age: '71', +13793 silly get connection: 'keep-alive', +13793 silly get 'x-served-by': 'cache-sin18024-SIN', +13793 silly get 'x-cache': 'HIT', +13793 silly get 'x-cache-hits': '2', +13793 silly get 'x-timer': 'S1506936885.796493,VS0,VE0', +13793 silly get vary: 'Accept-Encoding, Accept' } ] +13794 verbose etag https://registry.npmjs.org/postcss-minify-gradients from cache +13795 verbose get saving postcss-minify-gradients to /home/wso2/.npm/registry.npmjs.org/postcss-minify-gradients/.cache.json +13796 verbose get https://registry.npmjs.org/has not expired, no request +13797 silly addNameRange number 2 { name: 'has', range: '>=1.0.1 <2.0.0', hasData: true } +13798 silly addNameRange versions [ 'has', [ '0.0.1', '1.0.0', '1.0.1' ] ] +13799 silly addNamed has@1.0.1 +13800 verbose addNamed "1.0.1" is a plain semver version for has +13801 http 304 https://registry.npmjs.org/postcss-minify-selectors +13802 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13802 verbose headers via: '1.1 varnish', +13802 verbose headers 'cache-control': 'max-age=300', +13802 verbose headers etag: 'W/"5987a8d4-b15d"', +13802 verbose headers age: '114', +13802 verbose headers connection: 'keep-alive', +13802 verbose headers 'x-served-by': 'cache-sin18027-SIN', +13802 verbose headers 'x-cache': 'HIT', +13802 verbose headers 'x-cache-hits': '2', +13802 verbose headers 'x-timer': 'S1506936885.799753,VS0,VE0', +13802 verbose headers vary: 'Accept-Encoding, Accept' } +13803 silly get cb [ 304, +13803 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13803 silly get via: '1.1 varnish', +13803 silly get 'cache-control': 'max-age=300', +13803 silly get etag: 'W/"5987a8d4-b15d"', +13803 silly get age: '114', +13803 silly get connection: 'keep-alive', +13803 silly get 'x-served-by': 'cache-sin18027-SIN', +13803 silly get 'x-cache': 'HIT', +13803 silly get 'x-cache-hits': '2', +13803 silly get 'x-timer': 'S1506936885.799753,VS0,VE0', +13803 silly get vary: 'Accept-Encoding, Accept' } ] +13804 verbose etag https://registry.npmjs.org/postcss-minify-selectors from cache +13805 verbose get saving postcss-minify-selectors to /home/wso2/.npm/registry.npmjs.org/postcss-minify-selectors/.cache.json +13806 verbose get https://registry.npmjs.org/postcss-calc not expired, no request +13807 silly addNameRange number 2 { name: 'postcss-calc', range: '>=5.2.0 <6.0.0', hasData: true } +13808 silly addNameRange versions [ 'postcss-calc', +13808 silly addNameRange [ '1.0.0', +13808 silly addNameRange '2.0.0', +13808 silly addNameRange '2.0.1', +13808 silly addNameRange '2.1.0', +13808 silly addNameRange '3.0.0', +13808 silly addNameRange '4.0.0', +13808 silly addNameRange '4.0.1', +13808 silly addNameRange '4.1.0', +13808 silly addNameRange '5.0.0', +13808 silly addNameRange '5.1.0', +13808 silly addNameRange '5.2.0', +13808 silly addNameRange '5.2.1', +13808 silly addNameRange '5.3.0', +13808 silly addNameRange '5.3.1', +13808 silly addNameRange '6.0.0' ] ] +13809 silly addNamed postcss-calc@5.3.1 +13810 verbose addNamed "5.3.1" is a plain semver version for postcss-calc +13811 silly cache afterAdd defined@1.0.0 +13812 verbose afterAdd /home/wso2/.npm/defined/1.0.0/package/package.json not in flight; writing +13813 silly cache afterAdd postcss-colormin@2.2.2 +13814 verbose afterAdd /home/wso2/.npm/postcss-colormin/2.2.2/package/package.json not in flight; writing +13815 silly cache afterAdd postcss-discard-comments@2.0.4 +13816 verbose afterAdd /home/wso2/.npm/postcss-discard-comments/2.0.4/package/package.json not in flight; writing +13817 silly cache afterAdd postcss-convert-values@2.6.1 +13818 verbose afterAdd /home/wso2/.npm/postcss-convert-values/2.6.1/package/package.json not in flight; writing +13819 silly cache afterAdd postcss-discard-empty@2.1.0 +13820 verbose afterAdd /home/wso2/.npm/postcss-discard-empty/2.1.0/package/package.json not in flight; writing +13821 silly cache afterAdd postcss-filter-plugins@2.0.2 +13822 verbose afterAdd /home/wso2/.npm/postcss-filter-plugins/2.0.2/package/package.json not in flight; writing +13823 silly cache afterAdd postcss-discard-unused@2.2.3 +13824 verbose afterAdd /home/wso2/.npm/postcss-discard-unused/2.2.3/package/package.json not in flight; writing +13825 silly cache afterAdd postcss-merge-idents@2.1.7 +13826 verbose afterAdd /home/wso2/.npm/postcss-merge-idents/2.1.7/package/package.json not in flight; writing +13827 silly cache afterAdd postcss-merge-rules@2.1.2 +13828 verbose afterAdd /home/wso2/.npm/postcss-merge-rules/2.1.2/package/package.json not in flight; writing +13829 silly cache afterAdd postcss-discard-overridden@0.1.1 +13830 verbose afterAdd /home/wso2/.npm/postcss-discard-overridden/0.1.1/package/package.json not in flight; writing +13831 silly cache afterAdd postcss-merge-longhand@2.0.2 +13832 verbose afterAdd /home/wso2/.npm/postcss-merge-longhand/2.0.2/package/package.json not in flight; writing +13833 silly cache afterAdd decamelize@1.2.0 +13834 verbose afterAdd /home/wso2/.npm/decamelize/1.2.0/package/package.json not in flight; writing +13835 silly cache afterAdd postcss-minify-font-values@1.0.5 +13836 verbose afterAdd /home/wso2/.npm/postcss-minify-font-values/1.0.5/package/package.json not in flight; writing +13837 silly cache afterAdd has@1.0.1 +13838 verbose afterAdd /home/wso2/.npm/has/1.0.1/package/package.json not in flight; writing +13839 silly resolveWithNewModule postcss-minify-params@1.2.2 checking installable status +13840 silly cache add args [ 'postcss-minify-params@^1.0.4', null ] +13841 verbose cache add spec postcss-minify-params@^1.0.4 +13842 silly cache add parsed spec Result { +13842 silly cache add raw: 'postcss-minify-params@^1.0.4', +13842 silly cache add scope: null, +13842 silly cache add name: 'postcss-minify-params', +13842 silly cache add rawSpec: '^1.0.4', +13842 silly cache add spec: '>=1.0.4 <2.0.0', +13842 silly cache add type: 'range' } +13843 silly addNamed postcss-minify-params@>=1.0.4 <2.0.0 +13844 verbose addNamed ">=1.0.4 <2.0.0" is a valid semver range for postcss-minify-params +13845 silly addNameRange { name: 'postcss-minify-params', +13845 silly addNameRange range: '>=1.0.4 <2.0.0', +13845 silly addNameRange hasData: false } +13846 silly mapToRegistry name postcss-minify-params +13847 silly mapToRegistry using default registry +13848 silly mapToRegistry registry https://registry.npmjs.org/ +13849 silly mapToRegistry uri https://registry.npmjs.org/postcss-minify-params +13850 verbose addNameRange registry:https://registry.npmjs.org/postcss-minify-params not in flight; fetching +13851 silly resolveWithNewModule postcss-minify-gradients@1.0.5 checking installable status +13852 silly cache add args [ 'postcss-minify-gradients@^1.0.1', null ] +13853 verbose cache add spec postcss-minify-gradients@^1.0.1 +13854 silly cache add parsed spec Result { +13854 silly cache add raw: 'postcss-minify-gradients@^1.0.1', +13854 silly cache add scope: null, +13854 silly cache add name: 'postcss-minify-gradients', +13854 silly cache add rawSpec: '^1.0.1', +13854 silly cache add spec: '>=1.0.1 <2.0.0', +13854 silly cache add type: 'range' } +13855 silly addNamed postcss-minify-gradients@>=1.0.1 <2.0.0 +13856 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for postcss-minify-gradients +13857 silly addNameRange { name: 'postcss-minify-gradients', +13857 silly addNameRange range: '>=1.0.1 <2.0.0', +13857 silly addNameRange hasData: false } +13858 silly mapToRegistry name postcss-minify-gradients +13859 silly mapToRegistry using default registry +13860 silly mapToRegistry registry https://registry.npmjs.org/ +13861 silly mapToRegistry uri https://registry.npmjs.org/postcss-minify-gradients +13862 verbose addNameRange registry:https://registry.npmjs.org/postcss-minify-gradients not in flight; fetching +13863 silly cache afterAdd postcss-calc@5.3.1 +13864 verbose afterAdd /home/wso2/.npm/postcss-calc/5.3.1/package/package.json not in flight; writing +13865 verbose afterAdd /home/wso2/.npm/defined/1.0.0/package/package.json written +13866 verbose afterAdd /home/wso2/.npm/postcss-colormin/2.2.2/package/package.json written +13867 verbose afterAdd /home/wso2/.npm/postcss-convert-values/2.6.1/package/package.json written +13868 verbose afterAdd /home/wso2/.npm/postcss-discard-comments/2.0.4/package/package.json written +13869 verbose afterAdd /home/wso2/.npm/postcss-filter-plugins/2.0.2/package/package.json written +13870 verbose afterAdd /home/wso2/.npm/postcss-discard-unused/2.2.3/package/package.json written +13871 verbose afterAdd /home/wso2/.npm/postcss-merge-idents/2.1.7/package/package.json written +13872 verbose afterAdd /home/wso2/.npm/postcss-discard-empty/2.1.0/package/package.json written +13873 verbose afterAdd /home/wso2/.npm/postcss-merge-rules/2.1.2/package/package.json written +13874 silly resolveWithNewModule postcss-minify-selectors@2.1.1 checking installable status +13875 silly cache add args [ 'postcss-minify-selectors@^2.0.4', null ] +13876 verbose cache add spec postcss-minify-selectors@^2.0.4 +13877 silly cache add parsed spec Result { +13877 silly cache add raw: 'postcss-minify-selectors@^2.0.4', +13877 silly cache add scope: null, +13877 silly cache add name: 'postcss-minify-selectors', +13877 silly cache add rawSpec: '^2.0.4', +13877 silly cache add spec: '>=2.0.4 <3.0.0', +13877 silly cache add type: 'range' } +13878 silly addNamed postcss-minify-selectors@>=2.0.4 <3.0.0 +13879 verbose addNamed ">=2.0.4 <3.0.0" is a valid semver range for postcss-minify-selectors +13880 silly addNameRange { name: 'postcss-minify-selectors', +13880 silly addNameRange range: '>=2.0.4 <3.0.0', +13880 silly addNameRange hasData: false } +13881 silly mapToRegistry name postcss-minify-selectors +13882 silly mapToRegistry using default registry +13883 silly mapToRegistry registry https://registry.npmjs.org/ +13884 silly mapToRegistry uri https://registry.npmjs.org/postcss-minify-selectors +13885 verbose addNameRange registry:https://registry.npmjs.org/postcss-minify-selectors not in flight; fetching +13886 verbose afterAdd /home/wso2/.npm/postcss-discard-overridden/0.1.1/package/package.json written +13887 verbose afterAdd /home/wso2/.npm/postcss-merge-longhand/2.0.2/package/package.json written +13888 verbose afterAdd /home/wso2/.npm/decamelize/1.2.0/package/package.json written +13889 verbose afterAdd /home/wso2/.npm/postcss-minify-font-values/1.0.5/package/package.json written +13890 verbose afterAdd /home/wso2/.npm/has/1.0.1/package/package.json written +13891 verbose get https://registry.npmjs.org/postcss-minify-params not expired, no request +13892 silly addNameRange number 2 { name: 'postcss-minify-params', +13892 silly addNameRange range: '>=1.0.4 <2.0.0', +13892 silly addNameRange hasData: true } +13893 silly addNameRange versions [ 'postcss-minify-params', +13893 silly addNameRange [ '1.0.0', +13893 silly addNameRange '1.0.1', +13893 silly addNameRange '1.0.2', +13893 silly addNameRange '1.0.3', +13893 silly addNameRange '1.0.4', +13893 silly addNameRange '1.0.5', +13893 silly addNameRange '1.1.0', +13893 silly addNameRange '1.2.0', +13893 silly addNameRange '1.2.1', +13893 silly addNameRange '1.2.2', +13893 silly addNameRange '4.0.0-rc.0', +13893 silly addNameRange '4.0.0-rc.1', +13893 silly addNameRange '4.0.0-rc.2' ] ] +13894 silly addNamed postcss-minify-params@1.2.2 +13895 verbose addNamed "1.2.2" is a plain semver version for postcss-minify-params +13896 verbose get https://registry.npmjs.org/postcss-minify-gradients not expired, no request +13897 silly addNameRange number 2 { name: 'postcss-minify-gradients', +13897 silly addNameRange range: '>=1.0.1 <2.0.0', +13897 silly addNameRange hasData: true } +13898 silly addNameRange versions [ 'postcss-minify-gradients', +13898 silly addNameRange [ '1.0.0', +13898 silly addNameRange '1.0.1', +13898 silly addNameRange '1.0.2', +13898 silly addNameRange '1.0.3', +13898 silly addNameRange '1.0.4', +13898 silly addNameRange '1.0.5', +13898 silly addNameRange '4.0.0-rc.0', +13898 silly addNameRange '4.0.0-rc.2' ] ] +13899 silly addNamed postcss-minify-gradients@1.0.5 +13900 verbose addNamed "1.0.5" is a plain semver version for postcss-minify-gradients +13901 verbose afterAdd /home/wso2/.npm/postcss-calc/5.3.1/package/package.json written +13902 verbose get https://registry.npmjs.org/postcss-minify-selectors not expired, no request +13903 silly addNameRange number 2 { name: 'postcss-minify-selectors', +13903 silly addNameRange range: '>=2.0.4 <3.0.0', +13903 silly addNameRange hasData: true } +13904 silly addNameRange versions [ 'postcss-minify-selectors', +13904 silly addNameRange [ '1.0.0', +13904 silly addNameRange '1.1.0', +13904 silly addNameRange '1.2.0', +13904 silly addNameRange '1.2.1', +13904 silly addNameRange '1.3.0', +13904 silly addNameRange '1.3.1', +13904 silly addNameRange '1.4.0', +13904 silly addNameRange '1.4.1', +13904 silly addNameRange '1.4.2', +13904 silly addNameRange '1.4.3', +13904 silly addNameRange '1.4.4', +13904 silly addNameRange '1.4.5', +13904 silly addNameRange '1.4.6', +13904 silly addNameRange '1.4.7', +13904 silly addNameRange '1.5.0', +13904 silly addNameRange '2.0.0', +13904 silly addNameRange '2.0.1', +13904 silly addNameRange '2.0.2', +13904 silly addNameRange '2.0.3', +13904 silly addNameRange '2.0.4', +13904 silly addNameRange '2.0.5', +13904 silly addNameRange '2.0.6', +13904 silly addNameRange '2.0.7', +13904 silly addNameRange '2.1.0', +13904 silly addNameRange '2.1.1', +13904 silly addNameRange '4.0.0-rc.0', +13904 silly addNameRange '4.0.0-rc.2' ] ] +13905 silly addNamed postcss-minify-selectors@2.1.1 +13906 verbose addNamed "2.1.1" is a plain semver version for postcss-minify-selectors +13907 http 304 https://registry.npmjs.org/postcss-normalize-charset +13908 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13908 verbose headers via: '1.1 varnish', +13908 verbose headers 'cache-control': 'max-age=300', +13908 verbose headers etag: 'W/"5987a8fe-20e5"', +13908 verbose headers age: '149', +13908 verbose headers connection: 'keep-alive', +13908 verbose headers 'x-served-by': 'cache-sin18020-SIN', +13908 verbose headers 'x-cache': 'HIT', +13908 verbose headers 'x-cache-hits': '2', +13908 verbose headers 'x-timer': 'S1506936885.837514,VS0,VE0', +13908 verbose headers vary: 'Accept-Encoding, Accept' } +13909 silly get cb [ 304, +13909 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13909 silly get via: '1.1 varnish', +13909 silly get 'cache-control': 'max-age=300', +13909 silly get etag: 'W/"5987a8fe-20e5"', +13909 silly get age: '149', +13909 silly get connection: 'keep-alive', +13909 silly get 'x-served-by': 'cache-sin18020-SIN', +13909 silly get 'x-cache': 'HIT', +13909 silly get 'x-cache-hits': '2', +13909 silly get 'x-timer': 'S1506936885.837514,VS0,VE0', +13909 silly get vary: 'Accept-Encoding, Accept' } ] +13910 verbose etag https://registry.npmjs.org/postcss-normalize-charset from cache +13911 verbose get saving postcss-normalize-charset to /home/wso2/.npm/registry.npmjs.org/postcss-normalize-charset/.cache.json +13912 http 304 https://registry.npmjs.org/postcss-normalize-url +13913 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13913 verbose headers via: '1.1 varnish', +13913 verbose headers 'cache-control': 'max-age=300', +13913 verbose headers etag: 'W/"5987a9cd-9db2"', +13913 verbose headers age: '72', +13913 verbose headers connection: 'keep-alive', +13913 verbose headers 'x-served-by': 'cache-sin18032-SIN', +13913 verbose headers 'x-cache': 'HIT', +13913 verbose headers 'x-cache-hits': '26', +13913 verbose headers 'x-timer': 'S1506936885.846322,VS0,VE0', +13913 verbose headers vary: 'Accept-Encoding, Accept' } +13914 silly get cb [ 304, +13914 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13914 silly get via: '1.1 varnish', +13914 silly get 'cache-control': 'max-age=300', +13914 silly get etag: 'W/"5987a9cd-9db2"', +13914 silly get age: '72', +13914 silly get connection: 'keep-alive', +13914 silly get 'x-served-by': 'cache-sin18032-SIN', +13914 silly get 'x-cache': 'HIT', +13914 silly get 'x-cache-hits': '26', +13914 silly get 'x-timer': 'S1506936885.846322,VS0,VE0', +13914 silly get vary: 'Accept-Encoding, Accept' } ] +13915 verbose etag https://registry.npmjs.org/postcss-normalize-url from cache +13916 verbose get saving postcss-normalize-url to /home/wso2/.npm/registry.npmjs.org/postcss-normalize-url/.cache.json +13917 http 304 https://registry.npmjs.org/postcss-ordered-values +13918 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13918 verbose headers via: '1.1 varnish', +13918 verbose headers 'cache-control': 'max-age=300', +13918 verbose headers etag: 'W/"5987aa08-6770"', +13918 verbose headers age: '72', +13918 verbose headers connection: 'keep-alive', +13918 verbose headers 'x-served-by': 'cache-sin18021-SIN', +13918 verbose headers 'x-cache': 'HIT', +13918 verbose headers 'x-cache-hits': '1', +13918 verbose headers 'x-timer': 'S1506936885.847975,VS0,VE0', +13918 verbose headers vary: 'Accept-Encoding, Accept' } +13919 silly get cb [ 304, +13919 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13919 silly get via: '1.1 varnish', +13919 silly get 'cache-control': 'max-age=300', +13919 silly get etag: 'W/"5987aa08-6770"', +13919 silly get age: '72', +13919 silly get connection: 'keep-alive', +13919 silly get 'x-served-by': 'cache-sin18021-SIN', +13919 silly get 'x-cache': 'HIT', +13919 silly get 'x-cache-hits': '1', +13919 silly get 'x-timer': 'S1506936885.847975,VS0,VE0', +13919 silly get vary: 'Accept-Encoding, Accept' } ] +13920 verbose etag https://registry.npmjs.org/postcss-ordered-values from cache +13921 verbose get saving postcss-ordered-values to /home/wso2/.npm/registry.npmjs.org/postcss-ordered-values/.cache.json +13922 http 304 https://registry.npmjs.org/postcss-reduce-idents +13923 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13923 verbose headers via: '1.1 varnish', +13923 verbose headers 'cache-control': 'max-age=300', +13923 verbose headers etag: 'W/"5987aa29-605c"', +13923 verbose headers age: '72', +13923 verbose headers connection: 'keep-alive', +13923 verbose headers 'x-served-by': 'cache-sin18030-SIN', +13923 verbose headers 'x-cache': 'HIT', +13923 verbose headers 'x-cache-hits': '1', +13923 verbose headers 'x-timer': 'S1506936885.846463,VS0,VE3', +13923 verbose headers vary: 'Accept-Encoding, Accept' } +13924 silly get cb [ 304, +13924 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13924 silly get via: '1.1 varnish', +13924 silly get 'cache-control': 'max-age=300', +13924 silly get etag: 'W/"5987aa29-605c"', +13924 silly get age: '72', +13924 silly get connection: 'keep-alive', +13924 silly get 'x-served-by': 'cache-sin18030-SIN', +13924 silly get 'x-cache': 'HIT', +13924 silly get 'x-cache-hits': '1', +13924 silly get 'x-timer': 'S1506936885.846463,VS0,VE3', +13924 silly get vary: 'Accept-Encoding, Accept' } ] +13925 verbose etag https://registry.npmjs.org/postcss-reduce-idents from cache +13926 verbose get saving postcss-reduce-idents to /home/wso2/.npm/registry.npmjs.org/postcss-reduce-idents/.cache.json +13927 http 304 https://registry.npmjs.org/postcss-reduce-initial +13928 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13928 verbose headers via: '1.1 varnish', +13928 verbose headers 'cache-control': 'max-age=300', +13928 verbose headers etag: 'W/"5987aa47-2684"', +13928 verbose headers age: '115', +13928 verbose headers connection: 'keep-alive', +13928 verbose headers 'x-served-by': 'cache-sin18021-SIN', +13928 verbose headers 'x-cache': 'HIT', +13928 verbose headers 'x-cache-hits': '5', +13928 verbose headers 'x-timer': 'S1506936885.858212,VS0,VE0', +13928 verbose headers vary: 'Accept-Encoding, Accept' } +13929 silly get cb [ 304, +13929 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +13929 silly get via: '1.1 varnish', +13929 silly get 'cache-control': 'max-age=300', +13929 silly get etag: 'W/"5987aa47-2684"', +13929 silly get age: '115', +13929 silly get connection: 'keep-alive', +13929 silly get 'x-served-by': 'cache-sin18021-SIN', +13929 silly get 'x-cache': 'HIT', +13929 silly get 'x-cache-hits': '5', +13929 silly get 'x-timer': 'S1506936885.858212,VS0,VE0', +13929 silly get vary: 'Accept-Encoding, Accept' } ] +13930 verbose etag https://registry.npmjs.org/postcss-reduce-initial from cache +13931 verbose get saving postcss-reduce-initial to /home/wso2/.npm/registry.npmjs.org/postcss-reduce-initial/.cache.json +13932 silly cache afterAdd postcss-minify-params@1.2.2 +13933 verbose afterAdd /home/wso2/.npm/postcss-minify-params/1.2.2/package/package.json not in flight; writing +13934 silly cache afterAdd postcss-minify-gradients@1.0.5 +13935 verbose afterAdd /home/wso2/.npm/postcss-minify-gradients/1.0.5/package/package.json not in flight; writing +13936 silly cache afterAdd postcss-minify-selectors@2.1.1 +13937 verbose afterAdd /home/wso2/.npm/postcss-minify-selectors/2.1.1/package/package.json not in flight; writing +13938 silly resolveWithNewModule postcss-normalize-charset@1.1.1 checking installable status +13939 silly cache add args [ 'postcss-normalize-charset@^1.1.0', null ] +13940 verbose cache add spec postcss-normalize-charset@^1.1.0 +13941 silly cache add parsed spec Result { +13941 silly cache add raw: 'postcss-normalize-charset@^1.1.0', +13941 silly cache add scope: null, +13941 silly cache add name: 'postcss-normalize-charset', +13941 silly cache add rawSpec: '^1.1.0', +13941 silly cache add spec: '>=1.1.0 <2.0.0', +13941 silly cache add type: 'range' } +13942 silly addNamed postcss-normalize-charset@>=1.1.0 <2.0.0 +13943 verbose addNamed ">=1.1.0 <2.0.0" is a valid semver range for postcss-normalize-charset +13944 silly addNameRange { name: 'postcss-normalize-charset', +13944 silly addNameRange range: '>=1.1.0 <2.0.0', +13944 silly addNameRange hasData: false } +13945 silly mapToRegistry name postcss-normalize-charset +13946 silly mapToRegistry using default registry +13947 silly mapToRegistry registry https://registry.npmjs.org/ +13948 silly mapToRegistry uri https://registry.npmjs.org/postcss-normalize-charset +13949 verbose addNameRange registry:https://registry.npmjs.org/postcss-normalize-charset not in flight; fetching +13950 verbose afterAdd /home/wso2/.npm/postcss-minify-params/1.2.2/package/package.json written +13951 verbose afterAdd /home/wso2/.npm/postcss-minify-gradients/1.0.5/package/package.json written +13952 silly resolveWithNewModule postcss-normalize-url@3.0.8 checking installable status +13953 silly cache add args [ 'postcss-normalize-url@^3.0.7', null ] +13954 verbose cache add spec postcss-normalize-url@^3.0.7 +13955 silly cache add parsed spec Result { +13955 silly cache add raw: 'postcss-normalize-url@^3.0.7', +13955 silly cache add scope: null, +13955 silly cache add name: 'postcss-normalize-url', +13955 silly cache add rawSpec: '^3.0.7', +13955 silly cache add spec: '>=3.0.7 <4.0.0', +13955 silly cache add type: 'range' } +13956 silly addNamed postcss-normalize-url@>=3.0.7 <4.0.0 +13957 verbose addNamed ">=3.0.7 <4.0.0" is a valid semver range for postcss-normalize-url +13958 silly addNameRange { name: 'postcss-normalize-url', +13958 silly addNameRange range: '>=3.0.7 <4.0.0', +13958 silly addNameRange hasData: false } +13959 silly mapToRegistry name postcss-normalize-url +13960 silly mapToRegistry using default registry +13961 silly mapToRegistry registry https://registry.npmjs.org/ +13962 silly mapToRegistry uri https://registry.npmjs.org/postcss-normalize-url +13963 verbose addNameRange registry:https://registry.npmjs.org/postcss-normalize-url not in flight; fetching +13964 silly resolveWithNewModule postcss-ordered-values@2.2.3 checking installable status +13965 silly cache add args [ 'postcss-ordered-values@^2.1.0', null ] +13966 verbose cache add spec postcss-ordered-values@^2.1.0 +13967 silly cache add parsed spec Result { +13967 silly cache add raw: 'postcss-ordered-values@^2.1.0', +13967 silly cache add scope: null, +13967 silly cache add name: 'postcss-ordered-values', +13967 silly cache add rawSpec: '^2.1.0', +13967 silly cache add spec: '>=2.1.0 <3.0.0', +13967 silly cache add type: 'range' } +13968 silly addNamed postcss-ordered-values@>=2.1.0 <3.0.0 +13969 verbose addNamed ">=2.1.0 <3.0.0" is a valid semver range for postcss-ordered-values +13970 silly addNameRange { name: 'postcss-ordered-values', +13970 silly addNameRange range: '>=2.1.0 <3.0.0', +13970 silly addNameRange hasData: false } +13971 silly mapToRegistry name postcss-ordered-values +13972 silly mapToRegistry using default registry +13973 silly mapToRegistry registry https://registry.npmjs.org/ +13974 silly mapToRegistry uri https://registry.npmjs.org/postcss-ordered-values +13975 verbose addNameRange registry:https://registry.npmjs.org/postcss-ordered-values not in flight; fetching +13976 silly resolveWithNewModule postcss-reduce-initial@1.0.1 checking installable status +13977 silly cache add args [ 'postcss-reduce-initial@^1.0.0', null ] +13978 verbose cache add spec postcss-reduce-initial@^1.0.0 +13979 silly cache add parsed spec Result { +13979 silly cache add raw: 'postcss-reduce-initial@^1.0.0', +13979 silly cache add scope: null, +13979 silly cache add name: 'postcss-reduce-initial', +13979 silly cache add rawSpec: '^1.0.0', +13979 silly cache add spec: '>=1.0.0 <2.0.0', +13979 silly cache add type: 'range' } +13980 silly addNamed postcss-reduce-initial@>=1.0.0 <2.0.0 +13981 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for postcss-reduce-initial +13982 silly addNameRange { name: 'postcss-reduce-initial', +13982 silly addNameRange range: '>=1.0.0 <2.0.0', +13982 silly addNameRange hasData: false } +13983 silly mapToRegistry name postcss-reduce-initial +13984 silly mapToRegistry using default registry +13985 silly mapToRegistry registry https://registry.npmjs.org/ +13986 silly mapToRegistry uri https://registry.npmjs.org/postcss-reduce-initial +13987 verbose addNameRange registry:https://registry.npmjs.org/postcss-reduce-initial not in flight; fetching +13988 silly resolveWithNewModule postcss-reduce-idents@2.4.0 checking installable status +13989 silly cache add args [ 'postcss-reduce-idents@^2.2.2', null ] +13990 verbose cache add spec postcss-reduce-idents@^2.2.2 +13991 silly cache add parsed spec Result { +13991 silly cache add raw: 'postcss-reduce-idents@^2.2.2', +13991 silly cache add scope: null, +13991 silly cache add name: 'postcss-reduce-idents', +13991 silly cache add rawSpec: '^2.2.2', +13991 silly cache add spec: '>=2.2.2 <3.0.0', +13991 silly cache add type: 'range' } +13992 silly addNamed postcss-reduce-idents@>=2.2.2 <3.0.0 +13993 verbose addNamed ">=2.2.2 <3.0.0" is a valid semver range for postcss-reduce-idents +13994 silly addNameRange { name: 'postcss-reduce-idents', +13994 silly addNameRange range: '>=2.2.2 <3.0.0', +13994 silly addNameRange hasData: false } +13995 silly mapToRegistry name postcss-reduce-idents +13996 silly mapToRegistry using default registry +13997 silly mapToRegistry registry https://registry.npmjs.org/ +13998 silly mapToRegistry uri https://registry.npmjs.org/postcss-reduce-idents +13999 verbose addNameRange registry:https://registry.npmjs.org/postcss-reduce-idents not in flight; fetching +14000 verbose afterAdd /home/wso2/.npm/postcss-minify-selectors/2.1.1/package/package.json written +14001 verbose get https://registry.npmjs.org/postcss-normalize-charset not expired, no request +14002 silly addNameRange number 2 { name: 'postcss-normalize-charset', +14002 silly addNameRange range: '>=1.1.0 <2.0.0', +14002 silly addNameRange hasData: true } +14003 silly addNameRange versions [ 'postcss-normalize-charset', +14003 silly addNameRange [ '1.0.0', '1.1.0', '1.1.1', '4.0.0-rc.0', '4.0.0-rc.2' ] ] +14004 silly addNamed postcss-normalize-charset@1.1.1 +14005 verbose addNamed "1.1.1" is a plain semver version for postcss-normalize-charset +14006 verbose get https://registry.npmjs.org/postcss-normalize-url not expired, no request +14007 silly addNameRange number 2 { name: 'postcss-normalize-url', +14007 silly addNameRange range: '>=3.0.7 <4.0.0', +14007 silly addNameRange hasData: true } +14008 silly addNameRange versions [ 'postcss-normalize-url', +14008 silly addNameRange [ '1.0.0', +14008 silly addNameRange '1.0.1', +14008 silly addNameRange '1.0.2', +14008 silly addNameRange '1.1.0', +14008 silly addNameRange '1.2.0', +14008 silly addNameRange '1.2.1', +14008 silly addNameRange '2.0.0', +14008 silly addNameRange '2.0.1', +14008 silly addNameRange '2.0.2', +14008 silly addNameRange '2.0.3', +14008 silly addNameRange '2.1.0', +14008 silly addNameRange '2.1.1', +14008 silly addNameRange '2.1.2', +14008 silly addNameRange '2.1.3', +14008 silly addNameRange '3.0.0', +14008 silly addNameRange '3.0.1', +14008 silly addNameRange '3.0.2', +14008 silly addNameRange '3.0.3', +14008 silly addNameRange '3.0.4', +14008 silly addNameRange '3.0.5', +14008 silly addNameRange '3.0.6', +14008 silly addNameRange '3.0.7', +14008 silly addNameRange '3.0.8', +14008 silly addNameRange '4.0.0-rc.0', +14008 silly addNameRange '4.0.0-rc.2' ] ] +14009 silly addNamed postcss-normalize-url@3.0.8 +14010 verbose addNamed "3.0.8" is a plain semver version for postcss-normalize-url +14011 verbose get https://registry.npmjs.org/postcss-reduce-idents not expired, no request +14012 silly addNameRange number 2 { name: 'postcss-reduce-idents', +14012 silly addNameRange range: '>=2.2.2 <3.0.0', +14012 silly addNameRange hasData: true } +14013 silly addNameRange versions [ 'postcss-reduce-idents', +14013 silly addNameRange [ '1.0.0', +14013 silly addNameRange '1.0.1', +14013 silly addNameRange '1.0.2', +14013 silly addNameRange '1.0.3', +14013 silly addNameRange '2.0.0', +14013 silly addNameRange '2.1.0', +14013 silly addNameRange '2.2.0', +14013 silly addNameRange '2.2.1', +14013 silly addNameRange '2.2.2', +14013 silly addNameRange '2.3.0', +14013 silly addNameRange '2.3.1', +14013 silly addNameRange '2.4.0', +14013 silly addNameRange '4.0.0-rc.0', +14013 silly addNameRange '4.0.0-rc.2' ] ] +14014 silly addNamed postcss-reduce-idents@2.4.0 +14015 verbose addNamed "2.4.0" is a plain semver version for postcss-reduce-idents +14016 verbose get https://registry.npmjs.org/postcss-reduce-initial not expired, no request +14017 silly addNameRange number 2 { name: 'postcss-reduce-initial', +14017 silly addNameRange range: '>=1.0.0 <2.0.0', +14017 silly addNameRange hasData: true } +14018 silly addNameRange versions [ 'postcss-reduce-initial', +14018 silly addNameRange [ '1.0.0', '1.0.1', '4.0.0-rc.0', '4.0.0-rc.2' ] ] +14019 silly addNamed postcss-reduce-initial@1.0.1 +14020 verbose addNamed "1.0.1" is a plain semver version for postcss-reduce-initial +14021 verbose get https://registry.npmjs.org/postcss-ordered-values not expired, no request +14022 silly addNameRange number 2 { name: 'postcss-ordered-values', +14022 silly addNameRange range: '>=2.1.0 <3.0.0', +14022 silly addNameRange hasData: true } +14023 silly addNameRange versions [ 'postcss-ordered-values', +14023 silly addNameRange [ '1.0.0', +14023 silly addNameRange '1.0.1', +14023 silly addNameRange '1.1.0', +14023 silly addNameRange '1.1.1', +14023 silly addNameRange '2.0.0', +14023 silly addNameRange '2.0.1', +14023 silly addNameRange '2.0.2', +14023 silly addNameRange '2.1.0', +14023 silly addNameRange '2.1.1', +14023 silly addNameRange '2.2.0', +14023 silly addNameRange '2.2.1', +14023 silly addNameRange '2.2.2', +14023 silly addNameRange '2.2.3', +14023 silly addNameRange '4.0.0-rc.0', +14023 silly addNameRange '4.0.0-rc.2' ] ] +14024 silly addNamed postcss-ordered-values@2.2.3 +14025 verbose addNamed "2.2.3" is a plain semver version for postcss-ordered-values +14026 silly cache afterAdd postcss-normalize-charset@1.1.1 +14027 verbose afterAdd /home/wso2/.npm/postcss-normalize-charset/1.1.1/package/package.json not in flight; writing +14028 silly cache afterAdd postcss-normalize-url@3.0.8 +14029 verbose afterAdd /home/wso2/.npm/postcss-normalize-url/3.0.8/package/package.json not in flight; writing +14030 silly cache afterAdd postcss-reduce-idents@2.4.0 +14031 verbose afterAdd /home/wso2/.npm/postcss-reduce-idents/2.4.0/package/package.json not in flight; writing +14032 silly cache afterAdd postcss-reduce-initial@1.0.1 +14033 verbose afterAdd /home/wso2/.npm/postcss-reduce-initial/1.0.1/package/package.json not in flight; writing +14034 silly cache afterAdd postcss-ordered-values@2.2.3 +14035 verbose afterAdd /home/wso2/.npm/postcss-ordered-values/2.2.3/package/package.json not in flight; writing +14036 verbose afterAdd /home/wso2/.npm/postcss-normalize-charset/1.1.1/package/package.json written +14037 verbose afterAdd /home/wso2/.npm/postcss-normalize-url/3.0.8/package/package.json written +14038 verbose afterAdd /home/wso2/.npm/postcss-reduce-idents/2.4.0/package/package.json written +14039 verbose afterAdd /home/wso2/.npm/postcss-reduce-initial/1.0.1/package/package.json written +14040 verbose afterAdd /home/wso2/.npm/postcss-ordered-values/2.2.3/package/package.json written +14041 http 304 https://registry.npmjs.org/postcss-unique-selectors +14042 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +14042 verbose headers via: '1.1 varnish', +14042 verbose headers 'cache-control': 'max-age=300', +14042 verbose headers etag: 'W/"5987aaa3-2da4"', +14042 verbose headers age: '115', +14042 verbose headers connection: 'keep-alive', +14042 verbose headers 'x-served-by': 'cache-sin18021-SIN', +14042 verbose headers 'x-cache': 'HIT', +14042 verbose headers 'x-cache-hits': '4', +14042 verbose headers 'x-timer': 'S1506936885.915313,VS0,VE0', +14042 verbose headers vary: 'Accept-Encoding, Accept' } +14043 silly get cb [ 304, +14043 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +14043 silly get via: '1.1 varnish', +14043 silly get 'cache-control': 'max-age=300', +14043 silly get etag: 'W/"5987aaa3-2da4"', +14043 silly get age: '115', +14043 silly get connection: 'keep-alive', +14043 silly get 'x-served-by': 'cache-sin18021-SIN', +14043 silly get 'x-cache': 'HIT', +14043 silly get 'x-cache-hits': '4', +14043 silly get 'x-timer': 'S1506936885.915313,VS0,VE0', +14043 silly get vary: 'Accept-Encoding, Accept' } ] +14044 verbose etag https://registry.npmjs.org/postcss-unique-selectors from cache +14045 verbose get saving postcss-unique-selectors to /home/wso2/.npm/registry.npmjs.org/postcss-unique-selectors/.cache.json +14046 http 304 https://registry.npmjs.org/postcss-reduce-transforms +14047 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +14047 verbose headers via: '1.1 varnish', +14047 verbose headers 'cache-control': 'max-age=300', +14047 verbose headers etag: 'W/"5987aa64-2f57"', +14047 verbose headers age: '114', +14047 verbose headers connection: 'keep-alive', +14047 verbose headers 'x-served-by': 'cache-sin18023-SIN', +14047 verbose headers 'x-cache': 'HIT', +14047 verbose headers 'x-cache-hits': '3', +14047 verbose headers 'x-timer': 'S1506936885.921432,VS0,VE0', +14047 verbose headers vary: 'Accept-Encoding, Accept' } +14048 silly get cb [ 304, +14048 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +14048 silly get via: '1.1 varnish', +14048 silly get 'cache-control': 'max-age=300', +14048 silly get etag: 'W/"5987aa64-2f57"', +14048 silly get age: '114', +14048 silly get connection: 'keep-alive', +14048 silly get 'x-served-by': 'cache-sin18023-SIN', +14048 silly get 'x-cache': 'HIT', +14048 silly get 'x-cache-hits': '3', +14048 silly get 'x-timer': 'S1506936885.921432,VS0,VE0', +14048 silly get vary: 'Accept-Encoding, Accept' } ] +14049 verbose etag https://registry.npmjs.org/postcss-reduce-transforms from cache +14050 verbose get saving postcss-reduce-transforms to /home/wso2/.npm/registry.npmjs.org/postcss-reduce-transforms/.cache.json +14051 silly resolveWithNewModule postcss-unique-selectors@2.0.2 checking installable status +14052 silly cache add args [ 'postcss-unique-selectors@^2.0.2', null ] +14053 verbose cache add spec postcss-unique-selectors@^2.0.2 +14054 silly cache add parsed spec Result { +14054 silly cache add raw: 'postcss-unique-selectors@^2.0.2', +14054 silly cache add scope: null, +14054 silly cache add name: 'postcss-unique-selectors', +14054 silly cache add rawSpec: '^2.0.2', +14054 silly cache add spec: '>=2.0.2 <3.0.0', +14054 silly cache add type: 'range' } +14055 silly addNamed postcss-unique-selectors@>=2.0.2 <3.0.0 +14056 verbose addNamed ">=2.0.2 <3.0.0" is a valid semver range for postcss-unique-selectors +14057 silly addNameRange { name: 'postcss-unique-selectors', +14057 silly addNameRange range: '>=2.0.2 <3.0.0', +14057 silly addNameRange hasData: false } +14058 silly mapToRegistry name postcss-unique-selectors +14059 silly mapToRegistry using default registry +14060 silly mapToRegistry registry https://registry.npmjs.org/ +14061 silly mapToRegistry uri https://registry.npmjs.org/postcss-unique-selectors +14062 verbose addNameRange registry:https://registry.npmjs.org/postcss-unique-selectors not in flight; fetching +14063 silly resolveWithNewModule postcss-reduce-transforms@1.0.4 checking installable status +14064 silly cache add args [ 'postcss-reduce-transforms@^1.0.3', null ] +14065 verbose cache add spec postcss-reduce-transforms@^1.0.3 +14066 silly cache add parsed spec Result { +14066 silly cache add raw: 'postcss-reduce-transforms@^1.0.3', +14066 silly cache add scope: null, +14066 silly cache add name: 'postcss-reduce-transforms', +14066 silly cache add rawSpec: '^1.0.3', +14066 silly cache add spec: '>=1.0.3 <2.0.0', +14066 silly cache add type: 'range' } +14067 silly addNamed postcss-reduce-transforms@>=1.0.3 <2.0.0 +14068 verbose addNamed ">=1.0.3 <2.0.0" is a valid semver range for postcss-reduce-transforms +14069 silly addNameRange { name: 'postcss-reduce-transforms', +14069 silly addNameRange range: '>=1.0.3 <2.0.0', +14069 silly addNameRange hasData: false } +14070 silly mapToRegistry name postcss-reduce-transforms +14071 silly mapToRegistry using default registry +14072 silly mapToRegistry registry https://registry.npmjs.org/ +14073 silly mapToRegistry uri https://registry.npmjs.org/postcss-reduce-transforms +14074 verbose addNameRange registry:https://registry.npmjs.org/postcss-reduce-transforms not in flight; fetching +14075 http 304 https://registry.npmjs.org/postcss-zindex +14076 verbose headers { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +14076 verbose headers via: '1.1 varnish', +14076 verbose headers 'cache-control': 'max-age=300', +14076 verbose headers etag: 'W/"5987aac8-5279"', +14076 verbose headers age: '149', +14076 verbose headers connection: 'keep-alive', +14076 verbose headers 'x-served-by': 'cache-sin18027-SIN', +14076 verbose headers 'x-cache': 'HIT', +14076 verbose headers 'x-cache-hits': '2', +14076 verbose headers 'x-timer': 'S1506936885.921528,VS0,VE0', +14076 verbose headers vary: 'Accept-Encoding, Accept' } +14077 silly get cb [ 304, +14077 silly get { date: 'Mon, 02 Oct 2017 09:34:44 GMT', +14077 silly get via: '1.1 varnish', +14077 silly get 'cache-control': 'max-age=300', +14077 silly get etag: 'W/"5987aac8-5279"', +14077 silly get age: '149', +14077 silly get connection: 'keep-alive', +14077 silly get 'x-served-by': 'cache-sin18027-SIN', +14077 silly get 'x-cache': 'HIT', +14077 silly get 'x-cache-hits': '2', +14077 silly get 'x-timer': 'S1506936885.921528,VS0,VE0', +14077 silly get vary: 'Accept-Encoding, Accept' } ] +14078 verbose etag https://registry.npmjs.org/postcss-zindex from cache +14079 verbose get saving postcss-zindex to /home/wso2/.npm/registry.npmjs.org/postcss-zindex/.cache.json +14080 verbose get https://registry.npmjs.org/postcss-unique-selectors not expired, no request +14081 silly addNameRange number 2 { name: 'postcss-unique-selectors', +14081 silly addNameRange range: '>=2.0.2 <3.0.0', +14081 silly addNameRange hasData: true } +14082 silly addNameRange versions [ 'postcss-unique-selectors', +14082 silly addNameRange [ '1.0.0', +14082 silly addNameRange '1.0.1', +14082 silly addNameRange '2.0.0', +14082 silly addNameRange '2.0.1', +14082 silly addNameRange '2.0.2', +14082 silly addNameRange '4.0.0-rc.0', +14082 silly addNameRange '4.0.0-rc.2' ] ] +14083 silly addNamed postcss-unique-selectors@2.0.2 +14084 verbose addNamed "2.0.2" is a plain semver version for postcss-unique-selectors +14085 verbose get https://registry.npmjs.org/postcss-reduce-transforms not expired, no request +14086 silly addNameRange number 2 { name: 'postcss-reduce-transforms', +14086 silly addNameRange range: '>=1.0.3 <2.0.0', +14086 silly addNameRange hasData: true } +14087 silly addNameRange versions [ 'postcss-reduce-transforms', +14087 silly addNameRange [ '1.0.0', +14087 silly addNameRange '1.0.1', +14087 silly addNameRange '1.0.2', +14087 silly addNameRange '1.0.3', +14087 silly addNameRange '1.0.4', +14087 silly addNameRange '4.0.0-rc.0', +14087 silly addNameRange '4.0.0-rc.2' ] ] +14088 silly addNamed postcss-reduce-transforms@1.0.4 +14089 verbose addNamed "1.0.4" is a plain semver version for postcss-reduce-transforms +14090 silly resolveWithNewModule postcss-zindex@2.2.0 checking installable status +14091 silly cache add args [ 'postcss-zindex@^2.0.1', null ] +14092 verbose cache add spec postcss-zindex@^2.0.1 +14093 silly cache add parsed spec Result { +14093 silly cache add raw: 'postcss-zindex@^2.0.1', +14093 silly cache add scope: null, +14093 silly cache add name: 'postcss-zindex', +14093 silly cache add rawSpec: '^2.0.1', +14093 silly cache add spec: '>=2.0.1 <3.0.0', +14093 silly cache add type: 'range' } +14094 silly addNamed postcss-zindex@>=2.0.1 <3.0.0 +14095 verbose addNamed ">=2.0.1 <3.0.0" is a valid semver range for postcss-zindex +14096 silly addNameRange { name: 'postcss-zindex', +14096 silly addNameRange range: '>=2.0.1 <3.0.0', +14096 silly addNameRange hasData: false } +14097 silly mapToRegistry name postcss-zindex +14098 silly mapToRegistry using default registry +14099 silly mapToRegistry registry https://registry.npmjs.org/ +14100 silly mapToRegistry uri https://registry.npmjs.org/postcss-zindex +14101 verbose addNameRange registry:https://registry.npmjs.org/postcss-zindex not in flight; fetching +14102 silly cache afterAdd postcss-unique-selectors@2.0.2 +14103 verbose afterAdd /home/wso2/.npm/postcss-unique-selectors/2.0.2/package/package.json not in flight; writing +14104 verbose get https://registry.npmjs.org/postcss-zindex not expired, no request +14105 silly addNameRange number 2 { name: 'postcss-zindex', +14105 silly addNameRange range: '>=2.0.1 <3.0.0', +14105 silly addNameRange hasData: true } +14106 silly addNameRange versions [ 'postcss-zindex', +14106 silly addNameRange [ '1.0.0', +14106 silly addNameRange '1.0.1', +14106 silly addNameRange '1.1.0', +14106 silly addNameRange '1.1.1', +14106 silly addNameRange '1.1.2', +14106 silly addNameRange '1.1.3', +14106 silly addNameRange '2.0.0', +14106 silly addNameRange '2.0.1', +14106 silly addNameRange '2.1.0', +14106 silly addNameRange '2.1.1', +14106 silly addNameRange '2.2.0', +14106 silly addNameRange '4.0.0-rc.0', +14106 silly addNameRange '4.0.0-rc.2' ] ] +14107 silly addNamed postcss-zindex@2.2.0 +14108 verbose addNamed "2.2.0" is a plain semver version for postcss-zindex +14109 silly cache afterAdd postcss-reduce-transforms@1.0.4 +14110 verbose afterAdd /home/wso2/.npm/postcss-reduce-transforms/1.0.4/package/package.json not in flight; writing +14111 verbose afterAdd /home/wso2/.npm/postcss-unique-selectors/2.0.2/package/package.json written +14112 silly cache afterAdd postcss-zindex@2.2.0 +14113 verbose afterAdd /home/wso2/.npm/postcss-zindex/2.2.0/package/package.json not in flight; writing +14114 verbose afterAdd /home/wso2/.npm/postcss-reduce-transforms/1.0.4/package/package.json written +14115 verbose afterAdd /home/wso2/.npm/postcss-zindex/2.2.0/package/package.json written +14116 verbose stack Error: read ECONNRESET +14116 verbose stack at exports._errnoException (util.js:870:11) +14116 verbose stack at TLSWrap.onread (net.js:544:26) +14117 verbose cwd /home/wso2/projects/wso2/iot/chathura/device-mgt/carbon-device-mgt/components/application-mgt/org.wso2.carbon.device.application.mgt.publisher.ui/src/main/resources/publisher +14118 error Linux 4.10.0-35-generic +14119 error argv "/usr/bin/nodejs" "/usr/bin/npm" "install" +14120 error node v4.2.6 +14121 error npm v3.5.2 +14122 error code ECONNRESET +14123 error errno ECONNRESET +14124 error syscall read +14125 error network read ECONNRESET +14126 error network This is most likely not a problem with npm itself +14126 error network and is related to network connectivity. +14126 error network In most cases you are behind a proxy or have bad network settings. +14126 error network +14126 error network If you are behind a proxy, please make sure that the +14126 error network 'proxy' config is set properly. See: 'npm help config' +14127 verbose exit [ 1, true ] diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/app/mgt/DeviceApplicationMapping.java b/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/app/mgt/DeviceApplicationMapping.java new file mode 100644 index 0000000000..26f65398d0 --- /dev/null +++ b/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/app/mgt/DeviceApplicationMapping.java @@ -0,0 +1,61 @@ +/* + * Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. + * + * WSO2 Inc. licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. + * you may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.wso2.carbon.device.mgt.common.app.mgt; + +public class DeviceApplicationMapping { + + private String deviceIdentifier; + + private String applicationUUID; + + private String versionName; + + private boolean installed; + + public String getDeviceIdentifier() { + return deviceIdentifier; + } + + public void setDeviceIdentifier(String deviceIdentifier) { + this.deviceIdentifier = deviceIdentifier; + } + + public String getApplicationUUID() { + return applicationUUID; + } + + public void setApplicationUUID(String applicationUUID) { + this.applicationUUID = applicationUUID; + } + + public String getVersionName() { + return versionName; + } + + public void setVersionName(String versionName) { + this.versionName = versionName; + } + + public boolean isInstalled() { + return installed; + } + + public void setInstalled(boolean installed) { + this.installed = installed; + } +} diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/app/mgt/ApplicationManagerProviderServiceImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/app/mgt/ApplicationManagerProviderServiceImpl.java index bf078a7b56..d79bd1f749 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/app/mgt/ApplicationManagerProviderServiceImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/app/mgt/ApplicationManagerProviderServiceImpl.java @@ -28,6 +28,7 @@ import org.wso2.carbon.device.mgt.common.InvalidDeviceException; import org.wso2.carbon.device.mgt.common.TransactionManagementException; import org.wso2.carbon.device.mgt.common.app.mgt.Application; import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManagementException; +import org.wso2.carbon.device.mgt.common.app.mgt.DeviceApplicationMapping; import org.wso2.carbon.device.mgt.common.operation.mgt.Activity; import org.wso2.carbon.device.mgt.common.operation.mgt.Operation; import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementException; @@ -192,10 +193,85 @@ public class ApplicationManagerProviderServiceImpl implements ApplicationManagem } } + private boolean contains(DeviceApplicationMapping deviceApp, List installedApps) { + boolean installed = false; + for (Application app : installedApps) { + if (app.getApplicationIdentifier().equals(deviceApp.getApplicationUUID()) && app.getVersion().equals(deviceApp.getVersionName())) { + installed = true; + break; + } + } + return installed; + } + @Override public void updateApplicationListInstalledInDevice( DeviceIdentifier deviceIdentifier, List applications) throws ApplicationManagementException { + + try { + DeviceManagementDAOFactory.beginTransaction(); + List installedDeviceApps = new ArrayList<>(); + List uninstalledDeviceApps = new ArrayList<>(); + List deviceApps = applicationMappingDAO.getApplicationsOfDevice(deviceIdentifier.getId(), false); + for (DeviceApplicationMapping deviceApp : deviceApps) { + if (contains(deviceApp, applications)) { + if (!deviceApp.isInstalled()) { + // device app mapping is recorded as not installed (i.e. install app operation has been sent to device) + // as the app list sent from the device contains this, app is now installed in the device + // so we can mark the device app mapping entry as installed. + deviceApp.setInstalled(true); + applicationMappingDAO.updateDeviceApplicationMapping(deviceApp); + } + } else { + if (deviceApp.isInstalled()) { + // we have a device-app mapping in the installed state in the db. but app is not installed in the device. + // which implies that a previously installed app has been uninstalled from the device. so we have to remove the device app mapping + applicationMappingDAO.removeApplicationMapping(deviceApp); + } + } + } + DeviceManagementDAOFactory.commitTransaction(); + + } catch (DeviceManagementDAOException | TransactionManagementException e) { + String msg = "Failed to update application list of the device " + deviceIdentifier; + throw new ApplicationManagementException(msg, e); + + } + } + + public void updateApplicationListInstalledInDeviceDep( + DeviceIdentifier deviceIdentifier, + List applications) throws ApplicationManagementException { + + try { + DeviceManagementDAOFactory.beginTransaction(); + List installedDeviceApps = new ArrayList<>(); + List uninstalledDeviceApps = new ArrayList<>(); + List deviceApps = applicationMappingDAO.getApplicationsOfDevice(deviceIdentifier.getId(), false); + for (DeviceApplicationMapping deviceApp : deviceApps) { + if (contains(deviceApp, applications)) { + // if device app is pending mark device app as installed + if (!deviceApp.isInstalled()) { + deviceApp.setInstalled(true); + applicationMappingDAO.updateDeviceApplicationMapping(deviceApp); + } + } else { + if (deviceApp.isInstalled()) { + // this means we have a device-app mapping in the installed state in the db. but app is not installed in the device. + // which implies that a previously installed app has been uninstalled from the device. so we have to remove the device app mapping + applicationMappingDAO.removeApplicationMapping(deviceApp); + } + } + } + DeviceManagementDAOFactory.commitTransaction(); + + } catch (DeviceManagementDAOException | TransactionManagementException e) { + String msg = "Failed to update application list of the device " + deviceIdentifier; + throw new ApplicationManagementException(msg, e); + + } + List installedAppList = getApplicationListForDevice(deviceIdentifier); try { Device device = DeviceManagementDataHolder.getInstance().getDeviceManagementProvider().getDevice(deviceIdentifier, diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/ApplicationMappingDAO.java b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/ApplicationMappingDAO.java index e246c1c92b..8c83554784 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/ApplicationMappingDAO.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/ApplicationMappingDAO.java @@ -19,6 +19,7 @@ package org.wso2.carbon.device.mgt.core.dao; import org.wso2.carbon.device.mgt.common.app.mgt.Application; +import org.wso2.carbon.device.mgt.common.app.mgt.DeviceApplicationMapping; import java.util.List; @@ -31,4 +32,12 @@ public interface ApplicationMappingDAO { void removeApplicationMapping(int deviceId, List appIdList, int tenantId) throws DeviceManagementDAOException; + + int addDeviceApplicationMapping(DeviceApplicationMapping deviceApp) throws DeviceManagementDAOException; + + void updateDeviceApplicationMapping(DeviceApplicationMapping deviceApp) throws DeviceManagementDAOException; + + List getApplicationsOfDevice(String deviceIdentifier, boolean installed) throws DeviceManagementDAOException; + + void removeApplicationMapping(DeviceApplicationMapping deviceApp) throws DeviceManagementDAOException; } diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/impl/ApplicationMappingDAOImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/impl/ApplicationMappingDAOImpl.java index 45a4b881c4..1d9e59a4dc 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/impl/ApplicationMappingDAOImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/dao/impl/ApplicationMappingDAOImpl.java @@ -22,6 +22,7 @@ import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.wso2.carbon.device.mgt.common.app.mgt.Application; import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManagementException; +import org.wso2.carbon.device.mgt.common.app.mgt.DeviceApplicationMapping; import org.wso2.carbon.device.mgt.core.dao.ApplicationMappingDAO; import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException; import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory; @@ -38,6 +39,8 @@ import java.util.Properties; public class ApplicationMappingDAOImpl implements ApplicationMappingDAO { + private static Log log = LogFactory.getLog(ApplicationMappingDAOImpl.class); + @Override public int addApplicationMapping(int deviceId, int applicationId, int tenantId) throws DeviceManagementDAOException { @@ -120,6 +123,128 @@ public class ApplicationMappingDAOImpl implements ApplicationMappingDAO { } } + @Override + public int addDeviceApplicationMapping(DeviceApplicationMapping deviceApp) throws + DeviceManagementDAOException { + Connection conn; + PreparedStatement stmt = null; + ResultSet rs = null; + int mappingId = -1; + try { + conn = getConnection(); + String sql = "SELECT ID FROM DM_DEVICE_APPLICATION_MAPPING WHERE DEVICE_IDENTIFIER = ? AND " + + "APPLICATION_UUID = ? AND VERSION_NAME = ?"; + stmt = conn.prepareStatement(sql); + stmt.setString(1, deviceApp.getDeviceIdentifier()); + stmt.setString(2, deviceApp.getApplicationUUID()); + stmt.setString(3, deviceApp.getVersionName()); + rs = stmt.executeQuery(); + + if (!rs.next()) { + sql = "INSERT INTO DM_DEVICE_APPLICATION_MAPPING (DEVICE_IDENTIFIER, APPLICATION_UUID, VERSION_NAME," + + "INSTALLED) VALUES (?, ?, ?, ?)"; + stmt = conn.prepareStatement(sql, new String[]{"id"}); + stmt.setString(1, deviceApp.getDeviceIdentifier()); + stmt.setString(2, deviceApp.getApplicationUUID()); + stmt.setString(3, deviceApp.getVersionName()); + stmt.setBoolean(4, deviceApp.isInstalled()); + stmt.executeUpdate(); + + rs = stmt.getGeneratedKeys(); + if (rs.next()) { + mappingId = rs.getInt(1); + } + return mappingId; + } else { + log.warn("Device[" + deviceApp.getDeviceIdentifier() + "] application[" + deviceApp.getApplicationUUID() + "] mapping already " + + "exists in the DB"); + return -1; + } + } catch (SQLException e) { + throw new DeviceManagementDAOException("Error occurred while adding device application mapping to DB", e); + } finally { + DeviceManagementDAOUtil.cleanupResources(stmt, rs); + } + } + + @Override + public void updateDeviceApplicationMapping(DeviceApplicationMapping deviceApp) throws + DeviceManagementDAOException { + Connection conn; + PreparedStatement stmt = null; + ResultSet rs = null; + try { + conn = getConnection(); + String sql = "UPDATE DM_DEVICE_APPLICATION_MAPPING " + + "SET INSTALLED = ? " + + "WHERE DEVICE_IDENTIFIER = ? AND APPLICATION_UUID = ? AND VERSION_NAME = ?"; + stmt = conn.prepareStatement(sql); + stmt.setBoolean(1, deviceApp.isInstalled()); + stmt.setString(2, deviceApp.getDeviceIdentifier()); + stmt.setString(3, deviceApp.getApplicationUUID()); + stmt.setString(3, deviceApp.getVersionName()); + stmt.executeUpdate(); + + } catch (SQLException e) { + throw new DeviceManagementDAOException("Error occurred while adding device application mapping to DB", e); + } finally { + DeviceManagementDAOUtil.cleanupResources(stmt, rs); + } + } + + @Override + public List getApplicationsOfDevice(String deviceIdentifier, boolean installed) throws + DeviceManagementDAOException { + List applications = new ArrayList<>(); + Connection conn; + PreparedStatement stmt = null; + ResultSet rs = null; + int mappingId = -1; + try { + conn = getConnection(); + String sql = "SELECT APPLICATION_UUID, VERSION_NAME FROM DM_DEVICE_APPLICATION_MAPPING WHERE DEVICE_IDENTIFIER = ? AND INSTALLED = ?"; + stmt = conn.prepareStatement(sql); + stmt.setString(1, deviceIdentifier); + stmt.setBoolean(2, installed); + rs = stmt.executeQuery(); + + while (rs.next()) { + DeviceApplicationMapping deviceApp = new DeviceApplicationMapping(); + deviceApp.setDeviceIdentifier(deviceIdentifier); + deviceApp.setApplicationUUID(rs.getString(1)); + deviceApp.setVersionName(rs.getString(2)); + deviceApp.setInstalled(true); + applications.add(deviceApp); + } + return applications; + } catch (SQLException e) { + throw new DeviceManagementDAOException("Error occurred while adding device application mapping to DB", e); + } finally { + DeviceManagementDAOUtil.cleanupResources(stmt, rs); + } + } + + @Override + public void removeApplicationMapping(DeviceApplicationMapping deviceApp) throws DeviceManagementDAOException { + Connection conn; + PreparedStatement stmt = null; + try { + String sql = "DELETE FROM DM_DEVICE_APPLICATION_MAPPING WHERE DEVICE_IDENTIFIER = ? AND " + + "APPLICATION_UUID = ? AND VERSION_NAME = ?"; + + conn = this.getConnection(); + stmt = conn.prepareStatement(sql); + stmt.setString(1, deviceApp.getDeviceIdentifier()); + stmt.setString(2, deviceApp.getApplicationUUID()); + stmt.setString(3, deviceApp.getVersionName()); + stmt.executeUpdate(); + } catch (SQLException e) { + throw new DeviceManagementDAOException("Error occurred while removing device application mapping", e); + } finally { + DeviceManagementDAOUtil.cleanupResources(stmt, null); + } + } + private Connection getConnection() throws SQLException { return DeviceManagementDAOFactory.getConnection(); } diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/service/DeviceManagementProviderService.java b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/service/DeviceManagementProviderService.java index e52d7f38c3..6c3687b3d9 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/service/DeviceManagementProviderService.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/service/DeviceManagementProviderService.java @@ -26,6 +26,7 @@ import org.wso2.carbon.device.mgt.common.InvalidDeviceException; import org.wso2.carbon.device.mgt.common.MonitoringOperation; import org.wso2.carbon.device.mgt.common.PaginationRequest; import org.wso2.carbon.device.mgt.common.PaginationResult; +import org.wso2.carbon.device.mgt.common.app.mgt.DeviceApplicationMapping; import org.wso2.carbon.device.mgt.common.configuration.mgt.PlatformConfiguration; import org.wso2.carbon.device.mgt.common.license.mgt.License; import org.wso2.carbon.device.mgt.common.operation.mgt.Activity; @@ -591,4 +592,6 @@ public interface DeviceManagementProviderService { throws PullNotificationExecutionFailedException; List getDeviceEnrolledTenants() throws DeviceManagementException; + + void addDeviceApplicationMapping(DeviceApplicationMapping deviceApp) throws DeviceManagementException; } diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/service/DeviceManagementProviderServiceImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/service/DeviceManagementProviderServiceImpl.java index 1e09960283..59736f64fd 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/service/DeviceManagementProviderServiceImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/service/DeviceManagementProviderServiceImpl.java @@ -28,8 +28,10 @@ import org.wso2.carbon.device.mgt.common.DeviceIdentifier; import org.wso2.carbon.device.mgt.common.DeviceManagementException; import org.wso2.carbon.device.mgt.common.DeviceManager; import org.wso2.carbon.device.mgt.common.DeviceNotFoundException; +import org.wso2.carbon.device.mgt.common.app.mgt.DeviceApplicationMapping; import org.wso2.carbon.device.mgt.common.pull.notification.PullNotificationExecutionFailedException; import org.wso2.carbon.device.mgt.common.pull.notification.PullNotificationSubscriber; +import org.wso2.carbon.device.mgt.core.dao.ApplicationMappingDAO; import org.wso2.carbon.device.mgt.core.dto.DeviceTypeServiceIdentifier; import org.wso2.carbon.device.mgt.common.EnrolmentInfo; import org.wso2.carbon.device.mgt.common.FeatureManager; @@ -100,6 +102,7 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv private DeviceTypeDAO deviceTypeDAO; private EnrollmentDAO enrollmentDAO; private ApplicationDAO applicationDAO; + private ApplicationMappingDAO applicationMappingDAO; private DeviceManagementPluginRepository pluginRepository; public DeviceManagementProviderServiceImpl() { @@ -116,6 +119,7 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv this.applicationDAO = DeviceManagementDAOFactory.getApplicationDAO(); this.deviceTypeDAO = DeviceManagementDAOFactory.getDeviceTypeDAO(); this.enrollmentDAO = DeviceManagementDAOFactory.getEnrollmentDAO(); + this.applicationMappingDAO = DeviceManagementDAOFactory.getApplicationMappingDAO(); } @Override @@ -1698,6 +1702,20 @@ public class DeviceManagementProviderServiceImpl implements DeviceManagementProv pullNotificationSubscriber.execute(deviceIdentifier, operation); } + public void addDeviceApplicationMapping(DeviceApplicationMapping deviceApp) throws DeviceManagementException { + try { + DeviceManagementDAOFactory.openConnection(); + applicationMappingDAO.addDeviceApplicationMapping(deviceApp); + } catch (DeviceManagementDAOException e) { + throw new DeviceManagementException("Error occurred while adding device application mapping for device " + + deviceApp.getDeviceIdentifier() + " and application " + deviceApp.getApplicationUUID(), e); + } catch (SQLException e) { + throw new DeviceManagementException("Error occurred while opening a connection to the data source", e); + } finally { + DeviceManagementDAOFactory.closeConnection(); + } + } + /** * Returns all the device-info including location of the given device. */ diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000000..1e29806a30 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,19 @@ +mvn clean install -Dmaven.test.skip=true -f components/application-mgt/org.wso2.carbon.device.application.mgt.common/pom.xml + +mvn clean install -Dmaven.test.skip=true -f components/application-mgt/org.wso2.carbon.device.application.mgt.core/pom.xml + +mvn clean install -Dmaven.test.skip=true -f components/application-mgt/org.wso2.carbon.device.application.mgt.api/pom.xml + +rm ~/projects/wso2/iot/testing/appm/310appm/wso2iot-3.1.0-SNAPSHOT/patches/patch0101/ -r + +mkdir ~/projects/wso2/iot/testing/appm/310appm/wso2iot-3.1.0-SNAPSHOT/patches/patch0101 + +cp components/application-mgt/org.wso2.carbon.device.application.mgt.common/target/org.wso2.carbon.device.application.mgt.common-*.jar ~/projects/wso2/iot/testing/appm/310appm/wso2iot-3.1.0-SNAPSHOT/patches/patch0101/ + +cp components/application-mgt/org.wso2.carbon.device.application.mgt.core/target/org.wso2.carbon.device.application.mgt.core-*.jar ~/projects/wso2/iot/testing/appm/310appm/wso2iot-3.1.0-SNAPSHOT/patches/patch0101/ + +rm ~/projects/wso2/iot/testing/appm/310appm/wso2iot-3.1.0-SNAPSHOT/repository/deployment/server/webapps/api#application-mgt#v1.0.war + +rm ~/projects/wso2/iot/testing/appm/310appm/wso2iot-3.1.0-SNAPSHOT/repository/deployment/server/webapps/api#application-mgt#v1.0/ -r + +cp components/application-mgt/org.wso2.carbon.device.application.mgt.api/target/api#application-mgt#v1.0.war ~/projects/wso2/iot/testing/appm/310appm/wso2iot-3.1.0-SNAPSHOT/repository/deployment/server/webapps/ diff --git a/features/application-mgt/org.wso2.carbon.device.application.mgt.server.feature/src/main/resources/dbscripts/cdm/application-mgt/mysql.sql b/features/application-mgt/org.wso2.carbon.device.application.mgt.server.feature/src/main/resources/dbscripts/cdm/application-mgt/mysql.sql index 3e378c09e0..e680b9c65d 100644 --- a/features/application-mgt/org.wso2.carbon.device.application.mgt.server.feature/src/main/resources/dbscripts/cdm/application-mgt/mysql.sql +++ b/features/application-mgt/org.wso2.carbon.device.application.mgt.server.feature/src/main/resources/dbscripts/cdm/application-mgt/mysql.sql @@ -393,17 +393,17 @@ CREATE TABLE IF NOT EXISTS `APPM_SUBSCRIPTION_PROPERTIES` ( -- ----------------------------------------------------- -- Table `APPM_DEVICE_APPLICATION_MAPPING` -- ----------------------------------------------------- -CREATE TABLE IF NOT EXISTS `APPM_DEVICE_APPLICATION_MAPPING` ( - `ID` INT AUTO_INCREMENT NOT NULL, - `DEVICE_IDENTIFIER` VARCHAR(255) NOT NULL, - `APPLICATION_UUID` VARCHAR(100) NOT NULL, - `INSTALLED` BOOLEAN NOT NULL, - `SENT_AT` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, - PRIMARY KEY (ID), - CONSTRAINT `fk_appm_application` FOREIGN KEY (`APPLICATION_UUID`) REFERENCES - APPM_APPLICATION (`UUID`) ON DELETE NO ACTION ON UPDATE NO ACTION, - UNIQUE KEY `device_app_mapping` (`DEVICE_IDENTIFIER`, `APPLICATION_UUID`) -) ENGINE = InnoDB; +-- CREATE TABLE IF NOT EXISTS `APPM_DEVICE_APPLICATION_MAPPING` ( +-- `ID` INT AUTO_INCREMENT NOT NULL, +-- `DEVICE_IDENTIFIER` VARCHAR(255) NOT NULL, +-- `APPLICATION_UUID` VARCHAR(100) NOT NULL, +-- `INSTALLED` BOOLEAN NOT NULL, +-- `SENT_AT` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, +-- PRIMARY KEY (ID), +-- CONSTRAINT `fk_appm_application` FOREIGN KEY (`APPLICATION_UUID`) REFERENCES +-- APPM_APPLICATION (`UUID`) ON DELETE NO ACTION ON UPDATE NO ACTION, +-- UNIQUE KEY `device_app_mapping` (`DEVICE_IDENTIFIER`, `APPLICATION_UUID`) +-- ) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; diff --git a/features/application-mgt/pom.xml b/features/application-mgt/pom.xml index 878b9f5a0c..4f542af90b 100644 --- a/features/application-mgt/pom.xml +++ b/features/application-mgt/pom.xml @@ -42,4 +42,4 @@ org.wso2.carbon.device.application.mgt.server.feature org.wso2.carbon.device.application.mgt.publisher.ui.feature - \ No newline at end of file + diff --git a/features/device-mgt/org.wso2.carbon.device.mgt.server.feature/src/main/resources/dbscripts/cdm/mysql.sql b/features/device-mgt/org.wso2.carbon.device.mgt.server.feature/src/main/resources/dbscripts/cdm/mysql.sql index c9e87fc758..f94a6a5b3e 100644 --- a/features/device-mgt/org.wso2.carbon.device.mgt.server.feature/src/main/resources/dbscripts/cdm/mysql.sql +++ b/features/device-mgt/org.wso2.carbon.device.mgt.server.feature/src/main/resources/dbscripts/cdm/mysql.sql @@ -402,17 +402,17 @@ CREATE TABLE IF NOT EXISTS DM_APPLICATION ( )ENGINE = InnoDB; -CREATE TABLE IF NOT EXISTS DM_DEVICE_APPLICATION_MAPPING ( - ID INTEGER AUTO_INCREMENT NOT NULL, - DEVICE_ID INTEGER NOT NULL, - APPLICATION_ID INTEGER NOT NULL, - TENANT_ID INTEGER NOT NULL, - PRIMARY KEY (ID), - CONSTRAINT fk_dm_device FOREIGN KEY (DEVICE_ID) REFERENCES - DM_DEVICE (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, - CONSTRAINT fk_dm_application FOREIGN KEY (APPLICATION_ID) REFERENCES - DM_APPLICATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION -)ENGINE = InnoDB; +-- CREATE TABLE IF NOT EXISTS DM_DEVICE_APPLICATION_MAPPING ( +-- ID INTEGER AUTO_INCREMENT NOT NULL, +-- DEVICE_ID INTEGER NOT NULL, +-- APPLICATION_ID INTEGER NOT NULL, +-- TENANT_ID INTEGER NOT NULL, +-- PRIMARY KEY (ID), +-- CONSTRAINT fk_dm_device FOREIGN KEY (DEVICE_ID) REFERENCES +-- DM_DEVICE (ID) ON DELETE NO ACTION ON UPDATE NO ACTION, +-- CONSTRAINT fk_dm_application FOREIGN KEY (APPLICATION_ID) REFERENCES +-- DM_APPLICATION (ID) ON DELETE NO ACTION ON UPDATE NO ACTION +-- )ENGINE = InnoDB; -- END OF POLICY RELATED TABLES -- @@ -521,6 +521,20 @@ CREATE TABLE IF NOT EXISTS DM_DEVICE_DETAIL ( ON UPDATE NO ACTION) ENGINE = InnoDB; +-- ----------------------------------------------------- +-- Table `APPM_DEVICE_APPLICATION_MAPPING` +-- ----------------------------------------------------- +CREATE TABLE IF NOT EXISTS `DM_DEVICE_APPLICATION_MAPPING` ( + `ID` INT AUTO_INCREMENT NOT NULL, + `DEVICE_IDENTIFIER` VARCHAR(255) NOT NULL, + `APPLICATION_UUID` VARCHAR(100) NOT NULL, + `VERSION_NAME` VARCHAR(100) NOT NULL, + `INSTALLED` BOOLEAN NOT NULL, + `SENT_AT` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, + PRIMARY KEY (ID), + UNIQUE KEY `device_app_mapping` (`DEVICE_IDENTIFIER`, `APPLICATION_UUID`) +) ENGINE = InnoDB; + -- DASHBOARD RELATED VIEWS -- CREATE VIEW DEVICE_INFO_VIEW AS diff --git a/jmeter.log b/jmeter.log new file mode 100644 index 0000000000..f5af2f878a --- /dev/null +++ b/jmeter.log @@ -0,0 +1,355 @@ +2017-09-11 11:17:06,019 INFO o.a.j.u.JMeterUtils: Setting Locale to en_US +2017-09-11 11:17:06,029 INFO o.a.j.JMeter: Loading user properties from: /home/wso2/programs/jmeter/apache-jmeter-3.2/bin/user.properties +2017-09-11 11:17:06,030 INFO o.a.j.JMeter: Loading system properties from: /home/wso2/programs/jmeter/apache-jmeter-3.2/bin/system.properties +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: Copyright (c) 1998-2017 The Apache Software Foundation +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: Version 3.2 r1790748 +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: java.version=1.8.0_131 +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: java.vm.name=Java HotSpot(TM) 64-Bit Server VM +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: os.name=Linux +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: os.arch=amd64 +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: os.version=4.10.0-33-generic +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: file.encoding=UTF-8 +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: Max memory =536870912 +2017-09-11 11:17:06,036 INFO o.a.j.JMeter: Available Processors =4 +2017-09-11 11:17:06,040 INFO o.a.j.JMeter: Default Locale=English (United States) +2017-09-11 11:17:06,041 INFO o.a.j.JMeter: JMeter Locale=English (United States) +2017-09-11 11:17:06,041 INFO o.a.j.JMeter: JMeterHome=/home/wso2/programs/jmeter/apache-jmeter-3.2 +2017-09-11 11:17:06,041 INFO o.a.j.JMeter: user.dir =/home/wso2/projects/wso2/iot/chathura/device-mgt/carbon-device-mgt +2017-09-11 11:17:06,041 INFO o.a.j.JMeter: PWD =/home/wso2/projects/wso2/iot/chathura/device-mgt/carbon-device-mgt +2017-09-11 11:17:06,041 INFO o.a.j.JMeter: IP: 127.0.1.1 Name: laptop1 FullName: laptop1 +2017-09-11 11:17:06,302 INFO o.a.j.g.a.LookAndFeelCommand: Using look and feel: javax.swing.plaf.metal.MetalLookAndFeel [Metal, CrossPlatform] +2017-09-11 11:17:06,305 INFO o.a.j.JMeter: Loaded icon properties from org/apache/jmeter/images/icon.properties +2017-09-11 11:17:06,714 INFO o.a.j.e.u.CompoundVariable: Note: Function class names must contain the string: '.functions.' +2017-09-11 11:17:06,714 INFO o.a.j.e.u.CompoundVariable: Note: Function class names must not contain the string: '.gui.' +2017-09-11 11:17:07,644 INFO o.a.j.g.u.MenuFactory: Skipping org.apache.jmeter.assertions.BSFAssertion +2017-09-11 11:17:08,197 INFO o.a.j.g.u.MenuFactory: Skipping org.apache.jmeter.extractor.BSFPostProcessor +2017-09-11 11:17:08,237 INFO o.a.j.g.u.MenuFactory: Skipping org.apache.jmeter.modifiers.BSFPreProcessor +2017-09-11 11:17:08,271 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/html is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser +2017-09-11 11:17:08,271 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for application/xhtml+xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser +2017-09-11 11:17:08,271 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for application/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser +2017-09-11 11:17:08,272 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/xml is org.apache.jmeter.protocol.http.parser.LagartoBasedHtmlParser +2017-09-11 11:17:08,272 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/vnd.wap.wml is org.apache.jmeter.protocol.http.parser.RegexpHTMLParser +2017-09-11 11:17:08,272 INFO o.a.j.p.h.s.HTTPSamplerBase: Parser for text/css is org.apache.jmeter.protocol.http.parser.CssParser +2017-09-11 11:17:08,616 INFO o.a.j.e.KeyToolUtils: keytool found at 'keytool' +2017-09-11 11:17:08,617 INFO o.a.j.p.h.p.ProxyControl: HTTP(S) Test Script Recorder SSL Proxy will use keys that support embedded 3rd party resources in file /home/wso2/programs/jmeter/apache-jmeter-3.2/bin/proxyserver.jks +2017-09-11 11:17:08,755 INFO o.a.j.g.u.MenuFactory: Skipping org.apache.jmeter.protocol.java.sampler.BSFSampler +2017-09-11 11:17:08,797 INFO o.a.j.s.FileServer: Default base='/home/wso2/projects/wso2/iot/chathura/device-mgt/carbon-device-mgt' +2017-09-11 11:17:08,876 INFO o.a.j.g.u.MenuFactory: Skipping org.apache.jmeter.protocol.mongodb.config.MongoSourceElement +2017-09-11 11:17:08,876 INFO o.a.j.g.u.MenuFactory: Skipping org.apache.jmeter.protocol.mongodb.sampler.MongoScriptSampler +2017-09-11 11:17:08,989 INFO o.a.j.g.u.MenuFactory: Skipping org.apache.jmeter.timers.BSFTimer +2017-09-11 11:17:09,023 INFO o.a.j.g.u.MenuFactory: Skipping org.apache.jmeter.visualizers.BSFListener +2017-09-11 11:17:09,177 INFO o.a.j.s.SampleResult: Note: Sample TimeStamps are START times +2017-09-11 11:17:09,178 INFO o.a.j.s.SampleResult: sampleresult.default.encoding is set to ISO-8859-1 +2017-09-11 11:17:09,178 INFO o.a.j.s.SampleResult: sampleresult.useNanoTime=true +2017-09-11 11:17:09,178 INFO o.a.j.s.SampleResult: sampleresult.nanoThreadSleep=5000 +2017-09-11 11:17:16,343 INFO o.a.j.g.a.Load: Loading file: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/ApplicationManagementAPI.jmx +2017-09-11 11:17:16,344 INFO o.a.j.s.FileServer: Set new base='/home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts' +2017-09-11 11:17:16,441 INFO o.a.j.s.SaveService: Testplan (JMX) version: 2.2. Testlog (JTL) version: 2.2 +2017-09-11 11:17:16,456 INFO o.a.j.s.SaveService: Using SaveService properties file encoding UTF-8 +2017-09-11 11:17:16,458 INFO o.a.j.s.SaveService: Using SaveService properties version 3.2 +2017-09-11 11:17:16,461 INFO o.a.j.s.SaveService: Loading file: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/ApplicationManagementAPI.jmx +2017-09-11 11:17:16,491 INFO o.a.j.p.h.c.CookieManager: Settings: Delete null: true Check: true Allow variable: true Save: false Prefix: COOKIE_ +2017-09-11 11:17:16,491 INFO o.a.j.u.NameUpdater: Upgrading class org.apache.jmeter.protocol.http.sampler.SoapSampler to org.apache.jmeter.config.ConfigTestElement +2017-09-11 11:17:16,491 INFO o.a.j.u.NameUpdater: Upgrading class org.apache.jmeter.protocol.http.control.gui.SoapSamplerGui to org.apache.jmeter.config.gui.ObsoleteGui +2017-09-11 11:17:16,492 INFO o.a.j.u.NameUpdater: Upgrading class org.apache.jmeter.protocol.http.control.gui.SoapSamplerGui to org.apache.jmeter.config.gui.ObsoleteGui +2017-09-11 11:17:16,503 INFO o.a.j.u.NameUpdater: Upgrading class org.apache.jmeter.protocol.http.control.gui.SoapSamplerGui to org.apache.jmeter.config.gui.ObsoleteGui +2017-09-11 11:17:16,504 INFO o.a.j.u.NameUpdater: Upgrading class org.apache.jmeter.protocol.http.control.gui.SoapSamplerGui to org.apache.jmeter.config.gui.ObsoleteGui +2017-09-11 11:17:17,087 INFO o.a.j.s.FileServer: Set new base='/home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts' +2017-09-11 11:18:36,250 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 11:18:36,251 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 11:18:36,251 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 11:18:36,266 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 11:18:36,378 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 11:18:36,378 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 11:18:36,378 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 11:18:36,378 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 11:18:36,418 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 11:18:36,418 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 11:18:36,424 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 11:18:36,464 INFO o.a.j.p.h.s.HTTPHCAbstractImpl: Local host = laptop1 +2017-09-11 11:18:36,467 INFO o.a.j.p.h.s.HTTPHC4Impl: HTTP request retry count = 0 +2017-09-11 11:18:36,521 INFO o.a.j.p.h.s.LazySchemeSocketFactory: Setting up HTTPS TrustAll Socket Factory +2017-09-11 11:18:36,525 INFO o.a.j.u.JsseSSLManager: Using default SSL protocol: TLS +2017-09-11 11:18:36,525 INFO o.a.j.u.JsseSSLManager: SSL session context: per-thread +2017-09-11 11:18:36,705 INFO o.a.j.u.SSLManager: JmeterKeyStore Location: type JKS +2017-09-11 11:18:36,705 INFO o.a.j.u.SSLManager: KeyStore created OK +2017-09-11 11:18:36,705 WARN o.a.j.u.SSLManager: Keystore file not found, loading empty keystore +2017-09-11 11:18:40,414 INFO o.a.j.s.FileServer: Stored: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/image.png +2017-09-11 11:18:40,915 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 11:18:40,916 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 11:18:40,916 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 11:18:40,917 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 11:41:19,241 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 11:41:19,242 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 11:41:19,247 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 11:41:19,371 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 11:41:19,371 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 11:41:19,371 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 11:41:19,372 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 11:41:19,403 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 11:41:19,403 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 11:41:19,408 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 11:41:25,273 INFO o.a.j.s.FileServer: Stored: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/image.png +2017-09-11 11:41:26,162 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 11:41:26,163 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 11:41:26,163 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 11:41:26,163 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 11:46:37,551 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 11:46:37,551 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 11:46:37,555 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 11:46:37,677 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 11:46:37,677 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 11:46:37,677 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 11:46:37,678 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 11:46:37,703 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 11:46:37,703 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 11:46:37,704 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 11:46:40,303 INFO o.a.j.s.FileServer: Stored: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/image.png +2017-09-11 11:46:41,107 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 11:46:41,107 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 11:46:41,108 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 11:46:41,108 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 11:49:20,026 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 11:49:20,026 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 11:49:20,029 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 11:49:20,136 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 11:49:20,136 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 11:49:20,137 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 11:49:20,137 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 11:49:20,165 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 11:49:20,166 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 11:49:20,167 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 11:51:01,448 INFO o.a.j.s.FileServer: Stored: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/image.png +2017-09-11 11:53:08,769 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 11:53:08,769 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 11:53:08,770 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 11:53:08,771 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 11:57:09,607 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 11:57:09,609 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 11:57:09,613 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 11:57:09,736 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 11:57:09,736 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 11:57:09,736 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 11:57:09,736 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 11:57:09,761 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 11:57:09,761 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 11:57:09,762 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 11:57:19,936 INFO o.a.j.s.FileServer: Stored: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/image.png +2017-09-11 11:57:20,432 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 11:57:20,432 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 11:57:20,433 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 11:57:20,433 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 11:59:08,030 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 11:59:08,031 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 11:59:08,031 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 11:59:08,164 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 11:59:08,164 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 11:59:08,164 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 11:59:08,164 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 11:59:08,178 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 11:59:08,178 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 11:59:08,179 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 11:59:10,634 INFO o.a.j.s.FileServer: Stored: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/image.png +2017-09-11 11:59:10,712 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 11:59:10,712 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 11:59:10,713 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 11:59:10,713 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 12:01:02,024 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 12:01:02,024 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 12:01:02,026 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 12:01:02,140 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 12:01:02,140 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 12:01:02,140 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 12:01:02,140 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 12:01:02,156 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 12:01:02,156 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 12:01:02,156 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 12:01:04,482 INFO o.a.j.s.FileServer: Stored: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/image.png +2017-09-11 12:01:04,525 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 12:01:04,525 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 12:01:04,526 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 12:01:04,526 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 12:03:39,895 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 12:03:39,896 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 12:03:39,897 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 12:03:40,008 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 12:03:40,008 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 12:03:40,008 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 12:03:40,008 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 12:03:40,018 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 12:03:40,018 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 12:03:40,020 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 12:03:42,312 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 12:03:42,312 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 12:03:42,312 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 12:03:42,312 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 12:07:13,180 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 12:07:13,180 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 12:07:13,181 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 12:07:13,321 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 12:07:13,321 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 12:07:13,321 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 12:07:13,321 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 12:07:13,332 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 12:07:13,332 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 12:07:13,332 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 12:07:15,869 INFO o.a.j.s.FileServer: Stored: /home/wso2/projects/wso2/iot/chathura/product-iots/product-iots/modules/integration/tests-integration/src/test/resources/jmeter-scripts/image.png +2017-09-11 12:07:15,910 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 12:07:15,910 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 12:07:15,910 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 12:07:15,911 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 14:23:30,019 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 14:23:30,024 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 14:23:30,032 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 14:23:30,562 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 14:23:30,562 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 14:23:30,562 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 14:23:30,562 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 14:23:30,589 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 14:23:30,589 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 14:23:30,590 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 14:23:33,752 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 14:23:33,753 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 14:23:33,753 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 14:23:33,754 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 14:24:35,246 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 14:24:35,246 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 14:24:35,247 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 14:24:35,361 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 14:24:35,361 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 14:24:35,362 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 14:24:35,362 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 14:24:35,380 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 14:24:35,380 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 14:24:35,381 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 14:24:37,901 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 14:24:37,901 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 14:24:37,901 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 14:24:37,901 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 14:26:47,180 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 14:26:47,180 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 14:26:47,182 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 14:26:47,302 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 14:26:47,302 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 14:26:47,302 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 14:26:47,303 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 14:26:47,316 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 14:26:47,316 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 14:26:47,317 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 14:26:49,859 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 14:26:49,859 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 14:26:49,859 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 14:26:49,859 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 14:30:37,092 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 14:30:37,092 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 14:30:37,093 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 14:30:37,207 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : Application Management - Super Tenant +2017-09-11 14:30:37,207 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group Application Management - Super Tenant. +2017-09-11 14:30:37,207 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 14:30:37,207 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 14:30:37,220 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 14:30:37,220 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 14:30:37,221 INFO o.a.j.t.JMeterThread: Thread started: Application Management - Super Tenant 1-1 +2017-09-11 14:30:39,716 INFO o.a.j.t.JMeterThread: Thread is done: Application Management - Super Tenant 1-1 +2017-09-11 14:30:39,716 INFO o.a.j.t.JMeterThread: Thread finished: Application Management - Super Tenant 1-1 +2017-09-11 14:30:39,717 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 14:30:39,717 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 14:43:17,010 INFO o.a.j.s.FileServer: Set new base='/home/wso2/projects/wso2/iot/testing/appm/scripts' +2017-09-11 14:51:18,349 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 14:51:18,351 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 14:51:18,352 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 14:51:18,479 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : TokenGen +2017-09-11 14:51:18,479 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group TokenGen. +2017-09-11 14:51:18,479 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 14:51:18,480 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 14:51:18,485 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 14:51:18,485 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 14:51:18,485 INFO o.a.j.t.JMeterThread: Thread started: TokenGen 1-1 +2017-09-11 14:51:20,803 INFO o.a.j.t.JMeterThread: Thread is done: TokenGen 1-1 +2017-09-11 14:51:20,803 INFO o.a.j.t.JMeterThread: Thread finished: TokenGen 1-1 +2017-09-11 14:51:20,804 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 14:51:20,804 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 14:53:40,651 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 14:53:40,652 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 14:53:40,654 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 14:53:40,790 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : UnitTests +2017-09-11 14:53:40,790 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group UnitTests. +2017-09-11 14:53:40,790 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 14:53:40,791 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 14:53:40,791 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 14:53:40,791 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 14:53:40,791 INFO o.a.j.t.JMeterThread: Thread started: UnitTests 1-1 +2017-09-11 14:53:41,079 INFO o.a.j.t.JMeterThread: Thread is done: UnitTests 1-1 +2017-09-11 14:53:41,079 INFO o.a.j.t.JMeterThread: Thread finished: UnitTests 1-1 +2017-09-11 14:53:41,081 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 14:53:41,081 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 14:54:28,012 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 14:54:28,012 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 14:54:28,013 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 14:54:28,123 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : UnitTests +2017-09-11 14:54:28,123 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group UnitTests. +2017-09-11 14:54:28,124 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 14:54:28,124 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 14:54:28,128 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 14:54:28,128 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 14:54:28,128 INFO o.a.j.t.JMeterThread: Thread started: UnitTests 1-1 +2017-09-11 14:54:28,385 INFO o.a.j.t.JMeterThread: Thread is done: UnitTests 1-1 +2017-09-11 14:54:28,385 INFO o.a.j.t.JMeterThread: Thread finished: UnitTests 1-1 +2017-09-11 14:54:28,385 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 14:54:28,385 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 14:56:06,132 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 14:56:06,132 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 14:56:06,133 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 14:56:06,249 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : UnitTests +2017-09-11 14:56:06,249 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group UnitTests. +2017-09-11 14:56:06,249 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 14:56:06,249 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 14:56:06,254 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 14:56:06,254 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 14:56:06,254 INFO o.a.j.t.JMeterThread: Thread started: UnitTests 1-1 +2017-09-11 14:56:06,349 INFO o.a.j.t.JMeterThread: Thread is done: UnitTests 1-1 +2017-09-11 14:56:06,349 INFO o.a.j.t.JMeterThread: Thread finished: UnitTests 1-1 +2017-09-11 14:56:06,350 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 14:56:06,350 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 15:05:21,190 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 15:05:21,191 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 15:05:21,192 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 15:05:21,335 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : UnitTests +2017-09-11 15:05:21,335 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group UnitTests. +2017-09-11 15:05:21,336 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 15:05:21,336 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 15:05:21,336 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 15:05:21,336 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 15:05:21,337 INFO o.a.j.t.JMeterThread: Thread started: UnitTests 1-1 +2017-09-11 15:05:21,454 INFO o.a.j.t.JMeterThread: Thread is done: UnitTests 1-1 +2017-09-11 15:05:21,454 INFO o.a.j.t.JMeterThread: Thread finished: UnitTests 1-1 +2017-09-11 15:05:21,454 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 15:05:21,454 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 15:06:50,344 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 15:06:50,345 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 15:06:50,346 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 15:06:50,484 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : UnitTests +2017-09-11 15:06:50,485 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group UnitTests. +2017-09-11 15:06:50,485 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 15:06:50,485 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 15:06:50,485 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 15:06:50,485 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 15:06:50,486 INFO o.a.j.t.JMeterThread: Thread started: UnitTests 1-1 +2017-09-11 15:06:50,581 INFO o.a.j.t.JMeterThread: Thread is done: UnitTests 1-1 +2017-09-11 15:06:50,581 INFO o.a.j.t.JMeterThread: Thread finished: UnitTests 1-1 +2017-09-11 15:06:50,581 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 15:06:50,581 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*) +2017-09-11 15:07:27,565 INFO o.a.j.e.StandardJMeterEngine: Running the test! +2017-09-11 15:07:27,567 INFO o.a.j.s.SampleEvent: List of sample_variables: [] +2017-09-11 15:07:27,567 INFO o.a.j.g.u.JMeterMenuBar: setRunning(true, *local*) +2017-09-11 15:07:27,681 INFO o.a.j.e.StandardJMeterEngine: Starting ThreadGroup: 1 : UnitTests +2017-09-11 15:07:27,681 INFO o.a.j.e.StandardJMeterEngine: Starting 1 threads for group UnitTests. +2017-09-11 15:07:27,681 INFO o.a.j.e.StandardJMeterEngine: Thread will continue on error +2017-09-11 15:07:27,681 INFO o.a.j.t.ThreadGroup: Starting thread group... number=1 threads=1 ramp-up=1 perThread=1000.0 delayedStart=false +2017-09-11 15:07:27,681 INFO o.a.j.t.ThreadGroup: Started thread group number 1 +2017-09-11 15:07:27,681 INFO o.a.j.e.StandardJMeterEngine: All thread groups have been started +2017-09-11 15:07:27,684 INFO o.a.j.t.JMeterThread: Thread started: UnitTests 1-1 +2017-09-11 15:07:27,759 INFO o.a.j.t.JMeterThread: Thread is done: UnitTests 1-1 +2017-09-11 15:07:27,759 INFO o.a.j.t.JMeterThread: Thread finished: UnitTests 1-1 +2017-09-11 15:07:27,760 INFO o.a.j.e.StandardJMeterEngine: Notifying test listeners of end of test +2017-09-11 15:07:27,760 INFO o.a.j.g.u.JMeterMenuBar: setRunning(false, *local*)