-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "payplex",
"version": "0.0.5",
"type": "module",
"description": "Transitional Provider contract kernel for PayPlex, a Vext-native enterprise payment platform. The enterprise platform runtime is not implemented yet.",
"main": "./index.js",
"exports": {
".": "./index.js"
},
"scripts": {
"test": "node --test test/core.test.js test/provider-contract.test.js test/mapped-provider.test.js",
"smoke": "node -e \"import('./index.js').then((m) => { for (const key of ['PayPlex','defineProvider','defineMappedProvider','getCapability','runProviderContract']) { if (!(key in m)) throw new Error('missing export: ' + key) } })\""
},
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"src",
"README.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"payment",
"vext",
"enterprise-payment",
"payment-platform",
"provider-contract",
"channel-adapter"
],
"author": "Rocky",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/devcodex-labs/payplex.git"
}
}