@mparticle/cordova-rokt-payment-extension 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +23 -0
  2. package/plugin.xml +17 -0
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@mparticle/cordova-rokt-payment-extension",
3
+ "version": "4.0.1",
4
+ "description": "Adds Rokt payment extension support (Apple Pay, AfterPay/Clearpay, PayPal via Stripe) to your Cordova project",
5
+ "homepage": "https://www.mparticle.com",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/mParticle/cordova-plugin-mparticle",
9
+ "directory": "Kits/RoktPaymentExtension"
10
+ },
11
+ "license": "Apache-2.0",
12
+ "publishConfig": {
13
+ "access": "public",
14
+ "provenance": false,
15
+ "registry": "https://registry.npmjs.org/"
16
+ },
17
+ "cordova": {
18
+ "id": "@mparticle/cordova-rokt-payment-extension",
19
+ "platforms": [
20
+ "ios"
21
+ ]
22
+ }
23
+ }
package/plugin.xml ADDED
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
3
+ id="@mparticle/cordova-rokt-payment-extension"
4
+ version="4.0.1">
5
+ <name>MParticle Rokt Payment Extension Kit</name>
6
+ <description>Adds Rokt payment extension support (Apple Pay, AfterPay/Clearpay, PayPal via Stripe) to your Cordova project</description>
7
+ <platform name="ios">
8
+ <podspec>
9
+ <config>
10
+ <source url="https://cdn.cocoapods.org/"/>
11
+ </config>
12
+ <pods use-frameworks="true">
13
+ <pod name="RoktPaymentExtension" spec="~> 2.0" />
14
+ </pods>
15
+ </podspec>
16
+ </platform>
17
+ </plugin>