express-cart-tea
Version:
A fully functioning Node.js shopping cart with Stripe, PayPal and Authorize.net payments.
31 lines • 682 B
JSON
{
"properties": {
"description": {
"type": "string"
},
"privateKey": {
"type": "string"
},
"mode": {
"type": "string",
"default": "test",
"enum": ["test", "live"]
},
"currency": {
"type": "string",
"default": "AUD",
"enum": ["AUD", "NZD"]
},
"supportedCountries":{
"type": "array"
}
},
"required": [
"description",
"privateKey",
"mode",
"currency",
"supportedCountries"
],
"additionalProperties": false
}