{"maintainers":[{"name":"anonymous","email":"chris.brody+brodybits@gmail.com"},{"name":"anonymous","email":"darryl@dpogue.ca"},{"name":"anonymous","email":"apachecordovabot@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"anis.kadri@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"pindoria.suraj@gmail.com"},{"name":"anonymous","email":"erisu.dev@outlook.jp"},{"name":"anonymous","email":"niklasmerz@linux.com"},{"name":"anonymous","email":"piotrowski+npm@gmail.com"},{"name":"anonymous","email":"norman@breautek.com"},{"name":"anonymous","email":"pieter.vanpoyer@portofantwerp.com"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"jcesarmobile@gmail.com"}],"keywords":["cordova","network","information","ecosystem:cordova","cordova-android","cordova-ios","cordova-windows","cordova-browser"],"dist-tags":{"latest":"3.1.0"},"author":{"name":"Apache Software Foundation"},"description":"Cordova Network Information Plugin","readme":"---\n# cordova-docs build metadata\ntitle: Network Information\ndescription: Get information about wireless connectivity.\n---\n<!--\n#\n# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements.  See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership.  The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License.  You may obtain a copy of the License at\n#\n#   http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied.  See the License for the\n# specific language governing permissions and limitations\n# under the License.\n#\n-->\n# cordova-plugin-network-information\n\n[![npm - Latest](https://img.shields.io/npm/v/cordova-plugin-network-information/latest?label=Latest%20Release%20(npm))](https://npmjs.com/package/cordova-plugin-network-information)\n[![GitHub](https://img.shields.io/github/package-json/v/apache/cordova-plugin-network-information?label=Development%20(Git))](https://github.com/apache/cordova-plugin-network-information)\n\n[![GitHub - Node Workflow](https://github.com/apache/cordova-plugin-network-information/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/apache/cordova-plugin-network-information/actions/workflows/ci.yml?query=branch%3Amaster)\n[![Android Testsuite](https://github.com/apache/cordova-plugin-network-information/actions/workflows/android.yml/badge.svg)](https://github.com/apache/cordova-plugin-network-information/actions/workflows/android.yml)\n[![Chrome Testsuite](https://github.com/apache/cordova-plugin-network-information/actions/workflows/chrome.yml/badge.svg)](https://github.com/apache/cordova-plugin-network-information/actions/workflows/chrome.yml)\n[![iOS Testsuite](https://github.com/apache/cordova-plugin-network-information/actions/workflows/ios.yml/badge.svg)](https://github.com/apache/cordova-plugin-network-information/actions/workflows/ios.yml)\n[![Lint Test](https://github.com/apache/cordova-plugin-network-information/actions/workflows/lint.yml/badge.svg)](https://github.com/apache/cordova-plugin-network-information/actions/workflows/lint.yml)\n[![GitHub - Release Audit Workflow](https://github.com/apache/cordova-plugin-network-information/actions/workflows/release-audit.yml/badge.svg?branch=master)](https://github.com/apache/cordova-plugin-network-information/actions/workflows/release-audit.yml?query=branch%3Amaster)\n\nThis plugin provides an implementation of an old version of the\n[Network Information API](http://www.w3.org/TR/2011/WD-netinfo-api-20110607/).\nIt provides information about the device's cellular and\nwifi connection, and whether the device has an internet connection.\n\n> To get a few ideas how to use the plugin, check out the [sample](#sample) at the bottom of this page or go straight to the [reference](#reference) content.\n\n## Installation\n\n    cordova plugin add cordova-plugin-network-information\n\n## Supported Platforms\n\n- Android\n- Browser\n- iOS\n- Windows\n\n# Connection\n\n> The `connection` object, exposed via `navigator.connection`,  provides information about the device's cellular and wifi connection.\n\n## Properties\n\n- connection.type\n\n## Constants\n\n- Connection.UNKNOWN\n- Connection.ETHERNET\n- Connection.WIFI\n- Connection.CELL_2G\n- Connection.CELL_3G\n- Connection.CELL_4G\n- Connection.CELL_5G\n- Connection.CELL\n- Connection.NONE\n\n## connection.type\n\nThis property offers a fast way to determine the device's network\nconnection state, and type of connection.\n\n### Quick Example\n\n```js\nfunction checkConnection() {\n    var networkState = navigator.connection.type;\n\n    var states = {};\n    states[Connection.UNKNOWN]  = 'Unknown connection';\n    states[Connection.ETHERNET] = 'Ethernet connection';\n    states[Connection.WIFI]     = 'WiFi connection';\n    states[Connection.CELL_2G]  = 'Cell 2G connection';\n    states[Connection.CELL_3G]  = 'Cell 3G connection';\n    states[Connection.CELL_4G]  = 'Cell 4G connection';\n    states[Connection.CELL_5G]  = 'Cell 5G connection';\n    states[Connection.CELL]     = 'Cell generic connection';\n    states[Connection.NONE]     = 'No network connection';\n\n    alert('Connection type: ' + states[networkState]);\n}\n\ncheckConnection();\n```\n\n### iOS Quirks\n\n- <iOS7 can't detect the type of cellular network connection.\n    - `navigator.connection.type` is set to `Connection.CELL` for all cellular data.\n\n### Windows Quirks\n\n- When running in the Phone 8.1 emulator, always detects `navigator.connection.type` as `Connection.ETHERNET`.\n\n### Browser Quirks\n\n- Browser can't detect the type of network connection.\n`navigator.connection.type` is always set to `Connection.UNKNOWN` when online.\n\n# Network-related Events\n\n## offline\n\nThe event fires when an application goes offline, and the device is\nnot connected to the Internet.\n\n    document.addEventListener(\"offline\", yourCallbackFunction, false);\n\n### Details\n\nThe `offline` event fires when a previously connected device loses a\nnetwork connection so that an application can no longer access the\nInternet.  It relies on the same information as the Connection API,\nand fires when the value of `connection.type` becomes `NONE`.\n\nApplications typically should use `document.addEventListener` to\nattach an event listener once the `deviceready` event fires.\n\n### Quick Example\n\n```js\ndocument.addEventListener(\"offline\", onOffline, false);\n\nfunction onOffline() {\n    // Handle the offline event\n}\n```\n\n### Quirks\n\nThis plugin is unable to broadcast events while in the background. Use `navigator.connection.type` to check connection status on the [resume](https://cordova.apache.org/docs/en/latest/cordova/events/events.html#resume) event instead.\n\n### iOS Quirks\n\nDuring initial startup, the first offline event (if applicable) takes at least a second to fire.\n\n## online\n\nThis event fires when an application goes online, and the device\nbecomes connected to the Internet.\n\n    document.addEventListener(\"online\", yourCallbackFunction, false);\n\n### Details\n\nThe `online` event fires when a previously unconnected device receives\na network connection to allow an application access to the Internet.\nIt relies on the same information as the Connection API,\nand fires when the `connection.type` changes from `NONE` to any other\nvalue.\n\nApplications typically should use `document.addEventListener` to\nattach an event listener once the `deviceready` event fires.\n\n### Quick Example\n\n```js\ndocument.addEventListener(\"online\", onOnline, false);\n\nfunction onOnline() {\n    // Handle the online event\n}\n```\n\n### Quirks\n\nThis plugin is unable to broadcast events while in the background. Use `navigator.connection.type` to check connection status on the [resume](https://cordova.apache.org/docs/en/latest/cordova/events/events.html#resume) event instead.\n\n### iOS Quirks\n\nDuring initial startup, the first `online` event (if applicable) takes\nat least a second to fire, prior to which `connection.type` is\n`UNKNOWN`.\n\n## Sample: Upload a File Depending on your Network State <a name=\"sample\"></a>\n\nThe code examples in this section show examples of changing app behavior using the online and offline events and your network connection status.\n\nTo start with, create a new FileEntry object (data.txt) to use for sample data. Call this function from the `deviceready` handler.\n\n>*Note* This code example requires the File plugin.\n\n```js\nvar dataFileEntry;\n\nfunction createSomeData() {\n\n    window.requestFileSystem(window.TEMPORARY, 5 * 1024 * 1024, function (fs) {\n\n        console.log('file system open: ' + fs.name);\n        // Creates a new file or returns an existing file.\n        fs.root.getFile(\"data.txt\", { create: true, exclusive: false }, function (fileEntry) {\n\n          dataFileEntry = fileEntry;\n\n        }, onErrorCreateFile);\n\n    }, onErrorLoadFs);\n}\n```\n\nNext, add listeners for the online and offline events in the `deviceready` handler.\n\n```js\ndocument.addEventListener(\"offline\", onOffline, false);\ndocument.addEventListener(\"online\", onOnline, false);\n```\n\nThe app's `onOnline` function handles the online event. In the event handler, check the current network state. In this app, treat any connection type as good except Connection.NONE. If you have a connection, you try to upload a file.\n\n```js\nfunction onOnline() {\n    // Handle the online event\n    var networkState = navigator.connection.type;\n\n    if (networkState !== Connection.NONE) {\n        if (dataFileEntry) {\n            tryToUploadFile();\n        }\n    }\n    display('Connection type: ' + networkState);\n}\n```\n\nWhen the online event fires in the preceding code, call the app's `tryToUploadFile` function.\n\nIf the upload fails, then call the app's `offlineWrite` function to save the current data somewhere.\n\n>*Note* For simplicity, file reading & writing was omitted. Refer to the [cordova-plugin-file](https://github.com/apache/cordova-plugin-file#cordova-plugin-file) documentation for more information on file handling.\n\n```js\nfunction tryToUploadFile() {\n    // !! Assumes variable fileURL contains a valid URL to a text file on the device,\n    var fileURL = getDataFileEntry().toURL();\n    \n    getFileBlobSomehow(fileURL, function(fileBlob) {\n        var success = function (r) {\n            console.log(\"Response = \" + r.response);\n            display(\"Uploaded. Response: \" + r.response);\n        };\n\n        var fail = function (error) {\n            console.log(\"An error has occurred: Code = \" + error.code || error.status);\n            offlineWrite(\"Failed to upload: some offline data\");\n        }\n\n        var xhr = new XMLHttpRequest();\n\n        xhr.onerror = fail;\n        xhr.ontimeout = fail;\n        xhr.onload = function() {\n            // If the response code was successful...\n            if (xhr.status >= 200 && xhr.status < 400) {\n                success(xhr);\n            }\n            else {\n                fail(xhr)\n            }\n        }\n\n        // Make sure you add the domain of your server URL to the\n        // Content-Security-Policy <meta> element in index.html.\n        xhr.open(\"POST\", encodeURI(SERVER));\n\n        xhr.setRequestHeader(\"Content-Type\", \"text/plain\");\n\n        // The server request handler could read this header to\n        // set the filename.\n        xhr.setRequestHeader(\"X-Filename\", fileURL.substr(fileURL.lastIndexOf(\"/\") + 1));\n\n        xhr.send(fileBlob);\n    });\n};\n```\n\nHere is the code for the `offlineWrite` function.\n\n>*Note* This code examples requires the File plugin.\n\n```js\nfunction offlineWrite(offlineData) {\n    // Create a FileWriter object for our FileEntry.\n    dataFileEntry.createWriter(function (fileWriter) {\n\n        fileWriter.onwriteend = function () {\n            console.log(\"Successful file write...\");\n            display(offlineData);\n        };\n\n        fileWriter.onerror = function (e) {\n            console.log(\"Failed file write: \" + e.toString());\n        };\n\n        fileWriter.write(offlineData);\n    });\n}\n```\n\nIf the offline event occurs, just do something like notify the user (for this example, just log it).\n\n```js\nfunction onOffline() {\n    // Handle the offline event\n    console.log(\"lost connection\");\n}\n```\n","repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-network-information.git"},"users":{"wwg":true,"isik":true,"dspjm":true,"danail":true,"shoolc":true,"byennen":true,"lordkbx":true,"robhart":true,"babakarj":true,"shanquan":true,"xueboren":true,"sjlee4520":true,"jimmytiger":true,"rodolv1979":true,"bfscordeiro":true,"nexxtmobile":true,"chinawolf_wyp":true,"desertcrystal":true,"jonathancoradi":true},"bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"license":"Apache-2.0","versions":{"0.2.1":{"name":"cordova-plugin-network-information","version":"0.2.1","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.1","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"6682921bd90967acecf4b296aa840e427d7c6cdf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.1.tgz","integrity":"sha512-EOUp0f5zukzPhdd+APeE6fY4N5KMcFStQN51eCH+1lADCF5WgfKxxyyyCYmwJHQ5CCCqrB+mpKxn9S3+iUXJPQ==","signatures":[{"sig":"MEUCIFbRAp1mplO8JIgDvkXgf1FPzdqUBrX3UWS19TeQznzPAiEA8MIAzvM3MdiX4wd98AGxKg68rDn6xBYOKAfAlXOfAfM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"6682921bd90967acecf4b296aa840e427d7c6cdf","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"9d3964432daeed16e6b5be3cca0904ad382b9155","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.10":{"name":"cordova-plugin-network-information","version":"0.2.10","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.10","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"295c4262f13df8b0a37f8aa25fe2901e1ea69be8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.10.tgz","integrity":"sha512-wrG/FqGAvO/pmf3o9pxCVzm0ZxBNxGdQCjPJ8Rba0JfBjw5zFdX+2wphwJyG3MQdFujVwqBfGdXdGGPLeT159w==","signatures":[{"sig":"MEYCIQCpFRcM04ym7K4ZWVCY2O3SMSRgYaMfb5wbZ0lD+esVUAIhAO3om80fjGVZYIOphE/Ffj5af2Ph+L4/gcYiUKbtXZwP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"295c4262f13df8b0a37f8aa25fe2901e1ea69be8","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"07ff22accc1e0a22dbf97153a516ebef886aae41","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.11":{"name":"cordova-plugin-network-information","version":"0.2.11","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.11","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"cb5ace371f2f28688eb03645433ac8c0c8f40ff7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.11.tgz","integrity":"sha512-FmhVA82um+tbgrPf/f2EvMy3qNPIaCVZyC8p2M7e6734qUFG+zmHd77hfmDIqUpNQh9B5nanPhUW2xUOsY+Img==","signatures":[{"sig":"MEQCIC2CTId2lS9CRYwDnCvEbnPhNe7wKJ5O8OPSP0A8bO5vAiBknfIV3xLgwaqCNRvhzeNJmQ5jXt6DjNDlPCLc1XKmhA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"cb5ace371f2f28688eb03645433ac8c0c8f40ff7","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"00b71a7cd92c6de183a0f91318a2cefcdc7ae653","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.12":{"name":"cordova-plugin-network-information","version":"0.2.12","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.12","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"0dd5da0e19810546da8d73aa5332102a4321e99e","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.12.tgz","integrity":"sha512-7PpRPzzL2h4/+wem9F8S2KehJWfpiDZOMniNo1wZSEpGkQHsuzzOyeE0gbQV0deWab3Ew6RLuIdmZVjF5Fh3WA==","signatures":[{"sig":"MEYCIQD8aI1oP7uXV9APkLVqafT6mWgZ4auaQ++pyE9m48gUzAIhAMh40pjyncM1BTy0UoRjHgHWfDdQrzycEeMQgqz5qmGu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"0dd5da0e19810546da8d73aa5332102a4321e99e","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"df7aac845dc7deddbdb76e89216776a802ee8b67","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.13":{"name":"cordova-plugin-network-information","version":"0.2.13","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.13","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"dc47b54a4ed2ee1f555d82fe6adf103f718961ac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.13.tgz","integrity":"sha512-7pyFjk6hHoB1/aIIdEbTmJ7504GSxody3BgapgAmV+dBzGCsTTWrWuspKE2K+H/K0wF/DwXT622NEutLaMzYJQ==","signatures":[{"sig":"MEUCIDU853rYg6ZD4VIwdfBHgCUB9YJKMbP2e0/KHU20RvXNAiEA4xEm79xW3Il9A6kBnYVBo2TFUJT7bYtaGc9NuLbwRiY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"dc47b54a4ed2ee1f555d82fe6adf103f718961ac","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"056c6dddafdb56b7895602ac6e8065aa7877d24c","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.14":{"name":"cordova-plugin-network-information","version":"0.2.14","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.14","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"19c96edec0a4bee194e2158b46a4f17c452720b7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.14.tgz","integrity":"sha512-bksVJAdxxUAVEXURR8+U575exOSxuv8VLee7ELkYTftJ1w6G+qjYedk8LsxsX8DPrKsIP+Z5AxmD5rV+rnIuCQ==","signatures":[{"sig":"MEUCIDwDyhDLSc4cz9e+3bWx4SIHWkV7cjQSCY21iYrpx39rAiEAr1B5surNOyjZgPqjrTY6/OJUK3HTI7QDc9CeRZN7yrI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"19c96edec0a4bee194e2158b46a4f17c452720b7","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"17a38609fb85cc1713127598ef82824feb973949","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.15":{"name":"cordova-plugin-network-information","version":"0.2.15","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.15","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"cb0449b13b68d555bc3f92c4997f4a8becb71cf7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.15.tgz","integrity":"sha512-sZoUM94EUtSc2dFG0Gv+dvfmyArYNvwbCte6oHSJLZIGURbtjl0sPtGgp6wyt29owGF3YqJUUIySkiR5JXmRzQ==","signatures":[{"sig":"MEUCIBMoT9JVwmbx9EOqpYkw/NNMWuqfKs9VdpZAiNIUvx1AAiEA2JtdU1eCz5wGxzLFiR8nO2b57l8Cb8GwOmkl7Q05sEA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"cb0449b13b68d555bc3f92c4997f4a8becb71cf7","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"81037e29cf3094c3f1235b7c21090afea3f723c3","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.3":{"name":"cordova-plugin-network-information","version":"0.2.3","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.3","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"8add7a0e32439a8b5b9f1d841d47aa6c5d213261","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.3.tgz","integrity":"sha512-n+vEdu7pX9csdyNOfbXzk4mc9zxZBOy5ugv0i0osspm0RwL4m6Ul3sP77XVdKLUvw2U0KUvT4FV3DKQi2VfJRg==","signatures":[{"sig":"MEQCIGMnj9tnYrlD5/8jyzUaL6asqqNLs1CU594gbJbyl7nBAiBze01vzpXiM5lhtU7SKhJRNhukoICGIe+CHPrhVZaM4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"8add7a0e32439a8b5b9f1d841d47aa6c5d213261","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"a5136aa256338705c8d1339c84e2212d59238c95","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.4":{"name":"cordova-plugin-network-information","version":"0.2.4","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.4","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"34433319ed4ccb0e7dbbb11103633a0ef464429b","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.4.tgz","integrity":"sha512-Y+0jFPjKpZAd7areV+1jWtbVCerWk9dRWg5BP0oHC8r0FkEUBZ3eWQirW2k59DQKwttslIYyI3kASb60FvZakA==","signatures":[{"sig":"MEQCIEhMjK1ba0gOXeFLAxswBn8D4DAkMNoBQKnP7kMMUIpHAiBUEHS4NUUuGTninvKcj9Ieh39BHJymwtwlHlJBlP1G8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"34433319ed4ccb0e7dbbb11103633a0ef464429b","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"f1a99e72fef0bdfd04d91cc5cc6b6bfd2adee657","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.5":{"name":"cordova-plugin-network-information","version":"0.2.5","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.5","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"2ea70f8c2fcbe3ef785b330d48d06f5f2649dd31","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.5.tgz","integrity":"sha512-akx1AJgh6GA8/d62BzjI/kggTSZNvLtlaXbVadjkWKsOLRuPqNJpuE8tKHTW+i1/0rJzXbpdBu9vFfwottalxw==","signatures":[{"sig":"MEYCIQCgzGmfku+LuL4GSgiGM0nFFJnWxr2lUJEM/azrFedJ3wIhAJ7myA3YDbFDRvXT0fVZB9VlK6aUiO3pSoCJPHUe2Ok2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"2ea70f8c2fcbe3ef785b330d48d06f5f2649dd31","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"8a48f84fccad0db8df351be0904f139c9e305148","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.6":{"name":"cordova-plugin-network-information","version":"0.2.6","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.6","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"0c1ad1d0924a6926fdec7d75914422144d5f0143","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.6.tgz","integrity":"sha512-r+sdV49LZE0DFqX1g4wzLE6JseDrwq+G5L7Poh4YM31SrdEMOICHvkN55y4BYazkeyC/eoKPeiZii+2UAe2rFg==","signatures":[{"sig":"MEQCIDw9xxoMwrr5VfelLrsi9NUr+aP9RtWwVkfsgrORKWUsAiB5un3AHlSDCSzjYvc0cZeFIReRCGP/KB/AcJxhBH4Q7g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"0c1ad1d0924a6926fdec7d75914422144d5f0143","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"d9817d8b4bbb5531c7cc3fc71e53ffa4542ad2d2","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.7":{"name":"cordova-plugin-network-information","version":"0.2.7","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.7","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"b1ea52ef280b0d331846f9d3cfdacd4120322bdf","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.7.tgz","integrity":"sha512-aVY1GZrQAq0lHQ/QCPobzEg48QJxmth1R/ohyJxQ9zWt+id1JykuK7ljns9H7VC1UbNKukpBOUxP6MUM19rtWA==","signatures":[{"sig":"MEQCIEbI7kz/BWVbgFrMTM6Shjoy1aWSviZzTCwsLG66vAHBAiBcPY48Br2O0UGUSoV48xymrpgeH+4uUtK524vnz4zpmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b1ea52ef280b0d331846f9d3cfdacd4120322bdf","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"cd67d7a30f51efe7b2e3adb098ae65409d292d21","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.8":{"name":"cordova-plugin-network-information","version":"0.2.8","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.8","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"504b26636ff97d293116801c1dc3cbd968c4dfac","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.8.tgz","integrity":"sha512-Tlom11S0QFFUF8jv7SF5L1+dhMnvr+G7lr8MLRmE+IVcxLjb31XxJXibNE5lEuafx9f0yo8vjLy2CH3M6bpYdw==","signatures":[{"sig":"MEUCICU69XXEUaY6iwZ1sfn9Yr+hVDyJHXbh/tq/mWwYGENAAiEA4DNm4nzKNS/d9b4E5DBXLCWxI9TWkoO+8QUl4GRVV38=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"504b26636ff97d293116801c1dc3cbd968c4dfac","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"a3e7f1a135db00b21fe8ec635ae9742f390e170e","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"0.2.9":{"name":"cordova-plugin-network-information","version":"0.2.9","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@0.2.9","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"629f690e3bf98a1bfe9c3c5549e7837c2d0f1481","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-0.2.9.tgz","integrity":"sha512-ZPt9owF85doHVuNf8vP3pbK6x9mR06IcG71gnNJf1mkRq/qJC4qlrGs42nesDNbWAfPoAheG67uLuG0TkVBGnA==","signatures":[{"sig":"MEUCIQC1aP3sAEu38MSVUVaZI8gg/UuLxWOK96n85EHycAGFFQIgRy2qDlRJjEhQyknwHVBdSk3Ga2z7DSseBZctBvtroHQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"629f690e3bf98a1bfe9c3c5549e7837c2d0f1481","cordova":{"id":"org.apache.cordova.network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"gitHead":"be5875f9d9824bf41ddc8b9771a704f1e8719e9a","scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"1.0.0":{"name":"cordova-plugin-network-information","version":"1.0.0","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@1.0.0","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"dist":{"shasum":"57a764a3162330fb77640ec6e88cdf3782b660f7","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.0.0.tgz","integrity":"sha512-ppPOgAFLsxLBiIctMvcuYG9a6BQl1JP7wqVCaoXZBB1on26U7pwig3rKvWxgs6bpm/BPum70wRwuyC4Al0Mokw==","signatures":[{"sig":"MEUCIFxRkT1d/YluVOtQZBkPSNk/+5m1ZWjseLluafkLeWaFAiEAn9zTPBEV66fztbaaqC2p8yJkcuB0mModgqiuKgYYZYs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-1.0.0.tgz","_shasum":"57a764a3162330fb77640ec6e88cdf3782b660f7","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-plugin-network-information-1.0.0.tgz","repository":{"url":"https://git-wip-us.apache.org/repos/asf/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.7.6","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"1.0.1":{"name":"cordova-plugin-network-information","version":"1.0.1","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@1.0.1","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"b489bbb973a273f44040789d11f1152fd03795ef","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.0.1.tgz","integrity":"sha512-D5ftfR5PtUSV21jYitjtEBH3h0YL1I7r0+rbkCw6o/3YGFpyY+044W2EtT+twpJCkePy/FPEF7TeIRqWVpEGrQ==","signatures":[{"sig":"MEUCIFykV1HTJZX7X+gBWJyVOYd2UT1NTThn/zjcr7RtM5A1AiEApDnXlxM6Ml9YwrIbQjrjL59bc0m84XBiDAh63qo3isw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-1.0.1.tgz","_shasum":"b489bbb973a273f44040789d11f1152fd03795ef","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-plugin-network-information-1.0.1.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"2.9.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"0.10.36"},"1.1.0":{"name":"cordova-plugin-network-information","version":"1.1.0","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@1.1.0","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"39da4bbd006f3ff6cafd43f89efbb32822cd1b58","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.1.0.tgz","integrity":"sha512-1zB1p+xmzxsWZsX11nEf/fWQg3RPbmn5ey5Qq7/3/kg+nLFJZ2DqWkbOZIUj83pbk2KrPn6oDJVd9y7xEpVjfw==","signatures":[{"sig":"MEUCIQC+UfzeyZ/opkjrxRiOT/zOnN/wUNb96Z1TZbOgV29SLAIgUfPy304ZD1IzvsakoPouHxZdxXiUrUX2tYDumXwT0+g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-1.1.0.tgz","_shasum":"39da4bbd006f3ff6cafd43f89efbb32822cd1b58","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-plugin-network-information-1.1.0.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"3.3.12","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"5.0.0"},"1.2.0":{"name":"cordova-plugin-network-information","version":"1.2.0","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache 2.0","_id":"cordova-plugin-network-information@1.2.0","maintainers":[{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"5663a2d5da2417e1a6e25c6d4d4b028b753f5787","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.2.0.tgz","integrity":"sha512-PZklOx11pFZq4ZT0MVDr3SNiyDQlTIpN1zdX8pMGijfruhUKr9KkajW2txA08Jspp8j8v3QYVMd0usNLbH9ZSQ==","signatures":[{"sig":"MEQCIHc9802tmtcydKqZYoTv+CZreuTEFsWv57+8qMt7XG8TAiA/lKlD41eff0ll337JOEJtZotssWMAo1ob83NZxHT6oA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-1.2.0.tgz","_shasum":"5663a2d5da2417e1a6e25c6d4d4b028b753f5787","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"scripts":{},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-plugin-network-information-1.2.0.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"3.5.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"5.0.0"},"1.2.1":{"name":"cordova-plugin-network-information","version":"1.2.1","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@1.2.1","maintainers":[{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"1fd7b72af0662415b955c57638f7b7767c843d98","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.2.1.tgz","integrity":"sha512-FhfKxi5pHg0S2DC2gBqLpMuYdUYVnct1EVPgK/P5sUJW/77mWHnovHfUcUwMyFo41z3RACTj+0k2L4viW5hlmA==","signatures":[{"sig":"MEYCIQCq+Br+JUkEyIu6drAU3zXLvjH6awLA7C6/uxRn7zGxiQIhAPtPWptG/MGXX6KNL2stKU3MGWxjlnTYND44daFX5bth","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-1.2.1.tgz","_shasum":"1fd7b72af0662415b955c57638f7b7767c843d98","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"scripts":{"test":"npm run jshint","jshint":"jshint www && jshint src && jshint tests"},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-plugin-network-information-1.2.1.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"3.5.3","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information-1.2.1.tgz_1461189880126_0.5173572518397123","host":"packages-12-west.internal.npmjs.com"}},"1.3.0":{"name":"cordova-plugin-network-information","version":"1.3.0","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@1.3.0","maintainers":[{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"80461839c418717a15d2b04eeb63c523b319b2a4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.3.0.tgz","integrity":"sha512-EcDETbmWcrkP+LK+sANde0V+vRseElip/Gih0ItPNgRgvX51pH7GUbV+cESMGddLDELp6cJSbNxmCWOOpvOd9g==","signatures":[{"sig":"MEQCIEnXKdQLAP5myaoznqsNtH/n8CrVxMVyyfDGazh86vzGAiAhv6CjtTlgVGdDNppxMvWPS+cdH8z79rp3JmKYv/vG8g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-dist-dev/CB-11832/cordova-plugin-network-information-1.3.0.tgz","_shasum":"80461839c418717a15d2b04eeb63c523b319b2a4","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"engines":{"cordovaDependencies":{"2.0.0":{"cordova":">100"}}},"scripts":{"test":"npm run jshint","jshint":"jshint www && jshint src && jshint tests"},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-dist-dev/CB-11832/cordova-plugin-network-information-1.3.0.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"3.10.6","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information-1.3.0.tgz_1473901456658_0.127251201774925","host":"packages-16-east.internal.npmjs.com"}},"1.3.1":{"name":"cordova-plugin-network-information","version":"1.3.1","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@1.3.1","maintainers":[{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"23a870681e60653a63f5bcbbb244ee73c4191328","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.3.1.tgz","integrity":"sha512-d+Rz+Dk3brB6MWwmN3So1h0djZjxzgsINCi8pasdZvNnoU9Ng+E6X85rA6t0jpOHlRBehWr1BUTDTQ4zTqUe8w==","signatures":[{"sig":"MEQCIHxy+HOwoxkefe328DL33+fG1NYroUPYF1NZXiZUXY4LAiAlworze9vzdfrvotNGkv44L2Sof//jxYgfaGmDe/7RQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-1.3.1.tgz","_shasum":"23a870681e60653a63f5bcbbb244ee73c4191328","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"engines":{"cordovaDependencies":{"2.0.0":{"cordova":">100"}}},"scripts":{"test":"npm run jshint","jshint":"jshint www && jshint src && jshint tests"},"_npmUser":{"name":"anonymous","email":"shazron@gmail.com"},"_resolved":"file:cordova-plugin-network-information-1.3.1.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"3.10.9","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"6.7.0","devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information-1.3.1.tgz_1481567774084_0.8978190456982702","host":"packages-18-east.internal.npmjs.com"}},"1.3.2":{"name":"cordova-plugin-network-information","version":"1.3.2","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@1.3.2","maintainers":[{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"ad9d34a63f7f809dad3ace66fe60e4e05401e27c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.3.2.tgz","integrity":"sha512-I4d0CV9JMmuPGiHClxzt1duXtiqjDIsrGvAO5LS137xULXEvkQy0KywtfD2qi9O6kiLVo4t/35BuSSceHuMcUA==","signatures":[{"sig":"MEQCIHIpBDhUMSdxr+rJan52pbLK8p0z0pPmY2t5mL95Lx7bAiAUguCNRCLzyEMGwRPronAX/jEZi1VhdOc10TlmFVIx9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-dist/plugins/cordova-plugin-network-information-1.3.2.tgz","types":"./types/index.d.ts","_shasum":"ad9d34a63f7f809dad3ace66fe60e4e05401e27c","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"engines":{"cordovaDependencies":{"2.0.0":{"cordova":">100"}}},"scripts":{"test":"npm run jshint","jshint":"jshint www && jshint src && jshint tests"},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-dist/plugins/cordova-plugin-network-information-1.3.2.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"4.1.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information-1.3.2.tgz_1488934512074_0.9448198562022299","host":"packages-18-east.internal.npmjs.com"}},"1.3.3":{"name":"cordova-plugin-network-information","version":"1.3.3","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@1.3.3","maintainers":[{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"0ea9aa5c1124cf7cbd6f84f828a542cbd24a8518","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.3.3.tgz","integrity":"sha512-8leK7acDF4uw8eudRd1VD3vhjyYG/WLjcgwxQCMuLQFBRrWD+vTf8M2AkExN3Y0wWBrd1aa54Vzlvw0nG+pLNw==","signatures":[{"sig":"MEUCIBYFBe+IBeKXjUG7oPG8KGCtuCEiYVSWNZfqei69QlfIAiEAlf26rICxQF5IooOmID+BDn2kEpyMw/vpbuFmr5sffrY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-1.3.3.tgz","types":"./types/index.d.ts","_shasum":"0ea9aa5c1124cf7cbd6f84f828a542cbd24a8518","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"engines":{"cordovaDependencies":{"2.0.0":{"cordova":">100"}}},"scripts":{"test":"npm run jshint","jshint":"jshint www && jshint src && jshint tests"},"_npmUser":{"name":"anonymous","email":"maj.fil@gmail.com"},"_resolved":"file:cordova-plugin-network-information-1.3.3.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"3.10.10","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"6.10.1","devDependencies":{"jshint":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information-1.3.3.tgz_1493685649926_0.8318859627470374","host":"packages-12-west.internal.npmjs.com"}},"1.3.4":{"name":"cordova-plugin-network-information","version":"1.3.4","keywords":["cordova","network","information","ecosystem:cordova","cordova-firefoxos","cordova-android","cordova-amazon-fireos","cordova-ubuntu","cordova-ios","cordova-blackberry10","cordova-wp7","cordova-wp8","cordova-windows8","cordova-windows","cordova-tizen","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@1.3.4","maintainers":[{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://issues.apache.org/jira/browse/CB"},"dist":{"shasum":"28f426cc2659174dc622a07180f9ba0d855f7383","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-1.3.4.tgz","integrity":"sha512-M1a9zJ06sghc7zFQTWxEenpBde4BM8Dd5n3YGJ9xV1S46x38rjkSSWKyf+d6BkmrfYzwRK7y+6lr5qgJ94XoXg==","signatures":[{"sig":"MEUCIQDzJPP+loWrrjggBAN5ugxV6oD1oqI3bihXSlBmttrkyQIgcLaXpDk2PjW5MdOAeqhpXC5Qzgo8PhlJnYacEUHhIaA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-1.3.4.tgz","types":"./types/index.d.ts","_shasum":"28f426cc2659174dc622a07180f9ba0d855f7383","cordova":{"id":"cordova-plugin-network-information","platforms":["firefoxos","android","amazon-fireos","ubuntu","ios","blackberry10","wp7","wp8","windows8","windows","tizen","browser"]},"engines":{"cordovaDependencies":{"2.0.0":{"cordova":">100"}}},"scripts":{"test":"npm run eslint","eslint":"eslint www && eslint src && eslint tests"},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-plugin-network-information-1.3.4.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"4.6.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"6.6.0","devDependencies":{"eslint":"^4.0.0","eslint-plugin-node":"^5.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","eslint-config-semistandard":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information-1.3.4.tgz_1510361675508_0.08514285227283835","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"cordova-plugin-network-information","version":"2.0.0","keywords":["cordova","network","information","ecosystem:cordova","cordova-android","cordova-ios","cordova-windows","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@2.0.0","maintainers":[{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://issues.apache.org/jira/browse/CB"},"dist":{"shasum":"6de624600dfbcd3c42374d89c4e4e12f8097b057","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-2.0.0.tgz","integrity":"sha512-fw1UiZaIFWsOzrqvI6uWeSW+cjxvPowPRWeteSKTzAVDd7XxjviSLW/ODV1d50Fn+UlLprLpw5FOe7keTskMkA==","signatures":[{"sig":"MEYCIQCEILnwyHB+Ggd86QgCqMxxFb/OKGl3i7MYNgA80vLu8gIhAJsPaBtY078DCljtoHH5ha7hEvMc0n6vSWv8eLzKS6cI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-2.0.0.tgz","types":"./types/index.d.ts","_shasum":"6de624600dfbcd3c42374d89c4e4e12f8097b057","cordova":{"id":"cordova-plugin-network-information","platforms":["android","ios","windows","browser"]},"engines":{"cordovaDependencies":{"2.0.0":{"cordova":">100"}}},"scripts":{"test":"npm run eslint","eslint":"eslint www && eslint src && eslint tests"},"_npmUser":{"name":"anonymous","email":"stevengill97@gmail.com"},"_resolved":"file:cordova-plugin-network-information-2.0.0.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"4.6.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"8.9.3","devDependencies":{"eslint":"^4.0.0","eslint-plugin-node":"^5.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","eslint-config-semistandard":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information-2.0.0.tgz_1513795167449_0.049930664245039225","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"cordova-plugin-network-information","version":"2.0.1","keywords":["cordova","network","information","ecosystem:cordova","cordova-android","cordova-ios","cordova-windows","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@2.0.1","maintainers":[{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://issues.apache.org/jira/browse/CB"},"dist":{"shasum":"e90421f430c6ab76d409223f25fcefbbbce17690","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-2.0.1.tgz","integrity":"sha512-UFGGdDMb1248cOIq29cWqILqCFHk930RbpUE6XmIlZKRYH2A2L7fTfDnHSUCsDJxixmWZbLA6CuRbMm5t89Z9Q==","signatures":[{"sig":"MEUCIQC3g/8tKW0Z/tU3vIWxCXVx3k+ZNHlyZUgtUdl3Q9AehAIgLxZbVVAzRLYxatDvLNllR1PM6W3H6BZvRa4uJwYue1w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":"cordova-plugin-network-information-2.0.1.tgz","types":"./types/index.d.ts","_shasum":"e90421f430c6ab76d409223f25fcefbbbce17690","cordova":{"id":"cordova-plugin-network-information","platforms":["android","ios","windows","browser"]},"engines":{"cordovaDependencies":{"3.0.0":{"cordova":">100"}}},"scripts":{"test":"npm run eslint","eslint":"eslint www && eslint src && eslint tests"},"_npmUser":{"name":"anonymous","email":"simon.macdonald@gmail.com"},"_resolved":"file:cordova-plugin-network-information-2.0.1.tgz","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"4.6.1","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"8.2.1","devDependencies":{"eslint":"^4.0.0","eslint-plugin-node":"^5.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","eslint-config-semistandard":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information-2.0.1.tgz_1514690812908_0.38823607726953924","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"cordova-plugin-network-information","version":"2.0.2","keywords":["cordova","network","information","ecosystem:cordova","cordova-android","cordova-ios","cordova-windows","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@2.0.2","maintainers":[{"name":"anonymous","email":"anis.kadri@gmail.com"},{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"chris@brody.consulting"},{"name":"anonymous","email":"apachecordovabot@gmail.com"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"darryl@dpogue.ca"},{"name":"anonymous","email":"erisu.dev@outlook.jp"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"jcesarmobile@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"piotrowski+npmjs.com@gmail.com"},{"name":"anonymous","email":"suraj.pindoria@yahoo.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"f48a92cbd7cccb63cb0a5e5a00030001b8ac4fea","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-2.0.2.tgz","fileCount":21,"integrity":"sha512-NwO3qDBNL/vJxUxBTPNOA1HvkDf9eTeGH8JSZiwy1jq2W2mJKQEDBwqWkaEQS19Yd/MQTiw0cykxg5D7u4J6cQ==","signatures":[{"sig":"MEUCIQDKtY2DRo8b2GXz2uxAviB470Rk/WmqexChqd8uDdFU4QIgF0RWTeMtgHBHixCL9y6uFPhs4C+hlOn+ow6mAWbNZj8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90154,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdG52RCRA9TVsSAnZWagAAxoIP/1EhqGmDa7VNDyoDo35d\n8X15mg+g7JABncdUSzo3lHxoFAjd5CKeAr6ziWtOLxSXnPsNEBzOqw4ZD1L1\nxpeQyNwxxdSE3a8fAFPWiOBo2fGU/4dqFVVYQaas0gh80bcP7D7L++xuq5iE\nXzF9PRGIGlzEsgjsBIgJjrJeo1L3M/lzsE3QqlvL6cmN/JpbbbGkwko/kiNO\nDGK2n4MYvYi2SIVP3YEQv8GgUoCGUjJf0mqaTKrWx5JGLHmzjkqqkfI8Sg/E\n9TCddGATX++Js6VNU/MTD9WpBPggOVLlStoZwBVcChw9QQckOtbw4QhHmAkg\n/Md4Z40kUZxyye3jStOA77lyaN9aSAshvVUG5P5U/Zip/BzL5r0OVhHAkiwc\n2MbQWZHbHJZauBlUjkmhNtOYNcEVMI3vyRUI7lAvfnuLcaeSy8W8GIpnRjvK\neQPZT2EUB/7kY+/GQIUM3potwist90z3MWoBPXuzcublbN/Zigv6wP2vIATO\n6ZZA4pz9EKdYnZLbqhQCiVgtdKBD3vzqoFi4b7eVQBh5/WjjdRaLqslmvNFH\nTRc6ILC6dnduvUHal/S3CP1tDQn9WDujFB/p4gQbXAh4muvzVa08ZB/nkSt/\nzNs3xNz5ZFJPO2sgmJ3gmt42fP45mtj/l8Bipwl3nmZgk/eSOYJDXDZiInV+\nzlis\r\n=8I6i\r\n-----END PGP SIGNATURE-----\r\n"},"_from":"file:C:/Users/Jan/.cort/cordova-dist-release/plugins/cordova-plugin-network-information-2.0.2.tgz","types":"./types/index.d.ts","cordova":{"id":"cordova-plugin-network-information","platforms":["android","ios","windows","browser"]},"engines":{"cordovaDependencies":{"3.0.0":{"cordova":">100"}}},"scripts":{"test":"npm run eslint","eslint":"eslint www && eslint src && eslint tests"},"_npmUser":{"name":"anonymous","email":"piotrowski+npmjs.com@gmail.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"6.9.0","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"12.3.1","_hasShrinkwrap":false,"devDependencies":{"eslint":"^4.0.0","eslint-plugin-node":"^5.0.0","eslint-plugin-import":"^2.3.0","eslint-plugin-promise":"^3.5.0","eslint-config-standard":"^10.2.1","eslint-plugin-standard":"^3.0.1","eslint-config-semistandard":"^11.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information_2.0.2_1562090896573_0.9550146952299199","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"cordova-plugin-network-information","version":"3.0.0","keywords":["cordova","network","information","ecosystem:cordova","cordova-android","cordova-ios","cordova-windows","cordova-browser"],"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","_id":"cordova-plugin-network-information@3.0.0","maintainers":[{"name":"anonymous","email":"norman@nbsolutions.ca"},{"name":"anonymous","email":"chris.brody+brodybits@gmail.com"},{"name":"anonymous","email":"darryl@dpogue.ca"},{"name":"anonymous","email":"apachecordovabot@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"anis.kadri@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"pindoria.suraj@gmail.com"},{"name":"anonymous","email":"erisu.dev@outlook.jp"},{"name":"anonymous","email":"NiklasMerz@gmx.net"},{"name":"anonymous","email":"piotrowski+npm@gmail.com"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"jcesarmobile@gmail.com"},{"name":"anonymous","email":"pieter.vanpoyer@portofantwerp.com"}],"homepage":"https://github.com/apache/cordova-plugin-network-information#readme","bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"dist":{"shasum":"8b5546b56b44e6d2c69be7cc920d5e134cbb2b7f","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-3.0.0.tgz","fileCount":17,"integrity":"sha512-bBtP3PxIX8vshsfR0+F6co2e2cFLgjt18yKIdigzMwk6ANudWQ72RB3g2qMPyT6fBDWmUyE1Qd+bKQB/fZtQwQ==","signatures":[{"sig":"MEUCIDgpbTe5lJU/oyXpfZFsFCzGsA6aYQf97JKl2NoPqx1xAiEAxmOLrezjwyeNJ48AiA5mfh49g2J9sAhv7eJHOGky+0o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":84743,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvMM2CRA9TVsSAnZWagAAFukP/1d/gQTmNHmo/iTUGNwq\nFF+ezBYmjXyt3yT0LQ7ADds+dTrdIHel9KDodZVb+piY2Xbi80rbwDJ3Toni\n08P6DALwy1eLv4LHullQnnoi/DdmVoREE3dIchyZKp6lqu0/aOdBvYOExxtQ\nFMZy5FYi90x+1W6EhIoScT/WVcZsX0LF7Kbshmk1oBvCpgAxjqaJhj4vzSiV\nfAmlYZQkMKv7bJM26OH9OwwonvWSNNGUC0hyuet6GvELUcR8JGw/E2ctwpYd\nh9/DqGCwgVvWBkuxbjYL199wPlnuZfRDj3l/VdKG53slyFnU/dEjn4PPNMg+\nEcLXFtcowlTDQ60V99S8nrdP7RCFfWgoFxMclheJ+KkfYgcVRtvKejtHx9Lx\nu/dxWHylwNBkii4BD7WWghZn1S8bczv5YYKBBBjh+SDwKjAeiqC9cth71BoL\nCke0R6Jz5dTX+ngWgwv+WYfOEnlFevvYUqda5GV9KxkN/wkJWpm+BM3G2h/U\nKoDSx9wcvC3/1YsR1tBvOkS51AwXeCg4GAgfcze1KWQuqVj3HeTaaFuMlGdB\nwAays4OyDkZSgqJVjQGVVxMvcZQbLE4by45EE5J111K0l3a1RJAKBl2EEGMd\njXP6uk9o0/WU+ZiUOqjLmUaZXfaTXEyvltA97xc8twji43JQTjnVWS2htQit\ntCCL\r\n=oVMl\r\n-----END PGP SIGNATURE-----\r\n"},"_from":"file:cordova-plugin-network-information-3.0.0.tgz","types":"./types/index.d.ts","cordova":{"id":"cordova-plugin-network-information","platforms":["android","ios","windows","browser"]},"engines":{"cordovaDependencies":{"3.0.0":{"cordova":">=9"},"4.0.0":{"cordova":">100"}}},"scripts":{"lint":"eslint .","test":"npm run lint"},"_npmUser":{"name":"anonymous","email":"pieter.vanpoyer@portofantwerp.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/apache/cordova-plugin-network-information.git","type":"git"},"_npmVersion":"6.14.8","description":"Cordova Network Information Plugin","directories":{},"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"devDependencies":{"@cordova/eslint-config":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/cordova-plugin-network-information_3.0.0_1622983478266_0.8814247953975387","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"cordova-plugin-network-information","version":"3.1.0","description":"Cordova Network Information Plugin","types":"./types/index.d.ts","cordova":{"id":"cordova-plugin-network-information","platforms":["android","ios","windows","browser"]},"repository":{"type":"git","url":"git+https://github.com/apache/cordova-plugin-network-information.git"},"bugs":{"url":"https://github.com/apache/cordova-plugin-network-information/issues"},"keywords":["cordova","network","information","ecosystem:cordova","cordova-android","cordova-ios","cordova-windows","cordova-browser"],"scripts":{"test":"npm run lint","lint":"eslint .","lint:fix":"npm run lint -- --fix"},"author":{"name":"Apache Software Foundation"},"license":"Apache-2.0","engines":{"cordovaDependencies":{"3.0.0":{"cordova":">=9"},"4.0.0":{"cordova":">100"}}},"devDependencies":{"@cordova/eslint-config":"^6.0.1"},"_id":"cordova-plugin-network-information@3.1.0","homepage":"https://github.com/apache/cordova-plugin-network-information#readme","_integrity":"sha512-HH48zrKkPlNc+dgckszTYM3Bg/ox9ZHZh4wqbP6NIy7szeVEXa/YPe/liseZrehVoXu5Rj8YG+D4r1oS9EGoSw==","_resolved":"/Users/erisu/projects/apache/cordova/upstream/cordova-dist/plugins/cordova-plugin-network-information-npm-3.1.0.tgz","_from":"file:plugins/cordova-plugin-network-information-npm-3.1.0.tgz","_nodeVersion":"24.13.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-HH48zrKkPlNc+dgckszTYM3Bg/ox9ZHZh4wqbP6NIy7szeVEXa/YPe/liseZrehVoXu5Rj8YG+D4r1oS9EGoSw==","shasum":"dd4e72c0cc933c53f9e79b712bc57511709f65a8","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/cordova-plugin-network-information/-/cordova-plugin-network-information-3.1.0.tgz","fileCount":19,"unpackedSize":97559,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQC131rm5HPufUpLEqjEkL2EIN2TWQUgGMYI0u2+tsAZ1wIgPht7a2WpBT0kocU9dzS9E1Q24pExCh3wcxBvKu684dE="}]},"_npmUser":{"name":"anonymous","email":"erisu.dev@outlook.jp"},"directories":{},"maintainers":[{"name":"anonymous","email":"chris.brody+brodybits@gmail.com"},{"name":"anonymous","email":"darryl@dpogue.ca"},{"name":"anonymous","email":"apachecordovabot@gmail.com"},{"name":"anonymous","email":"stevengill97@gmail.com"},{"name":"anonymous","email":"purplecabbage@gmail.com"},{"name":"anonymous","email":"anis.kadri@gmail.com"},{"name":"anonymous","email":"maj.fil@gmail.com"},{"name":"anonymous","email":"bowserj@apache.org"},{"name":"anonymous","email":"shazron@gmail.com"},{"name":"anonymous","email":"pindoria.suraj@gmail.com"},{"name":"anonymous","email":"erisu.dev@outlook.jp"},{"name":"anonymous","email":"niklasmerz@linux.com"},{"name":"anonymous","email":"piotrowski+npm@gmail.com"},{"name":"anonymous","email":"norman@breautek.com"},{"name":"anonymous","email":"pieter.vanpoyer@portofantwerp.com"},{"name":"anonymous","email":"csantana23@gmail.com"},{"name":"anonymous","email":"simon.macdonald@gmail.com"},{"name":"anonymous","email":"jcesarmobile@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/cordova-plugin-network-information_3.1.0_1778961391510_0.6308199359794251"},"_hasShrinkwrap":false}},"name":"cordova-plugin-network-information","time":{"created":"2015-01-30T00:53:05.017Z","modified":"2026-05-16T19:56:31.773Z","0.0.1":"2015-01-30T00:53:05.017Z","0.2.1":"2015-02-25T08:48:11.527Z","0.2.10":"2015-02-25T08:48:12.890Z","0.2.11":"2015-02-25T08:48:13.967Z","0.2.12":"2015-02-25T08:48:15.124Z","0.2.13":"2015-02-25T08:48:16.522Z","0.2.14":"2015-02-25T08:48:17.581Z","0.2.15":"2015-02-25T08:48:18.672Z","0.2.3":"2015-02-25T08:48:19.798Z","0.2.4":"2015-02-25T08:48:21.272Z","0.2.5":"2015-02-25T08:48:22.325Z","0.2.6":"2015-02-25T08:48:23.437Z","0.2.7":"2015-02-25T08:48:25.100Z","0.2.8":"2015-02-25T08:48:26.945Z","0.2.9":"2015-02-25T08:48:28.035Z","1.0.0":"2015-04-21T22:30:14.272Z","1.0.1":"2015-06-22T23:08:33.595Z","1.1.0":"2015-11-24T23:35:06.005Z","1.2.0":"2016-01-20T01:27:35.263Z","1.2.1":"2016-04-20T22:04:40.520Z","1.3.0":"2016-09-15T01:04:19.102Z","1.3.1":"2016-12-12T18:36:16.109Z","1.3.2":"2017-03-08T00:55:14.078Z","1.3.3":"2017-05-02T00:40:50.201Z","1.3.4":"2017-11-11T00:54:35.609Z","2.0.0":"2017-12-20T18:39:27.595Z","2.0.1":"2017-12-31T03:26:53.110Z","2.0.2":"2019-07-02T18:08:16.738Z","3.0.0":"2021-06-06T12:44:38.437Z","3.1.0":"2026-05-16T19:56:31.640Z"},"readmeFilename":"README.md","homepage":"https://github.com/apache/cordova-plugin-network-information#readme"}