Ionic state restore

When i do ionic state restore, it stops as below and let me know what can i do to work?

MELAS@MELAS-PC MINGW64 /d/Mobile apps/moodlemobile2-master
$ ionic state restore
Attempting to restore your Ionic application from package.json

Restoring Platforms

cordova platform add ios
cordova platform add android

Restore platforms is complete

Restoring Plugins

cordova plugin add cordova-plugin-device
cordova plugin add cordova-plugin-globalization
cordova plugin add cordova-plugin-file
cordova plugin add cordova-plugin-inappbrowser
cordova plugin add cordova-plugin-file-transfer
cordova plugin add cordova-plugin-network-information
cordova plugin add cordova-plugin-camera
cordova plugin add cordova-plugin-media-capture --variable CAMERA_USAGE_DESCRIPTION=“We’d like to access your camera to let you take a photo” --variable PHOTOLIBRARY_USAGE_DESCRIPTION=“We’d like like to open your photo library to let you pick a photo” --variable MICROPHONE_USAGE_DESCRIPTION="We’d like to access your microphone to let you record an audio"
cordova plugin add cordova-plugin-splashscreen
cordova plugin add cordova-plugin-statusbar
cordova plugin add cordova-plugin-whitelist
cordova plugin add https://github.com/Tunts/WebIntent
cordova plugin add cordova-plugin-customurlscheme --variable URL_SCHEME="moodlemobile"
cordova plugin add ionic-plugin-keyboard
cordova plugin add https://github.com/ti8m/DocumentHandler
cordova plugin add cordova-plugin-local-notifications-mm
cordova plugin add cordova-plugin-zip
cordova plugin add phonegap-plugin-push --variable SENDER_ID="302322576519"
Caught exception:
undefined

Mind letting us know? https://github.com/driftyco/ionic-cli/issues

Make sure the names of installed plugins are the same as the “Cordova Plugins” site

I had the same problem with the call-number plugin
In the fetch.json file in ./plugins the name was different than it was to be
Example:
Previous =

"Mx.ferreyra.callnumber": {
         "Source": {
             "Type": "registry",
             "Id": "call-number"
         },
         "Is_top_level": true,
         "Variables": {}
     }

New =

"Call-number": {
         "Source": {
             "Type": "git",
             "Url": "https://github.com/Rohfosho/CordovaCallNumberPlugin.git",
             "Subdir": "."
         },
         "Is_top_level": true,
         "Variables": {}
     }

I solved by adding the plugin directly through the git url
Example:
Cordova plugin add https://github.com/Rohfosho/CordovaCallNumberPlugin.git