From ca60b98cabaac1ec1a831af208ee4cca614483af Mon Sep 17 00:00:00 2001 From: "K. Shankari" Date: Wed, 17 Jan 2018 22:25:33 -0800 Subject: [PATCH] Add a package.json to allow installing the plugin into cordova This is part of the cordova-7 changes https://cordova.apache.org/news/2017/05/04/cordova-7.html > Platforms and plugins are now required to have a package.json file --- package.json | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..793a76c --- /dev/null +++ b/package.json @@ -0,0 +1,50 @@ +{ + "name": "em-cordova-server-communication", + "version": "1.0.1", + "description": "Simple package that stores all the connection settings that need to be configured", + "cordova": { + "id": "em-cordova-server-communication", + "platforms": [ + "android", + "ios", + "windows" + ] + }, + "repository": { + "type": "git", + "url": "git+https://github.com/e-mission/cordova-server-communication.git" + }, + "keywords": [ + "emission", + "connection", + "settings", + "ecosystem:cordova", + "cordova-ios", + "cordova-android" + ], + "engines": [ + { + "name": "cordova", + "version": ">=3.6.0" + }, + { + "name": "cordova-android", + "version": ">=6.0.0" + }, + { + "name": "android-sdk", + "version": ">=26" + }, + { + "name": "apple-ios", + "version": ">=10.0.0" + } + ], + "author": "K. Shankari", + "license": "BSD 3-clause", + "bugs": { + "url": "https://github.com/e-mission/cordova-server-communication/issues" + }, + "homepage": "https://e-mission/cordova-server-communication" +} +