Bump semver and cordova-common

Removes [semver](https://github.com/npm/node-semver). It's no longer used after updating ancestor dependency [cordova-common](https://github.com/apache/cordova-common). These dependencies need to be updated together.


Removes `semver`

Updates `cordova-common` from 3.2.1 to 5.0.0
- [Changelog](https://github.com/apache/cordova-common/blob/master/RELEASENOTES.md)
- [Commits](https://github.com/apache/cordova-common/compare/3.2.1...5.0.0)

---
updated-dependencies:
- dependency-name: semver
  dependency-type: indirect
- dependency-name: cordova-common
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2 files changed
tree: a17636420be21bfa5767f17d02080f09c1fb8a19
  1. .github/
  2. spec/
  3. src/
  4. .asf.yaml
  5. .gitignore
  6. CONTRIBUTING.md
  7. LICENSE
  8. NOTICE
  9. package-lock.json
  10. package.json
  11. PlatformRequirements.md
  12. README.md
README.md

cordova-test-platform

This repo contains the code for an Apache Cordova platform that allows you to build applications that target NOTHING. This platform is purely for testing, although it is also a good resource to see the minimum requirements to implement a new platform.

Apache Cordova is a project of The Apache Software Foundation (ASF)

How to Use This

This repository contains a reference implementation of Cordova's Platform API. The Platform API defines interfaces for Cordova tooling to be able to create, build/compile, run/emulate and clean Cordova projects targeted at a specific platform. Core Cordova platforms such as cordova-android and cordova-ios implement this API. This API is then used by tools such as cordova-cli and cordova-lib when managing platform-specific actions in cross-platform Cordova projects.

Further Reading