Error on npm install

I receive the following warnings and errors when trying to run NPM install.

npm WARN deprecated husl@5.0.3: Project renamed to HSLuv
npm WARN deprecated feature-filter@2.2.0: This package has been merged into the ‘mapbox-gl-style-spec’ package
npm WARN deprecated mapbox-gl-function@1.3.0: This package has been merged with the ‘mapbox-gl-style-spec’ package
npm WARN deprecated point-geometry@0.0.0: This module has moved: please install @mapbox/point-geometry instead
npm WARN deprecated shelf-pack@1.1.0: This module is now under the @mapbox namespace: install @mapbox/shelf-pack instead
npm WARN deprecated vector-tile@1.3.0: This module has moved: please install @mapbox/vector-tile instead
npm WARN deprecated unitbezier@0.0.0: This module has moved: switch to @mapbox/unitbezier
npm WARN deprecated whoots-js@2.1.0: This module is now under the @mapbox namespace: install @mapbox/whoots-js instead
npm WARN deprecated geojson-area@0.1.0: This module is now under the @mapbox namespace: install @mapbox/geojson-area instead

C:\Program Files\Git\cmd\git.EXE ls-remote -h -t ssh://git@github.com/mapbox/mapbox-gl-style-spec.git
error ssh: connect to host github.com port 22: Connection timed out
error fatal: Could not read from remote repository.
error
error Please make sure you have the correct access rights
error and the repository exists.
error
error exited with error code: 128
verbose exit [ 1, true ]

Anyone else have this problem ?

What version of npm are you using?

Node JS 8.9.3
NPM 5.5.1

You might want to lookup https://github.com/plotly/plotly.js/issues/2104 for possible workarounds.

If you install the package but you still get the error, then follow the steps below:
delete the node modules folder by running rm -rf node_modules.
delete package. lock. json file by running rm -f package-lock.
clean up the NPM cache by running npm cache clean --force.
install all packages again by running npm install.

Regards,
Rachel Gomez